Debloat your WooCommerce Tabs! Remove Default WooCommerce Tabs Amiru アミル さん
Remove Default WooCommerce Tabs You can easily remove the default "Description," "Additional Information," and "Reviews" tabs…
ACF_KEYSMST_MSTCASECPT – TAB: CLINICAL ASSESSMENTS (v3.0 Modular)
/** * ============================================ * MST CASE - TAB: CLINICAL ASSESSMENTS (v3.0 Modular) * ============================================ * *…
RE.N.A.P.A. – Modulo 1 (Tabella Candidati)
Crea la tabella wp_renapa_candidati per il Registro PCS
Untitled Snippet
function getChatContent() { const chat = document.querySelector('.mwai-chatbot .mwai-messages') || document.querySelector('.mwai-chatbot'); return chat ? chat.innerHTML : '';…
WPCode Snippet: Download All Snippets Button
* Description: Adds bulk download button to WPCode Snippets Sync admin page * Location: Admin Only…
Donation Fee Radio Field
/** * 1. Register the Required Yes/No Radio Field */ add_action( 'init', function() { if (…
Modify User Verification URL Expiration
Changes the length of time before user verification email links expire
Add a button to customer data
Add a button to retrieve all customer data.
Add vat over the commission
This will add VAT value over the commission
Add Vendor Ratings / Feedback to Product Page
add_action('woocommerce_before_add_to_cart_form','vendor_feedback_product_page'); function vendor_feedback_product_page() { $vendor_id = get_the_author_meta('ID'); $vendor_shop = urldecode( get_query_var( 'vendor_shop' ) ); if (…
Resetting the Vendor & Pending Vendor Roles
add_filter('woocommerce_login_redirect', 'redo_roles', 10, 2); function redo_roles() { remove_role( 'pending_vendor' ); add_role( 'pending_vendor', __( 'Pending Vendor', 'wcvendors'…