Eliminar imágenes aleatorias y personalizar footer en theme

  • Autor Autor Mma
  • Fecha de inicio Fecha de inicio
M

Mma

Eta
SEO
Buenas amigos,

estoy creando el blog descargarjuegospsp.es y he instalado un theme que siempre me había gustado, pero tiene arriba de las entradas donde van pasando las imágenes aleatoriamente, y eso me gustaría quitarlo. ¿Cómo puedo hacerlo?

Otra cosa es que en el footer no tengo nada puesto y me salen "Archives, Links, Recents Posts" y tal.
Si me meto en widgets -> footer y pongo por ejemplo un calendario, se quita todo y se queda el calendario, pero si dejo el footer sin ningún widgets, me salen todos de nuevo.
¿Qué puedo hacer?

Gracias, un saludo!.
 
Elimina esto de index.php, pero recuerda hacer un respaldo primero por si las moscas.
Lo mas probable es que no te aparezca el código igual (te aparecerá PHP), por lo tanto solo elimina las capas <div id="slider-wrapper"> (con todo su cntenido) y tambien <div class="slider_nav" style="width: 640px; ">&nbsp;</div>

HTML:
<div id="slider-wrapper"><div id="slider" class="nivoSlider" style="position: relative; width: 640px; height: 330px; background-image: url(http://descargarjuegospsp.es/wp-content/themes/ifeature/images/ifeaturefree.jpg); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: no-repeat no-repeat; "><a href="http://descargarjuegospsp.es/prueba/" class="nivo-imageLink" style="display: block; ">	
	    				<img src="http://descargarjuegospsp.es/wp-content/themes/ifeature/images/ifeaturefree.jpg" height="330" width="640" title="#caption0" style="display: none; ">
	    					<div id="caption0" class="nivo-html-caption">
                				<font size="4">prueba </font> <br>
                				 
                			</div>
	    				</a>
	    			<div class="nivo-caption" style="opacity: 0.7; "><p>
                				<font size="4">prueba </font> <br>
                				 
                			</p></div><div class="nivo-directionNav" style="display: none; "><a class="nivo-prevNav">Prev</a><a class="nivo-nextNav">Next</a></div><div class="nivo-controlNav" style="left: 307.5px; "><a class="nivo-control active" rel="0">1</a></div></div>	<script type="text/javascript">
	jQuery(document).ready(function($) {
	$(window).load(function() {
    $('#slider').nivoSlider({
        effect:'random', // Specify sets like: 'fold,fade,sliceDown'
        slices:15, // For slice animations
        boxCols: 8, // For box animations
        boxRows: 4, // For box animations
        animSpeed:500, // Slide transition speed
        pauseTime:'3500', // How long each slide will show
        startSlide:0, // Set starting Slide (0 index)
        directionNav:true, // Next & Prev navigation
        directionNavHide:true, // Only show on hover
        controlNavThumbs:false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel:true, // Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', // Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
        keyboardNav:true, // Use left & right arrows
        pauseOnHover:true, // Stop animation while hovering
        manualAdvance:false, // Force manual transitions
        captionOpacity:0.7, // Universal caption opacity
        prevText: 'Prev', // Prev directionNav text
        nextText: 'Next', // Next directionNav text
        beforeChange: function(){}, // Triggers before a slide transition
        afterChange: function(){}, // Triggers after a slide transition
        slideshowEnd: function(){}, // Triggers after all slides have been shown
        lastSlide: function(){}, // Triggers when last slide is shown
        afterLoad: function(){} // Triggers when slider has loaded
    });
	$('#slider').each(function(){
    var $this = $(this), $control = $(".nivo-controlNav", this);
    $control.css({left: ($this.width() - $control.width()) / 2}); 
});
});
});

</script>
</div>
<div class="slider_nav" style="width: 640px; ">&nbsp;</div>


...En cuanto a lo del footer, lo que te aparece por default es porque así esta configurado el theme. Si no quieres que salga nada, colocale un widget de texto/html vació.

Saludos
 
Muchas gracias amigo.
He hecho lo del cuadro de texto en el footer y ahora me sale una raya en negra..

Respecto al index, no me sale así. Este es mi index:

HTML:
<?php
/**
* Index template used by the iFeature theme.
*
* Authors: Tyler Cunningham, Trent Lapinski.
* Copyright: © 2011
* {@link http://cyberchimps.com/ CyberChimps LLC}
*
* Released under the terms of the GNU General Public License.
* You should have received a copy of the GNU General Public License,
* along with this software. In the main directory, see: license.txt.
* If not, see: {@link http://www.gnu.org/licenses/}.
*
* @package iFeature
* @since 3.1
*/

/**
* Variable definition.
*/
	global $options, $themeslug, $post; // call globals
	$blogsidebar = $options->get($themeslug.'_blog_sidebar');
	
?>

<?php get_header(); ?>

<div class="container_12">

		<div id="content" class="grid_8">
		
	<?php if ($options->get($themeslug.'_hide_slider_blog') != '0' ): ?>
			<!--Begin @Core index entry hook-->
				<?php chimps_blog_slider_lite(); ?>
			<!--End @Core index entry hook-->
		<?php endif; ?>

			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
			
			<div class="post_container">
				<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
				
				<!--Begin @Core index loop hook-->
					<?php chimps_before_loop(); ?>
				<!--End @Core index loop hook-->
		
				<!--Begin @Core index loop hook-->
					<?php chimps_loop(); ?>
				<!--End @Core index loop hook-->	
				
				<!--Begin @Core index loop hook-->
					<?php chimps_after_loop(); ?>
				<!--End @Core index loop hook-->
			
				<!--Begin @Core link pages hook-->
					<?php chimps_link_pages(); ?>
				<!--End @Core link pages hook-->
			
				<!--Begin @Core post edit link hook-->
					<?php chimps_edit_link(); ?>
				<!--End @Core post edit link hook-->
			
				<!--Begin @Core FB like hook-->
					<?php ifeature_fb_like_plus_one(); ?>
				<!--End @Core FB like hook-->
			
				<!--Begin @Core post tags hook-->
					<?php chimps_post_tags(); ?>
				<!--End @Core post tags hook-->
			
				<!--Begin @Core post bar hook-->
					<?php ifeature_post_bar(); ?>
				<!--End @Core post bar hook-->
			
				</div><!--end post_class-->	
		</div><!--end post container--> 
	
			<?php endwhile; ?>
		
			<?php else : ?>

				<h2>Not Found</h2>

			<?php endif; ?>
			
				<!--Begin @Core pagination hook-->
			<?php chimps_pagination(); ?>
			<!--End @Core pagination loop hook-->
		
		</div><!--end content-->

	<!--Begin @Core index after entry hook-->
	<?php chimps_after_entry(); ?>
	<!--End @Core index after entry hook-->

</div><!--end container_12-->

<div class='clear'>&nbsp;</div>

<?php get_footer(); ?>
 
El bloque de las imagenes que van pasado se suelen llamar slider, pues ahi lo tienes: chimps_blog_slider_lite
 
Atrás
Arriba