Taxonomy Count
Control the number of products displayed on the default download category and download tag pages.
Add a document file upload
// Add the document field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_doc_uploader'); function wcv_doc_uploader( ){ if…
Enable product images in vendor order email notifications
add_filter( 'wcvendors_vendor_order_items_args', 'wcv_enable_product_image_vendor_order_email' ); function wcv_enable_product_image_vendor_order_email( $order_item_args ){ $order_item_args['show_image'] = true; return $order_item_args; }
custom footer chatgpt html
About Us "Ilavanam is a farm in Tiruppur. Ilavanam is trying to lead sustainable living. The…
Ensure Webfont is Loaded
add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { return 'swap'; }, 10, 3 );
Add Subscriber to Segment with Duration
Adds the subscriber to the segment for a specific duration, after the defined number of days…
Action Scheduler Cleardown | Display Eventbrite Events
Eventbrite uses Action Scheduler to handle background tasks when background processing is enabled. By default, Action…
Post-States
add_filter( 'display_post_states', 'bu_style_post_state_bricks', 15, 2 ); function bu_style_post_state_bricks ($post_states, $post) { if( isset( $post_states['bricks'] ) )…
Change TikTok purchase Event
When using the WPCode Conversion Pixels addon the event name used when a purchase is completed…
See the Scheduled Actions option in the WordPress admin sidebar
This snippet gives you the ability to add the Scheduled Actions menu item to the WordPress…
Enable WP Mail SMTP Constants
This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…
SEP color
add_action('admin_head', 'sep_color'); function sep_color() { echo ''; }