Override Header Logo with Custom SVG
add_filter( ‘totaltheme/header/logo’, function( $output ) { return ‘‘; } );Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_filter( ‘totaltheme/header/logo’, function( $output ) { return ‘‘; } );Continue reading
add_filter( ‘totaltheme/page/header/has_title’, ‘__return_false’ );Continue reading
// Remove the author link from bio. add_filter( ‘wpex_post_author_bio_data’, function( $data ) { unset( $data[‘posts_url’] ); return $data; } ); // Remove the author link from code functions which display in post meta. add_filter( ‘the_author_posts_link’, function( $link ) { if…Continue reading
add_action( ‘init’, function() { if ( function_exists( ‘wpex_content_area_layout’ ) && ‘left-sidebar’ === wpex_content_area_layout() ) { remove_action( ‘wpex_hook_primary_after’, ‘wpex_get_sidebar_template’ ); add_action( ‘wpex_hook_primary_before’, ‘wpex_get_sidebar_template’ ); } } );Continue reading
add_filter( ‘wpex_nex_prev_reverse’, ‘__return_true’ );Continue reading
#site-navigation-wrap .menu-item:hover:not(.current-menu-item) .link-inner::after { opacity: 0 !important; }Continue reading
add_action( ‘init’, function() { // Disable subheading on product cats add_filter( ‘totaltheme/page/header/has_subheading’, function( $check ) { if ( is_tax( ‘product_cat’ ) ) { $check = false; } return $check; } ); // Display description below loop add_action( ‘wpex_hook_content_bottom’, function( $bool…Continue reading
add_filter(‘frm_pre_create_entry’, ‘save_entry_without_userID’); function save_entry_without_userID( $values ) { $target_form_id = 239; //Replace 239 with your form ID if ( $target_form_id === (int) $values[‘form_id’] ) { $values[‘frm_user_id’] = 0; } return $values; }Continue reading
add_filter(‘frm_stripe_payment_method_types’, ‘add_us_bank_account’); function add_us_bank_account( $payment_method_types ) { $payment_method_types = array( ‘card’, ‘link’, ‘us_bank_account’ ); return $payment_method_types; }Continue reading
add_filter(‘frm_stripe_payment_method_types’, ‘add_sofort_ideal_bancontact’); function add_sofort_ideal_bancontact( $payment_method_types ) { $payment_method_types = array( ‘sofort’, ‘ideal’, ‘bancontact’ ); return $payment_method_types; }Continue reading