Home Forums WoodMart support forum Possibility to white label completely?

Possibility to white label completely?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #366079

    Rom2021
    Participant

    Hello, your feature of white label is great. But it is possible to do following things?
    1, Hide option “White Label” in woodmart dashboard via code?
    2, Change the name Woodmart Core to another one.
    Thank you

    #366256

    Artem Temos
    Keymaster

    Hello,

    1. Try to add the following PHP code snippet to the child theme functions.php file to do this

    dd_action('admin_head', 'wd_admin_custom_css');
    
    function wd_admin_custom_css() {
    	echo '<style>
    	a[data-id="white_label_section"], a[href="admin.php?page=xtemos_options&tab=white_label_section"], #wp-admin-bar-white_label_section {
    		display: none !important;
    	}
      </style>';
    }

    2. You can customize this only by editing the file wp-content/plugins/woodmart-core/woodmart-core.php https://gyazo.com/1fd1accd6c23e555313b3e6c1c4003d0

    Kind Regards

Viewing 2 posts - 1 through 2 (of 2 total)