Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #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.

    #1256188

    Hey Rasmus,

    Here is an article for you:

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1256404

    I 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.

    #1256505

    Hi 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,
    Victoria

    #1256652

    It 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 );

    #1256920

    Hi 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,
    Victoria

    #1256989
    This reply has been marked as private.
    #1257146

    Hi 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,
    Victoria

    #1257449

    It 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?

    #1257716

    Hi RasMaster,

    I am getting a 404 on that page. Did you move the page?

    Best regards,
    Victoria

    #1257738

    Yes we moved it today. But please send me the additional CSS code if you can.
    Thank you very much for this service.

    #1257779

    Hi RasMaster,

    Well, I need the correct link to be able to help you.

    Best regards,
    Victoria

    #1258832
    This reply has been marked as private.
    #1259324

    Hi 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,
    Victoria

    #1259329

    Thank you very much – mission accomplished :-)

    #1259372

    Hi RasMaster,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Deactivate link in RSS title’ is closed to new replies.