Google Ads

Google Ads

Dawn Ireland
<10

google

danny hill
<10

تغيير عمله

/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…

After Checkout Event In WooCommerce

This would stop sending cart abandonment campaigns to your push subscribers in the WooCommerce store as…

Order WPCode snippets by title in the admin

Make the default order of WPCode snippets in the admin by title ascending.

<10

Disable Emojis

/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…

<10

Add WPCode Permalink Smart Tag

Add a custom smart tag for WPCode to output the value of the current page permalink.

<10

Disable Shortcode Parsing in All in One SEO

This filter can be used to prevent AIOSEO from parsing shortcodes.

<10

Set featured image aspect ratio

Used for featured image in query loop or any other image the class is applied to

Paid Memberships Pro with WC Vendors

// PAID MEMBERSHIPS PRO -- UPGRADE TO VENDOR, DOWNGRADE TO SUBSCRIBER /* Members signing up for…

Add custom page to the vendor dashboard

// Hook into the navigation add_filter( 'wcv_pro_dashboard_urls', 'add_test_page_nav', 9 ); function add_test_page_nav( $pages ){ $pages[ 'test_page'…

1 5 6 7 8 9 47