laxmikanta
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Open many pages on homepage.Then set a particular page as home page , you can do it on : setting->reading->static page
Forum: Fixing WordPress
In reply to: Open many pages on homepage.go to your dashboard->settings->permalinks->set that to %postname% .
Forum: Themes and Templates
In reply to: [Blue Planet] Add logo instead of text to headerLet me know which theme you are using and your site link .Or simply you can go to header.php and add the code:
<img src=”image url” /> on the <header> section after checking the site on google chrome inspector .Forum: Themes and Templates
In reply to: Zeke 2-Column HelpBecasue the css code :#header {
width:960px;
clear: both;
padding: 0;
margin: 0 auto;
height:160px;
background: #330000 url(images/zekehead.jpg) top center no-repeat;
} is not correct one :replace “background: #330000 url(images/zekehead.jpg) top center no-repeat;” with “background: url(images/zekehead.jpg) top center no-repeat;”
Forum: Themes and Templates
In reply to: [evolve] line-height (admin menu)you can do it by modifying the CSS of the tags.If you need more help the let me know your website link .
Forum: Themes and Templates
In reply to: [Blue Planet] Add logo instead of text to headerwhat theme you are using and what is your website address?
Forum: Installing WordPress
In reply to: Help Needed: Migrating From Blogger To WordPressHie,
You have folloed the exact steps what was needed and as @senff said , it will take time .
You can check the status of change in your DNS details either at Whios or at https://www.betterwhois.com/
by Just entering your domain name (again no “www.” at the
beginning).Because as soon your details changed on there on whois your website will work fine.I hope this will help.
Thanks that really helped ,i have a question on voyage theme , i cant find a place where i can edit the header html part.
Thanks for your replay@stephen ,I have already written such loop before but that is not working to make 6-8 static posts by following the same template as it is not following the template if i change the loop . Can you look in to this code as this is the loop which is making the posts appear on the index page:
<?php
// Show only one Sticky Post
$sticky = get_option( ‘sticky_posts’ );
$args = array(
‘posts_per_page’ => 1,
‘post__in’ => $sticky,
‘ignore_sticky_posts’ => 1
);
query_posts( $args );
if ( count($sticky)>0 ) {
while (have_posts()) : the_post();
get_template_part( ‘loop’, ‘index’ );
endwhile;
}
wp_reset_query();// Exclude Sticky Posts and show remaining normal posts
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts( array(
‘post__not_in’ => get_option( ‘sticky_posts’ ),
‘paged’ => $paged
) );while (have_posts()) : the_post();
get_template_part( ‘loop’, ‘index’ );endwhile;
?>
I just want if i can make it by giving specific category for showing on my home page. Let me know what things to be changed for such.
Yes i know that and i did But how can i make those posts to be static on that page. like i just want to see 6-8 static posts on my front page and i dont want those to be updated every time when i add new post .