Cómo eliminar Feed/RSS de la sidebar

  • Autor Autor Pixel
  • Fecha de inicio Fecha de inicio
P

Pixel

Épsilon
Diseñador
Verificado
Verificación en dos pasos activada
Verificado por Whatsapp
¡Ha verificado su Paypal!
Hola :laugh1: Estoy modificando el theme que tiene Enlace eliminado para mi weblog y quiero quitarle lo de ''Feed/RSS'' (en Tutomax aparece así) el ''Feed/Mail ya se lo retire porqué es sencillo con las Opciones del theme, pero este no y cuando se lo intento quitar (no se mucho de PHP) me sale un error de syntax.

Aqui el archivo de la left sidebar:

Insertar CODE, HTML o PHP:
		<div id="lsidebar">
			<ul>
				<?php
				if ($theme_options["display_left_image"] == 1) {
					if ($theme_options["custom_image"] == 1 && isset($theme_options["custom_image_url"]) && $theme_options["custom_image_url"] != "") { ?>
					<li class="leftPicCustomWrap"><img src="<?php echo $theme_options["custom_image_url"];?>" border="0" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('description'); ?>" class="leftPicCustom" /></li>
					<?php }
					else {?>
					<li class="leftPic"></li>
				<?php }
				}

				if ($theme_options["custom_rss"] == 1 && isset($theme_options["custom_rss_url"]) && $theme_options["custom_rss_url"] != "") {
					$customRSS = $theme_options["custom_rss_url"];
				}
				else {
					$customRSS = get_bloginfo('rss_url');
				}
				?>
				<li class="rssFeed"><a href="<?php echo $customRSS; ?>" title="Subscribe to our RSS Feed">Subscribe to our feed</a></li>
				<?php if ($theme_options["display_email_subs"] == 1) { ?><li>
					<h2>Subscribe by Email</h2>
					<ul>
						<li class="rssForm">
						<form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=<?php echo $theme_options["feedburner_name"]; ?>', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
							<input type="text" class="rssEmail" name="email"/>
							<input type="hidden" value="<?php echo $theme_options["feedburner_name"]; ?>" name="uri"/>
							<input type="hidden" name="loc" value="en_US"/>
							<input type="submit" class="rssSubmit" value="Subscribe" />
						</form>				
						<small>We take privacy seriously.<br />Your email address will <strong>not</strong> be shared.</small>
						</li>
					</ul>
				</li>
				<?php } ?>

				<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('lsidebar') ) : ?>

				<li>
					<h2>Archives</h2>
					<ul>
						<?php wp_get_archives('monthly'); ?>
					</ul>
				</li>

				<?php endif; ?>
			</ul>
		</div>
 
si no me equivoco lo que tienes que remover es esto:

HTML:
<li class="rssFeed"><a href="<?php echo $customRSS; ?>" title="Subscribe to our RSS Feed">Subscribe to our feed</a></li>
				<?php if ($theme_options["display_email_subs"] == 1) { ?><li>
					<h2>Subscribe by Email</h2>
					<ul>
						<li class="rssForm">
						<form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=<?php echo $theme_options["feedburner_name"]; ?>', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
							<input type="text" class="rssEmail" name="email"/>
							<input type="hidden" value="<?php echo $theme_options["feedburner_name"]; ?>" name="uri"/>
							<input type="hidden" name="loc" value="en_US"/>
							<input type="submit" class="rssSubmit" value="Subscribe" />
						</form>				
						<small>We take privacy seriously.<br />Your email address will <strong>not</strong> be shared.</small>
						</li>
					</ul>
				</li>
 
Excelente gracias
 
Atrás
Arriba