You are on page 1of 10

Eliminar comentarios.

En template->page.php
Eliminar la sentencia:
-

<?php comments_template();?>

Para eliminar el buscador de la barra del men


Buscar en editor si hay un header o algo asi, si no en index.php eliminar la
sentencia.
-

get_search_form

Eliminar las letras maysculas


Paste this code in Custom CSS
Appearance > Theme Option > Styling Option > Custom CSS
#menu li a {
text-transform: none;}
Para las pginas que fallan entre en editor php
Elimine esta parte:
<div class="clear"></div>
<!--Start Page Content -->
<div class="page-content-container">
<div class="page-content">
<div class="grid_16 alpha">

<div class="content-bar">
<?php the_content(); ?>
<header class="entry-header">
</header>
<p>
<?php _e('It seems we can&rsquo;t find what
you&rsquo;re looking for. Perhaps searching, or one of the links
below, can help.', 'black-bird'); ?>
</p>
<?php get_search_form(); ?>
<?php the_widget('WP_Widget_Recent_Posts',
array('number' => 10), array('widget_id' => '404')); ?>
<div class="widget">
<h2 class="widgettitle">
<?php _e('Most Used Categories', 'blackbird'); ?>
</h2>
<ul>
<?php wp_list_categories(array('orderby' =>
'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '',
'number' => 10)); ?>
</ul>
</div>
<?php
/* translators: %1$s: smilie */
$archive_content = '<p>' . sprintf(__('Try looking in
the monthly archives. %1$s', 'black-bird'), convert_smilies(':)')) .
'</p>';
the_widget('WP_Widget_Archives', array('count' => 0,
'dropdown' => 1), array('after_title' => '</h2>' . $archive_content));
?>
<?php the_widget('WP_Widget_Tag_Cloud'); ?>
</div>
</div>
Y quite cinco cierres de divs despus del ltimo.

Cambiar color del men de navegacin

Entre en el style y en men_wrapper elimine


background:#343434 url(images/menubg.png) repeat-x;

y aadi:
background:none;
background-color:#

Cambiar slider

Elimino esto del frontpage:


<!--Start Slider Wrapper-->
<div class="slider-wrapper">
<div class="flexslider">
<ul class="slides">
<!--Start Slider-->
<?php
//The strpos funtion is comparing the strings to allow uploading of
the Videos & Images in the Slider
$mystring1 = blackbird_get_option('blackbird_slideimage1');
$value_img = array('.jpg', '.png', '.jpeg', '.gif', '.bmp', '.tiff', '.tif');
$check_img_ofset = 0;
foreach ($value_img as $get_value) {
if (preg_match("/$get_value/", $mystring1)) {
$check_img_ofset = 1;
}
}
// Note our use of ===. Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
?>
<?php if ($check_img_ofset == 0 &&
blackbird_get_option('blackbird_slideimage1') != '') { ?>
<li><?php echo blackbird_get_option('blackbird_slideimage1'); ?
></li>
<?php } else { ?>
<li> <?php if (blackbird_get_option('blackbird_slideimage1') != '')
{ ?>

<img src="<?php echo


blackbird_get_option('blackbird_slideimage1'); ?>" alt=""/>
<?php } else { ?>
<img src="<?php echo get_template_directory_uri(); ?
>/images/slider1.png" alt=""/>
<?php } ?>
<div class="flex-caption">
<?php if (blackbird_get_option('blackbird_sliderheading1') !=
'') { ?>

<h1><a href="<?php
if (blackbird_get_option('blackbird_Sliderlink1') != '') {
echo blackbird_get_option('blackbird_Sliderlink1');
}
?>"><?php echo
stripslashes(blackbird_get_option('blackbird_sliderheading1')); ?
></a></h1>
<?php } else { ?>
<h1><a href="#"><?php _e('Elegancy with Simplicity',
'black-bird'); ?></a></h1>
<?php } ?>
<?php if (blackbird_get_option('blackbird_sliderdes1') != '')
{ ?>
<p>
<?php echo
stripslashes(blackbird_get_option('blackbird_sliderdes1')); ?>
</p>
<?php } else { ?>
<p><?php _e('Blackbird Theme allows you to create your
website through an easy to use themes options panel.', 'black-bird'); ?
></p>
<?php } ?>

</div>
</li>
<?php } ?>
<!--End Slider-->
</ul>
</div>
</div>
<!--End Silder Wrapper-->
Y meto la function llamando al nuevo slider.
<?php if ( function_exists( 'show_simpleresponsiveslider' ) )
show_simpleresponsiveslider(); ?>

Luego le meti el wrapper

<!--Start Slider Wrapper-->


<div class="slider-wrapper">
<div class="flexslider">
<ul class="slides">
<!--Start Slider-->
<?php if ( function_exists( 'show_simpleresponsiveslider' ) )
show_simpleresponsiveslider(); ?>

</ul>
</div>
</div>
<!--End Silder Wrapper-->

Cambiar la parte del slider


Entro en el style
/* Caption style */
.flex-caption {
background:url(images/cap-bg.png) repeat;
padding: 10px;
margin: 0;
position: absolute;
right: 15px;
bottom: 15px;
color: #fafafa;
font-size: 13px;
line-height: 18px;
width:306px;
height:auto;
border-radius:10px;
overflow:hidden;
}
.flex-caption a.flex-read {
color:#fff;
}
.flex-caption a.flex-read:hover {
color:#FFFF00;
}
.flex-caption h1 {
margin-bottom:10px;
width:200px;

margin-left:15px;
margin-right:15px;
margin-top:15px;
}
.flex-caption h1 a {
color:#ffffff;
font-size:24px;
line-height:25px;
text-transform:uppercase;
}
.flex-caption p {
width:200px;
margin-left:15px;
margin-right:15px;
color:#868686;
font-size:13px;
font-family:"Trebuchet MS";
}
.caption {
/*background:#211916;
border-radius:10px;*/
padding: 10px;
margin: 0;
position: absolute;
right: 30px;
bottom: 40px;
color: #fafafa;
font-size: 13px;

line-height: 18px;
/*max-width: 55%;*/
width:308px;
height:94px;
}

Y he puesto esto:

/* Caption style */
.caption {
background:url(images/cap-bg.png) repeat;
padding: 10px;
margin: 0;
position: absolute;
right: 15px;
bottom: 15px;
color: #fafafa;
font-size: 13px;
line-height: 18px;
width:306px;
height:auto;
border-radius:10px;
overflow:hidden;
}
.caption a.flex-read {
color:#fff;
}
.flex-caption a.flex-read:hover {

color:#FFFF00;
}
.caption h1 {
margin-bottom:10px;
width:200px;
margin-left:15px;
margin-right:15px;
margin-top:15px;
}
.caption h1 a {
color:#ffffff;
font-size:24px;
line-height:25px;
text-transform:uppercase;
}
.caption p {
width:200px;
margin-left:15px;
margin-right:15px;
color:#868686;
font-size:13px;
font-family:"Trebuchet MS";
}

Voya eliminarlo del them options

http://localhost/wordpress/wpcontent/uploads/2014/04/slidertamanioBueno.png

voy a eliminar el flex-slider

You might also like