RSS link and the USERAREA

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Fri Sep 05, 2014 12:31 pm
Reply with quote
Report this post
I try to set the RSS feed of my site. I would like an RSS feed for the whole site. So I try to use the link in the USER AREA area.
I enabled the "RSS Link" option in the template Gk_news and I seized the RSS URL: http://www.reseau-qhse.fr/?format=feed&type=rss

When I click on the RSS icon on the home page, nothing happens and the page is reloaded.
How do I use the RSS link in the UserArea position to generate a current rss feed?
Thank you for all the work you do.

Fred.
User avatar
Junior Boarder

GK User
Mon Sep 08, 2014 5:31 pm
Reply with quote
Report this post
Hello,

Please add "http://" in your url, because now it doesn't use it and your domain is duplicated in the RSS URL (see the address bar in your browser after clicking the link)
User avatar
Administrator

GK User
Wed Sep 10, 2014 6:29 pm
Reply with quote
Report this post
Hi, thanks for your post. It is strange because i have tried the tow solution, with HTTP and without HTTP, and now it work good.
Thanks à lot. :D
Fred.
User avatar
Junior Boarder

GK User
Wed Sep 10, 2014 7:22 pm
Reply with quote
Report this post
I have a new question, how can i do to open the rss windows in a another windows or tabs ?
Actualy, when i click the RSS page open in the same windows...
Thanks a lot.
Fred.
User avatar
Junior Boarder

GK User
Thu Sep 11, 2014 11:09 am
Reply with quote
Report this post
In this case you have to open the layouts/default.php file and change the following line:

Code: Select all
<?php if($this->API->get('rss_link') == '1') : ?>
<a href="<?php echo $this->API->get('rss_url', '#'); ?>" id="gkRSS"><?php echo JText::_('TPL_GK_LANG_RSS'); ?></a>
<?php endif; ?>


to:

Code: Select all
<?php if($this->API->get('rss_link') == '1') : ?>
<a href="<?php echo $this->API->get('rss_url', '#'); ?>" id="gkRSS" target="_blank"><?php echo JText::_('TPL_GK_LANG_RSS'); ?></a>
<?php endif; ?>
User avatar
Administrator


cron