Is it possible to disable the link of the terms and only show the tooltip on hover?
In the settings you can choose for ‘only link’ or ‘link and tooltip’. I would like to have the option ‘only tooltip’.
Or maybe there is tweak to do this?
Thank you for your information.
Marielle
]]>I’m trying to disable the link of a text box but I don’t find how to. I’m using Academist theme and Gutenberg.
In the attached URL you can see three images with a green box with text over them. I would like to disable the link of these boxes, so they are just text. Inside Gutenberg I can only select to show the box or not, but can’t touch anything about the links (automatically links to category).
Thanks.
]]>Use Example:
I have a ‘Meet the team’ gallery, and some of the staff have profile pages and some do not. The old plugin made it easy to distinguish, by just disabling the click-through for thumbnails for which there’s no associated profile page. Even better, since that removed the ‘a’ tag altogether, I could also use a css mouseover ‘animation’ to indicate this, without having to click. Now, unfortunately, they all behave the same, and the ones without profiles just ‘404’
Many thanks!
]]>So I have to ask again:
How can I remove the link in the site title (I want it text only) using a child theme?
Any help would be much appreciated!
]]>I’m trying to make the site-title of my page not a link (text only).
First I searched in the header.php but couldn’t find the right section. Then I discovered this part in the functions.php:
/**
* Site branding
*/
if ( ! function_exists( 'oria_branding' ) ) :
function oria_branding() {
if ( get_theme_mod('site_logo') && get_theme_mod('logo_style', 'hide-title') == 'hide-title' ) :
echo '<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr(get_bloginfo('name')) . '"><img class="site-logo" src="' . esc_url(get_theme_mod('site_logo')) . '" alt="' . esc_attr(get_bloginfo('name')) . '" /></a>';
elseif ( get_theme_mod('logo_style', 'hide-title') == 'show-title' ) : //Show logo, site-title, site-description
echo '<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr(get_bloginfo('name')) . '"><img class="site-logo show-title" src="' . esc_url(get_theme_mod('site_logo')) . '" alt="' . esc_attr(get_bloginfo('name')) . '" /></a>';
echo '<h1 class="site-title"><a href="' . esc_url(home_url( '/' )) . '" rel="home">' . esc_html(get_bloginfo('name')) . '</a></h1>';
echo '<h2 class="site-description">' . esc_html(get_bloginfo( 'description' )) . '</h2>';
else : //Show only site title and description
echo '<h1 class="site-title"><a href="' . esc_url( home_url( '/' ) ) . '" rel="home">' . esc_html(get_bloginfo('name')) . '</a></h1>';
echo '<h2 class="site-description">' . esc_html(get_bloginfo( 'description' )) . '</h2>';
endif;
}
endif;
I think this is the right section, but I’m not quite sure how/where to edit it correctly to disable the link.
So any help would be much appreciated!
PS: Yes, I’m using a child theme.
]]>On my calender view the event links redirect to a blank page, i’ve tried to disable all plugins in case of plugin conflict and it didn’t work, is there a way to disable the link and only hover for the information?
Link: https://www.metressquared.com/bookings/
https://www.ads-software.com/plugins/all-in-one-event-calendar/
]]>