Add Payment ID to Sales API

If sequential order numbers are on, those numbers are returned in the sales API instead of…

Exclude Specific Products from Parent Category

/** * Exclude specific products from appearing in their parent category. */ add_action('woocommerce_product_query', 'exclude_specific_products_from_parent_category'); function exclude_specific_products_from_parent_category($q)…

Εμφάνιση πεδίων User Registration στη λίστα χρηστών του WordPress

/** * Save registration fields in custom user meta keys * and show them in the…

Add custom text to WooCommerce Email Templates for Wholesale Customers

If you want to place content elsewhere in the email, swap the hook: woocommerce_email_before_order_table: Above the…

WWPP – Customize the admin “New Order” email subject for wholesalers v1.1

How to apply: 1. Replace the previous snippet with this one in your functions.php or Code…

Remove Post Title from Yoast Breadcrumbs

This snippet removes the post title from Yoast SEO breadcrumbs

deepseek2

magazine 2

WAL HAD
<10

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…

Remove Google Fonts

add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );

<10
1 94 95 96 97 98 224