sonai
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My mistake but I can not get access to my wordpress admingo to database..and open wp_options table. then change your url…
Forum: Fixing WordPress
In reply to: Click post fillter by categoryuse the “WP Single Post Navigation Within Category” plugins for your errors.
Forum: Fixing WordPress
In reply to: Blog Post Links Deadhi,
i have found that solutions…
use this methods.
adding your css file into below this code#crp_related
{
position: relative;
z-index: 111111;
}Forum: Themes and Templates
In reply to: [Spun] Footer displaywill have just make your coding into footer file
Forum: Themes and Templates
In reply to: How to hide the sidebar on two pages only?how did you include your button?
static or dynamic?Forum: Themes and Templates
In reply to: How to hide the sidebar on two pages only?hi,
thx.
i will refer then, i will update….Forum: Themes and Templates
In reply to: How to hide the sidebar on two pages only?create a full width template and use the template file for two pages…
For Ex:
<?php /** * Template Name : Full Width Template * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package WordPress * @subpackage Twenty_Twelve * @since Twenty Twelve 1.0 */ get_header(); ?> <div id="primary" class="site-content"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php comments_template( '', true ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary --> <?php //get_sidebar(); ?> <?php get_footer(); ?>[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Forum: Themes and Templates
In reply to: Header Issuesi think, plz change the your html menu structure…if does menus comes after slider then its working fine…
Forum: Themes and Templates
In reply to: [Stitch] Post excerptsuse the ” the_excerpt” on your post templates then add below this code to functions.php
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );function new_excerpt_more( $more ) {
return ‘ Read More‘;
}