Home / Disable / Remove address from the header
Duplicate Snippet

Embed Snippet on Your Site

Remove address from the header

Remove address block from the header

Code Preview
php
<?php
function wcvendors_remove_address( $address){
        unset($address);
        return $address ;
}
add_filter( 'wcv_format_store_address_output', 'wcvendors_remove_address' );

Comments

Add a Comment