Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/05/2011, 15:16
Avatar de raid_
raid_
 
Fecha de Ingreso: diciembre-2010
Mensajes: 132
Antigüedad: 13 años, 4 meses
Puntos: 12
Respuesta: desarrollando web con Mystique

me he descargado tu tema y la forma de quitarlo, asi a lo rapido es esta

va y buscar el archivo xtra-nav.php que esta en .............mystique\extensions\xtra-nav


abres el archivo y busca lo siguiente:


Código PHP:
Ver original
  1. function mystique_xtranav_css(){
  2.  $i = THEME_URL.'/images'; ?>
  3. #header a.nav-extra.rss{background:transparent url(<?php echo $i; ?>/nav-icons.png) no-repeat right top;}
  4. #header a.twitter{background:transparent url(<?php echo $i; ?>/nav-icons.png) no-repeat left top;}
  5. <?php
  6. }
y lo dejas de esta manera:

Código PHP:
Ver original
  1. function mystique_xtranav_css(){
  2.  $i = THEME_URL.'/images'; ?>
  3.  
  4. <?php
  5. }


tambien busca esto:
Código PHP:
Ver original
  1. function mystique_xtranav_icons($nav_extra){
  2.   if(get_mystique_option('xtranav_twitter'))
  3.    $nav_extra .= '<a href="http://twitter.com/'.wp_specialchars(get_mystique_option('xtranav_twitter')).'" class="nav-extra twitter" title="'.__("Follow me on Twitter","mystique").'"><span>'.__("Follow me on Twitter","mystique").'</span></a>';
  4.  
  5.   if(get_mystique_option('xtranav_rss'))
  6.    $nav_extra .= '<a href="'.wp_specialchars(get_mystique_option('xtranav_rss')).'" class="nav-extra rss" title="'.__("RSS Feeds","mystique").'"><span>'.__("RSS Feeds","mystique").'</span></a>';
  7.   return $nav_extra;
  8. }

y lo dejas asi:
Código PHP:
Ver original
  1. function mystique_xtranav_icons($nav_extra){
  2.  
  3. }


creo que es eso lo que quieres hacer