nathan14
Member
Posted 2 years ago #
Hi Guys,
any advise would be greatly received on this, as I have been struggling for a few weeks on this .....
I'm using the AutoFocus theme 0.9.1 by Allan Cole
1. I'm looking to remove the RSS link completely from the site
2. looking to have one of the the page title links (promo, editorial, shorts etc ) to stay highlighted when i am on that particular page. I have created rollover highlights but am struggling to highlight each page
this is my site
http://cheifnath.110mb.com/MARCUSANDHELEN/wordpress/
below is my style.css code
/[CSS moderated as per the Forum Rules.]
miabake1
Member
Posted 2 years ago #
I use Autofocus ver 1.0.1 and was able to remove it by replacing line 464 in functions.php with echo '<li class="page_item"> </div>';
if you haven't already check out this discussion on removing the rss with the other version of autofocus http://wordpress.org/support/topic/271482
sdoubleyu
Member
Posted 2 years ago #
anyone know how to change the RSS name? to ie Subcribe here!?
noneyabiz
Member
Posted 1 year ago #
I'm using 1.0.1 and this is how I got rid of my rss link.
in functions.php find
// Produces a list of pages in the header without whitespace -- er, I mean negative space.
function sandbox_globalnav() {
echo '<div id="menu">
<li class="page_item">Home';
$menu = wp_list_pages('title_li=&sort_column=menu_order&echo=0'); // Params for the page list in header.php
echo str_replace(array("\r", "\n", "\t"), '', $menu);
echo '<li class="page_item">RSS
</div>';
}
and I just got rid of
<a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a>
I don't think it'll cause any conflicts and seems to be working fine now. If anyone knows a better way please let me know