Show Product Categories in the Vendor Product Catalog
This PHP code snippet automatically detects any page or post that contains the [wcv_products] shortcode and…
WPCODE_DIR_AC_RAPI - REST API Enhancements for WPCode Snippets Sync
* Description: Exposes wpcode_snippets_sync CPT fields via REST API for WhaleSync * Location: Run Everywhere *…
webhook code example updated
{ "lead": { "email": "[email protected]", "ipAddress": "1.2.3.4", "referrer": "https://optinmonster.com/", "timestamp": 1699985224, "privacyConsent": true, "firstName": "Archie", "lastName":…
https://wpcode.com/ai
https://wpcode.com/ai
ModalCSS
Used to display popup modal in GenerateBlocks
Disable Right Click
Disable a right click on page.
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…
Only count last file
This plugin makes it so that All Access only increments the download counter if the customer…
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…
Add an audio field to the sign up form
// Add the audio field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_audio_uploader'); function wcv_audio_uploader( ){ //…
Change the sold by label on the product archive
// Unhook WC Vendors method remove_action( 'woocommerce_after_shop_loop_item', array('WCV_Vendor_Shop', 'template_loop_sold_by'), 9 ); // Define new sold by…