aa
add_action('admin_notices', function () { if (!current_user_can('manage_options')) { return; } echo 'WPCode test is working.'; echo 'Application…
Conversion Event Snippet
When people click on book now or sign up and redirected to Mindbody for bookings.
Add Security Info to Checkout
Replace the image on checkout with the proper image for your SSL certificate.
Enable Full WP_Editor on Product Fields
add_filter( 'wcv_product_description_editor_settings', 'wcv_full_editor' ); add_filter( 'wcv_product_short_description_editor_settings', 'wcv_full_editor' ); function wcv_full_editor( $settings ){ $settings['teeny'] = false; return…
How To Show Last Modified Date On Blog Post Instead Of Published Date in WordPress
If you want to display the last modified date on your blog post without using a…
Google Search Console Verification
HTML tag
Facebook storage tracking
Pixel for tracking self storage traffic
Defining SendLayer Mailer Constants
This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…
Remove Decimals
Removes decimal places from all prices
Subscription Status Shortcode
Adds a shortcode to display a short subscription status description for recurring payments.
WP Simple Pay: Stripe Checkout - Subscription Confirmation
Ensure Customer Subscriptions are available in the payment confirmation data.
Simple Chained Products
Enables a chained products setting on the Download product edit screen for automatically adding "chained" products…
Conditional Gateway Fees
Do not charge gateway fee to customer if the amount is over X
Disable Emojis
/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…