Search results for: admin

Google Call Tracking - On Website

This snippet goes on the Contact page where our phone number is displayed. It allows Google…

Andrew Boldizsar PRO
<10

Add extra shipping providers for vendor tracking numbers

$shipping_providers = array( 'Australia' => array( 'Australia Post' => 'https://auspost.com.au/mypost/track/#/details/%1$s', 'FedEx' => 'https://www.fedex.com/apps/fedextrack/?tracknumbers=%1$s&cntry_code=au', 'Fastway Couriers' =>…

Limit Purchase Total

Sets a purchase amount and prevents customers from purchasing more than that amount at one time.

Recreate the aioseo_cache table

This code snippet recreates the missing 'aioseo_cache' table. This code snippet should be enabled and executed…

300+

Maintain+ Footer Credit

jQuery("footer").append(" Site managed by Maintain+ ")

Change Time zone Offset in the Publish Date of the Sitemap Entries

The code snippet below can be used to change the time zone offset in the publish…

<10

Disable Wordpress image compression

// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…

<10

Partner Group GTM Body Tag

Add GTM Tag to Site Body in Partner Site Group

Colin Bunn PRO
<10

Display Form Entries

Displays form entries on the front end of your site. Once this snippet is added and…

200+

Block IP Addresses From Completing Your Form

Using this snippet will allow you to add specific IP Addresses from completing your forms.

90+

Untitled Snippet

add_filter( 'aioseo_robots_meta', 'aioseo_filter_robots_meta' ); function aioseo_filter_robots_meta( $attributes ) { $url = home_url( $_SERVER['REQUEST_URI'] ); if (strpos($url,'product_search=')…

Basic WP escaping functions

// ❌ Don't use _e(), __(), _x() etc. to output data // ✅ Use the escaped…

1 60 61 62 63 64 75