ACF_KEYSMST_MSTCASECPT – BASELINE MEASUREMENTS (v3.0 Modular)
/** * ============================================ * MST CASE - TAB: BASELINE MEASUREMENTS (v3.0 Modular) * ============================================ * *…
WpPages_DIR_AB_ACF - WordPress Pages Sync ACF Fields (ENHANCED)
Description: Comprehensive ACF fields for page data with ALL metadata for WhaleSync/Airtable * Location: Run Everywhere…
WPCode Snippet: MU-Plugins Sync Engine
/** * WPCode Snippet: MU-Plugins Sync Engine * Description: Synchronizes MU-Plugins FROM /wp-content/mu-plugins/ TO wpcode_snippets_sync CPT…
Amit choudhary blogs
Blogger
Disallow point redemption if cart has subscription product.
This snippet will remove the point redemption option if the cart has a subscription product
Limit Purchase Total
Sets a purchase amount and prevents customers from purchasing more than that amount at one time.
Disable Wish Lists by Category
Customize this plugin to remove wish lists from certain categories of downloads
Allow HTML in the product description
function wcv_wpkses_post_html_tags( $tags, $context ) { if ( 'post' === $context ) { $tags['iframe'] = array(…
Add custom page to the vendor dashboard - custom menu link
add_filter( 'wcv_pro_dashboard_urls', 'custom_menu_link' ); function custom_menu_link( $pages ) { $pages[ 'custom_link' ] = array( 'slug' =>…
Untitled Snippet
HTML5
Escaping data with wp_kses
// ❌ Don't use html tags in escaping functions like esc_html, esc_attr and their localized equivalents…
Tweak Price Display (Adjusts the Prices) | Display Eventbrite Events
The Display Eventbrite plugin premium version can display prices. If you want to tweak to display…
Disable WP Texturize
// Disable curly quotes remove_filter( 'the_content', 'wptexturize' );
unitap.io
function myfirsttheme_setup() { /* * Load additional block styles. */ $styled_blocks = ['latest-comments']; foreach ( $styled_blocks…