This topic has 4 replies, 2 voices, and was last updated 8 years, 4 months ago ago by Eva Kemp
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.
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.
solved thanks
however this will be reverted when i update, can the code be added directly to custom.css ?
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.
You must be logged in to reply to this topic.Log in/Sign up