Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1158850

    Hello I have generated a new personal token an now Enfold Theme will be updated.

    But now I have a question.
    At the backend of our new customer project, now there are some personal infos:
    Your purchases
    Your username: myName
    Your E-Mail: myMail@myDomain.de

    How to hide this informations, because I don’t want that my customer can see this infos about my envato account.

    kind regards,
    Bernhard

    #1160065

    Hey bernhard,

    There is no way for this ( although it is a really nice idea to include a hook for that ). Will it work if we add some CSS to laod over the admin page to just put visibiility: hidden?

    Best regards,
    Basilis

    #1160217

    Hi!

    Yes! that is correct. We can hide the theme options tabs using custom CSS in the admin area. Please add the below code to your child theme functions.php

    add_action('admin_head', 'my_admin_style');
    
    function my_admin_style() {
      echo '<style>
     	.avia_subpage_container#avia_update,
      	.avia_section_header.goto_update {
        	display:none !important;
        }
      </style>';
    }

    Note: This will completely hide the update options. If you want to hide only the update info and keep the update tab option visible please use the below code

    add_action('admin_head', 'my_admin_style');
    
    function my_admin_style() {
      echo '<style>
     	.avia_subpage_container#avia_update .av-verification-response-wrapper {
        	display: none !important;
        }
      </style>';
    } 

    For more info please check the Enfold Documentation

    Regards,
    Vinay

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.