Search

Guides & Articles, Freelance WordPress Developer - Israel | Page 7

About CSS Containment and Improving Performance

CSS Containment is a module that describes a CSS property called contain. This property allows developers to isolate a specific element’s subtree in the DOM and treat it as independent and separate from the rest of the elements in the [...]

Loading Google Analytics Locally from Your Server

When optimizing the number of requests to the server (HTTP Requests), you may encounter a stage in the Google Analytics script. The script makes an asynchronous request to download the analytics.js file from Google’s servers. Since this is an asynchronous [...]

Adding BreadCrumbs to a WordPress Site

Breadcrumb trails show users their location on your website. If you’re not familiar, the term “breadcrumb” comes from the tale of Hansel and Gretel, where the main character left a trail of breadcrumbs to find the way back home… And [...]

Improving the Number of Database Queries in ACF

Sometimes the functions get_field and the_field of the Advanced Custom Fields plugin are sufficient for pages with a few custom fields. However, for pages with many fields or very complex fields (such as those in Repeater or Flexible Fields), we [...]

Create an Exit Intent Popup in WordPress without Plugin

The term “exit intent popup” has gained popularity in recent years, especially on WordPress, E-commerce websites and digital stores in particular. In essence, an exit intent popup uses JavaScript to track the user’s mouse movements, so that when the user [...]

Conversion Tracking with Google Analytics 4 (Goals)

Conversion tracking in Google Analytics (also known as Goals) can be crucial for any significant activity on your important business website. For example, form submissions, newsletter sign-ups, or even product purchases. In the old version of Google Analytics (Universal Analytics), [...]

How to Connect Analytics 4 to Google Ads

If you are using Google Analytics, then you already know that the tool provides you with a lot of information about user interaction with the site. If you want to use the information that Analytics provides to better track the [...]

A Glance at CSS Mix Blend Modes

According to Wikipedia, merging (or “blending modes”) in digital image editing and computer graphics is used to determine how two layers blend together. In most applications, the default blending mode is simply to hide the bottom layer by covering it [...]

Passing Variables using get_template_part in WordPress

Similar to the standard include() or require() PHP functions, WordPress provides its own function for loading templates (PHP files), called get_template_part(). As its name suggests, it is designed to call parts of templates in WordPress sites. While using the get_template_part() [...]