Search results for: admin

How to Disable reCAPTCHA for Automated Testing

/** * Disable for automated testing. * * @link https://wpforms.com/developers/how-to-disable-recaptcha-for-automated-testing/ */ // Disable reCAPTCHA assets and…

<10

On Browsing WooCommerce Products

This snippet targets window shoppers and encourages them to add more products to their carts. This…

Enable HTTP Strict Transport Security (HSTS) in WordPress

The provided code snippet is a WordPress function that enables a WordPress site's HTTP Strict Transport…

Allow Subscriptions Product on BOGO and Add Product Search Field

add_filter( 'acfw_product_search_allowed_types' , 'acfw_search_add_support_for_subscription_products' ); function acfw_search_add_support_for_subscription_products( $product_types ) { $product_types[] = 'subscription'; $product_types[] = 'variable-subscription';…

WP Simple Pay: Custom Thousand Separator

Changes the thousand separator from the default , (comma) to a . (period).

MemebrPress: Send MemberPress Welcome Email Only When Transaction Is Completed

The code snippet will allow the global welcome email to be triggered only following the successful…

Dynamically Add Article Schema to Posts

This filter can be used to Dynamically Add Article Schema to Posts.

70+

Subscription Status Shortcode

Adds a shortcode to display a short subscription status description for recurring payments.

Make the auction start price and auction dates required for vendors

This is from the integration with the WooCommerce Simple Auctions plugin

1 28 29 30 31 32 98