PLEASE REMOVE ADVERTISING X STORE FROM THEME OPTIONS

This topic has 4 replies, 2 voices, and was last updated 7 years, 9 months ago ago by Eva Kemp

  • Avatar: Jimbo
    Jimbo
    Participant
    July 9, 2016 at 20:53

    Hello,

    I notice you have added an advertising banner for your new theme via the theme options?

    I click to remove this and it appears every time I access the theme options!

    I have already been made aware of your new theme, I don’t need a constant popup banner via the theme options, it’s bad enough with your bundled plugins reminding us to activate them to get automatic updates but this as well just makes your theme a complete nightmare within the settings!

    How do I remove this or should I schedule changing my theme to another developers theme.

    You should give customers the option not to display again?

    Please advise how I remove it please.

    3 Answers
    Avatar: Eva
    Eva Kemp
    Support staff
    July 10, 2016 at 09:48

    Hello,

    You need edit the file wp-content/themes/woopress/framework/css/admin.css and add the code:

    .promo-text-wrapper {
       display: none;
    }

    Regards,
    Eva Kemp.

    Avatar: Jimbo
    Jimbo
    Participant
    July 13, 2016 at 11:44

    solved thanks

    however this will be reverted when i update, can the code be added directly to custom.css ?

    Avatar: Eva
    Eva Kemp
    Support staff
    July 13, 2016 at 15:18

    Hello,

    You need copy the admin.css file into child-theme/framework/css/ folder. Then add CSS style into the file:

    .promo-text-wrapper {
       display: none;
    }

    Then add the following code in functions.php file of the Child Theme

    function mytheme_enqueue_options_style() {
        wp_enqueue_style( 'mytheme-options-style', get_stylesheet_directory_uri() . '/framework/css/admin.css' ); 
    }
    add_action( 'admin_enqueue_scripts', 'mytheme_enqueue_options_style' );

    Regards,
    Eva Kemp.

  • Viewing 4 results - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.