• Resolved alexantoine1

    (@alexantoine1)


    Hello,

    I would like hiding the my store link on front end dashboard.(top left, beside the logo.
    Do you know which file I need to modify?

    I use Wc frontend manager with wc product vendors.

    Regards,

    Alex Antoine

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Hi,

    Thanks for get in touch with us.

    Well, you don’t have to edit any core files for the purpose.

    Kindly just add this code to your site –

    function wcfm_store_name_hide( $store_name ) {
    	return '';
    }
    add_filter( 'wcfm_store_name', 'wcfm_store_name_hide', 750 );

    Please know me is this fulfil your purpose or not!

    Thank You

    Thread Starter alexantoine1

    (@alexantoine1)

    Hello,

    Thanks a lot for your quick reply.

    Just a question, where can I add this code?

    Thanks a lot,

    Alex

    Plugin Author WC Lovers

    (@wclovers)

    Hi,

    It’s always preferable to add such codes under child theme’s functions.php

    In case you don’t have any child theme then you may use any custom code snippet plugin for such purpose.

    Thank You

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hide my store link’ is closed to new replies.