sqlarticles
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Articles on PagesI’ve modified the theme and I got the result. Thanks
Forum: Themes and Templates
In reply to: Page with SideBarThanks a lot avanimisra….
I’ve made some changes and got the final result..Thanks again π
Forum: Themes and Templates
In reply to: Page with SideBarHi..
I need the PHP code used to get the details of articles title and its content. You can find in the articles page in the website.
My requirement is that .. I need sidebar in Home page and side bar is not needed in articles page. When I implement the script given by you its perfectly removing the side bar from the entire theme (also from the home page ) but I need it in the home page. So i thought of creating a page template to fetch the details of articles titles and content (as in article page) and use this in a page.
I’ve copied some codes from index.php, but this is not working. Any ideas?
Thanks Again
Forum: Themes and Templates
In reply to: Page with SideBarThanks a lot. This worked for me.
I need one more help. Can I get the query to fetch the posts and its content (i.e in my website i need articles alone) as shown in articles page.Forum: Themes and Templates
In reply to: Page with SideBarThanks.. Right now I’m in office, I wont be able to upload the image file. Will check it and provide you the result some time later.
Forum: Themes and Templates
In reply to: Page with SideBarBelow is the footer content
</div> <!-- main END --> <?php //get_sidebar(); ?> <div class="fixed"></div> </div> <!-- content END --> <?php include('templates/end.php'); ?>You can preview it in the link http://sql-articles.com/blogs/articles/
Forum: Themes and Templates
In reply to: Page with SideBarThanks, this worked but the div is still there.
You are right, I’ve used page without side bar template. However I dont know how to display only posts (without sidebar). I.e I dont know the query to be used to get only post content.
Forum: Themes and Templates
In reply to: Remove sidebar in iNove ThemeHi MG12,
Can you help me to remove the sidebar. Please check the links below.
My blog site
http://sql-articles.com/blogs/articles/Forums page:
http://wordpress.org/support/topic/246600?replies=5Forum: Themes and Templates
In reply to: Page with SideBarI couldnt find the function in any of the file mentioned under themes folder. Can you check the theme, its located @ http://wordpress.org/extend/themes/inove
I’ve tried the below PHP query, but its not displaying anything.
<?php if (have_posts()) : the_post(); update_post_caches($posts); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="info"> <span class="date"><?php the_modified_time(__('F jS, Y', 'inove')); ?></span> <div class="act"> <?php if ($comments || comments_open()) : ?> <span class="comments"><a href="#comments"><?php _e('Goto comments', 'inove'); ?></a></span> <span class="addcomment"><a href="#respond"><?php _e('Leave a comment', 'inove'); ?></a></span> <?php endif; ?> <?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?> <div class="fixed"></div> </div> <div class="fixed"></div> </div> <div class="content"> <?php the_content(); ?> <div class="fixed"></div> </div> </div> <?php else : ?> <div class="errorbox"> <?php _e('Sorry, no posts matched your criteria.', 'inove'); ?> </div> <?php endif; ?> <?php include('comments.php'); ?>Forum: Themes and Templates
In reply to: Page with SideBarOk I’ll provide some more detail.
Check my website in the link http://sql-articles.com/blogs/articles/
I need to remove sidebar in that page. I’m not a PHP developer, so can someone please help me to remove the sidebar.
All other pages I’ve corrected it. In this article page I’ve selected static page option under reading setting and change the posts page to article.
Forum: Everything else WordPress
In reply to: Articles on PagesAnyone have any idea on this?