Support

Home Forums Event Espresso Premium How to remove tagline? Event Registration and Ticketing Powered by EE (3)

How to remove tagline? Event Registration and Ticketing Powered by EE (3)

Posted: November 4, 2014 at 3:06 pm


artiium21

November 4, 2014 at 3:06 pm

I want to remove that line from the dashbaord area of wordpress, its at the bottom of all my pages in the dashboard, where do I go to get rid of this?

  • This topic was modified 9 years, 5 months ago by  artiium21.
  • This topic was modified 4 years, 1 month ago by  Garth.


Josh

  • Support Staff

November 4, 2014 at 4:02 pm

Hi there,

Can you let me know which version of Event Espresso you have installed? The directions I give you will depend on the version you have.


artiium21

November 4, 2014 at 4:06 pm

I have Event Expresso 4 and how do I also not show the “about” section in the plugin?


Josh

  • Support Staff

November 4, 2014 at 8:13 pm

Hi there,

Both can be removed using WordPress actions and filters. Example code that you can use in a custom snippets plugin follows:

// remove admin menu item: About
add_action( 'admin_menu', 'remove_about_menu_ee', 11 );
function remove_about_menu_ee() {
    remove_submenu_page( 'espresso_events', 'espresso_about' );
}

// remove footer text
add_filter( 'admin_footer_text', 'remove_footer_ee', 11 ); 
function remove_footer_ee() {
    remove_filter( 'admin_footer_text', array( 'EE_Admin', 'espresso_admin_footer' ), 10 );
}


artiium21

November 6, 2014 at 7:33 am

Thank you but where (which file would I put this in?) Sorry for all the questions, little new at this


Lorenzo Orlando Caum

  • Support Staff

November 6, 2014 at 9:07 am

Hi there Artiium,

This can be added to your child theme’s functions.php file or a site specific plugin:

https://eventespresso.com/wiki/create-site-specific-plugin-wordpress-site/

Are you familiar with Cyberduck or FileZilla? Both are free SFTP/FTP clients that allow you to access the files and folders in your WordPress installation.

You could login with one of those programs (or a similar one) and then add the code snippet to your child theme’s functions.php file or upload and create a site specific plugin.


Lorenzo

The support post ‘How to remove tagline? Event Registration and Ticketing Powered by EE (3)’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso