/** * WPCode Snippet: WordPress Users & BuddyBoss Profiles ACF Fields – COMPLETE * Description: Complete ACF fields for user data, BuddyBoss, WP Fusion, LifterLMS, and Gravity Forms * Location: Run Everywhere * Priority: 10 * * INSTALL ORDER: #2…Continue reading
/** * WPCode Snippet: WordPress Users & BuddyBoss Profiles CPT Registration * Description: Registers custom post type for user/profile sync with full REST API support * Location: Run Everywhere * Priority: 0 * * INSTALL ORDER: #1 – Install this…Continue reading
/* * Create a unique_id Smart Tag and assign it to each form submission. * * @link https://wpforms.com/developers/how-to-create-a-unique-id-for-each-form-entry/ */ // Generate Unique ID Smart Tag for WPForms function wpf_dev_register_smarttag( $tags ) { // Key is the tag, item is the…Continue reading
/* ===================================================== WCV Vendors Login Form – Custom Styling This CSS snippet customizes the vendor registration form to improve layout, typography, colors, and button style ===================================================== */ /* Customise vendor login fields */ form#wcv-login-form .wcv-field-wrapper>input { width: 60%; height: 48px;…Continue reading
add_action( ‘woocommerce_before_add_to_cart_quantity’, ‘bbloomer_echo_qty_front_add_cart’ ); function bbloomer_echo_qty_front_add_cart() { global $product; if ( $product->get_min_purchase_quantity() == $product->get_max_purchase_quantity() ) return; echo ‘ Quantity: ‘; }Continue reading