Support

Home Forums Event Espresso Premium Remove Upcoming Events widget title link

Remove Upcoming Events widget title link

Posted: March 27, 2016 at 1:58 pm

Viewing 4 reply threads


Daniel

March 27, 2016 at 1:58 pm

I updated my Iced Mocha theme to v1.0.6 today because the EE theme settings were not showing under Appearance > Iced Mocha Settings (probably due to WP 4.4.2 compatibility as I’ve read elsewhere in the forums).

After the update, the EE Upcoming Events widget has a link in the title to the Events page. I do not use this page as I have a custom events page I made. But it looks like the title link is forced. I spent the last two hours looking through code to see where I can disable the insertion of this link, but I can’t figure it out. I would appreciate your assistance to pinpoint this piece of code.

Thank you.


Daniel

March 27, 2016 at 2:06 pm

<li id=”ee-upcoming-events-widget-3″ class=”widget-container widget_ee-upcoming-events-widget”>
<h3 class=”widget-title”>Upcoming Events</h3> <<< get rid of this
<ul class=”ee-upcoming-events-widget-ul”>


Daniel

March 27, 2016 at 2:07 pm

<h3 class="widget-title"><a href="http://example.com/event-registration/">Upcoming Events</a></h3>
I should have wrapped that example in the code tags. What I’d like to get rid of is the “a href” portion of the widget-title.


Josh

  • Support Staff

March 28, 2016 at 10:55 am

Hi Daniel,

You can remove the widget title like by adding this code to your website:

// remove link from upcoming events widget title
function ee_remove_widget_title_link( $title ) {
    if ( is_active_widget( '', '', 'ee-upcoming-events-widget' ) ) {
        $title = wp_strip_all_tags( $title, false );
    }
    return $title;
}
add_filter('widget_title', 'ee_remove_widget_title_link', 16 );

You can add the above to a functions plugin or into your WordPress theme’s functions.php file.


Daniel

March 28, 2016 at 7:21 pm

That did the trick, thank you! 🙂

Lesson for today: making a filter to strip some code is much easier than trying to figure out what code to comment out.

Viewing 4 reply threads

The support post ‘Remove Upcoming Events widget title link’ 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