Home / Topic / General Marketplace Discussion (User’s interaction forum) / Hide Vendor Title
Hide Vendor Title Resolved
Hello! How can I hide this part as title?? I do not want it to show on the vendor’s profile and can’t seem to ifnd the option. Also, when disabling some vendor’s information from showing on their profile (store), does this have to be done user by user?
Thank you!
Hi,
In order to hide all vendor’s information from their shop page add this code in the function.php of the current actve theme
add_filter('wcmp_vendor_store_header_hide_store_address', '__return_true');
add_filter('wcmp_vendor_store_header_hide_store_phone', '__return_true');
add_filter('wcmp_vendor_store_header_hide_store_email', '__return_true');
Copy
>> How can I hide this part as title
add this code in the function.php of the current actve theme
add_filter( 'woocommerce_show_page_title', 'wcmp_hide_vshop_page_title' );
function wcmp_hide_vshop_page_title( $title ) {
global $WCMp;
if ( is_archive() && is_tax($WCMp->taxonomy->taxonomy_name) ) $title = false;
return $title;
}
Copy
We have not received any update from you for a long. Hope this ticket is already been resolved.
We are now closing this ticket. Kindly create a new one if you need any further help.
The topic ‘Hide Vendor Title’ is closed to new replies.