I have installed this theme on my development server (url like test.com/development) and production server (url like test.com) and found on production server that the url on the rss icon in header, links to rss.xml without the website domain preceding rss.xml (http://rss.xml). But on the development server the icon link is correct (http://test.com/development/rss.xml).

So I investigated a little bit and found that the link is on page.tpl.php line 84 and the code is:
<li><a href="<?php print $front_page; ?>/rss.xml"><img src="<?php print base_path() . drupal_get_path('theme', 'corporate') . '/images/rss.png'; ?>" alt="RSS Feed"/></a></li>

And found that if add something between <?php print $front_page; ?> and /rss.xml the website domain appears.

For example: <li><a href="<?php print $front_page; ?>something_here/rss.xml"><img src="<?php print base_path() . drupal_get_path('theme', 'corporate') . '/images/rss.png'; ?>" alt="RSS Feed"/></a></li>
The url output is http://test.com/somethinghere/rss.xml

Comments

devsaran’s picture

Status: Active » Closed (works as designed)

I think $front_page will work.. It is working in many other sites which has different front pages.