Results 1 to 2 of 2

Thread: Remove RSS feed.

  1. #1
    Linnane is offline Sugar Community Member
    Join Date
    Jun 2009
    Posts
    64

    Default Remove RSS feed.

    Hi,

    Need some help (basic) I hope.

    Version 6.3.0RC2 (Build 6943)

    I added a news feed dashlet but I guess I added the wrong URL ... now I can't delete.
    Trying to delete a Dashlet news feed but buttons don't exist.

    Is htere a file or DB field that I can modify??

    I happy remove all RSS/WEB feeds on my install.

    Regards
    Alan.
    Attached Images Attached Images  

  2. #2
    Linnane is offline Sugar Community Member
    Join Date
    Jun 2009
    Posts
    64

    Default Re: Remove RSS feed.

    I figured it .. kinda - for thoes who care .

    modules/Home/dashlets/RSSDashlet/RSSDashlet.php

    in public function __construct($id, $def)

    change :

    if(!empty($def['url']))
    $this->url = $def['url'];

    if(!empty($def['title']))
    $this->title = $def['title'];
    else
    $this->title = $this->dashletStrings['LBL_TITLE'];


    to

    if(!empty($def['url']))
    $this->url = ''; //$def['url'];

    if(!empty($def['title']))
    $this->title = ''; //$def['title'];
    else
    $this->title = '';// $this->dashletStrings['LBL_TITLE'];

    Save and Refresh the home page.
    The Dashlet will not load corretly and will give you the option to remove the Dashlet.

    Delete ('X') the Dashlet. and return the code to it origional state.

    ... Its one way ... would be very intrested in figuring where Sugar stores the location of the News Feeds, its not in the DB I know , but where?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Remove demo data from Feed Activity
    By seemann in forum General Discussion
    Replies: 2
    Last Post: 2011-07-24, 01:38 PM
  2. My Sugar Feed as RSS
    By cityguidesa.com in forum Help
    Replies: 1
    Last Post: 2010-10-29, 05:29 AM
  3. add new rss feed
    By kazmi110 in forum Developer Help
    Replies: 0
    Last Post: 2009-06-12, 02:16 PM
  4. RSS feed
    By vdefazzio in forum Help
    Replies: 2
    Last Post: 2006-03-11, 05:54 PM
  5. RSS Feed
    By nommaz in forum Developer Help
    Replies: 0
    Last Post: 2005-02-08, 01:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •