-
AuthorPosts
-
October 27, 2020 at 12:33 pm #1256016
Hi Guys… How do I deactivate or remove the hyperlink in a RSS title that has been placed using widgets?
Linking to the actual source of the RSS feed is not relevant for us. Hope you can help.October 27, 2020 at 7:48 pm #1256188Hey Rasmus,
Here is an article for you:
If you need further assistance please let us know.
Best regards,
VictoriaOctober 28, 2020 at 3:24 pm #1256404I need guidelines from YOU – not a link to a generic article on the subject. Please help me out here…
I have a RSS Widget located in a Footer and the title is linking to the URL of the RSS-feed. I want to deactivate this title-link. Please advice.
There was no succes when adding the suggested code to functions.php.October 28, 2020 at 9:12 pm #1256505Hi RasMaster,
It’s a general WordPress function and the theme does not control it. So you need to disable it either via a plugin r adding the code to your functions.php.
https://share.getcloudapp.com/9ZuByRxY You can edit the widgets in the footer by going to Appearance > Widgets.
Best regards,
VictoriaOctober 29, 2020 at 10:59 am #1256652It does not work for me….
I followed the guidelines and added this to my functions.php at the very end of the file. But nothing happens – and I actually just want the RSS-title-link to be deactivated. Please help me out here.
……………………………………………….
function itsme_disable_feed() {
wp_die( __( ‘No feed available, please visit the homepage!’ ) );
}add_action(‘do_feed’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_rdf’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_rss’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_rss2’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_atom’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_rss2_comments’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_atom_comments’, ‘itsme_disable_feed’, 1);remove_action( ‘wp_head’, ‘feed_links_extra’, 3 );
remove_action( ‘wp_head’, ‘feed_links’, 2 );October 29, 2020 at 11:32 pm #1256920Hi RasMaster,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
VictoriaOctober 30, 2020 at 8:58 am #1256989This reply has been marked as private.October 30, 2020 at 8:56 pm #1257146Hi RasMaster,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#rss-3 .widgettitle .rsswidget { pointer-events: none; }
If you need further assistance please let us know.
Best regards,
VictoriaNovember 1, 2020 at 3:06 pm #1257449It works just fine in the footer :-) Thank you.
When viewing the RSS feed on a page the title link is still active. Can you help with that?November 2, 2020 at 10:01 pm #1257716Hi RasMaster,
I am getting a 404 on that page. Did you move the page?
Best regards,
VictoriaNovember 2, 2020 at 10:47 pm #1257738Yes we moved it today. But please send me the additional CSS code if you can.
Thank you very much for this service.November 2, 2020 at 11:57 pm #1257779Hi RasMaster,
Well, I need the correct link to be able to help you.
Best regards,
VictoriaNovember 6, 2020 at 12:05 pm #1258832This reply has been marked as private.November 9, 2020 at 6:27 pm #1259324Hi RasMaster,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#rss-2 .rsswidget { pointer-events: none; }
If you need further assistance please let us know.
Best regards,
VictoriaNovember 9, 2020 at 6:40 pm #1259329Thank you very much – mission accomplished :-)
November 9, 2020 at 7:46 pm #1259372Hi RasMaster,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
Victoria -
AuthorPosts
- The topic ‘Deactivate link in RSS title’ is closed to new replies.