Search results for: admin

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';…

Disable recurring renewal notices for specific download

Allows renewal notice emails to be disabled for subscriptions including a certain download.

Event URL (Additional Data) | Display Eventbrite Events

This filter allows you to adjust the event URL. This is primarily so you can add…

Show 'NEW' Badges for Recently Added Items in WooCommerce

This code snippet adds a “NEW!” badge to products in WooCommerce, indicating that they are newly…

Displaying Shortcodes Inside Form Label Fields

/** * Run shortcodes on the form label field. * * @link https://wpforms.com/developers/how-to-display-shortcodes-inside-the-label-of-the-form-field/ */ function add_shortcode_to_label(…

10+

How to Move to the Next Page Automatically

/** * Navigate to the next page automatically * * @link https://wpforms.com/developers/how-to-move-to-the-next-page-automatically/ */ function wpf_dev_automatic_next_page( )…

20+

Change Business Info Opening Hours Icon

This filter can be used to change the business info Opening Hours icon. Replace "/assets/images/email-icon.png" with…

10+

Change Cancel Page URL For Paypal

This should redirect a donor to a custom URL after a donor clicks 'cancel' on Paypal's…

Dynamic Monsterlinks By Class Name

// Target by class name window.onload = function(){ const dynamicMonsterLinks = document.querySelectorAll("a.myClass"); dynamicMonsterLinks.forEach(dynamicMonsterLinks => dynamicMonsterLinks.href =…

1 91 92 93 94 95 96