czone
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Advance functions & options for homepageThank you so much Frumph,
I am finally getting something from the link you send.
Still need to learn alot to accomplish my goal πThank you one again
Forum: Themes and Templates
In reply to: Advance functions & options for homepageOh yes! one more thing, Plugins have to be installed separately and I want Slide Show etc to be part of my theme including the Admin Section to manage it.
Forum: Themes and Templates
In reply to: Advance functions & options for homepageThanks Jrav001, The link is providing me with great knowledge however I do face one issue
I am not that good with codes to create my own plugin. I was thinking if I can somehow add things like jQuery Image slideshow and provide users the option at WP-Admin where they can add there images and other info to thats slideshow and same thing for Featured Content Divs at the HomePage.
Forum: Themes and Templates
In reply to: Customizing Search WidgetThanks Emil Uzelac,
Problem solvedForum: Themes and Templates
In reply to: Embedding widgets permanentlyThanks Frumph for helping me, your suggestion solved my prob.
BUT 1 PROBLEM
What if I am using a widget which is not installed in WordPress by default?
Since the default widget for search do not allow any styles CSS so I used “Customizable Search Widget” for that. How to embed that?
Forum: Fixing WordPress
In reply to: Removing Page titleThanks vtxyzzy,
I solved the problem, here is what i did<?php if ( is_front_page() ) { ?> <?php } else { ?> <h2 class="entry-title"><?php the_title(); ?></h2> <?php } ?>I really appreciate your help, it gave me the clues to try some tricks and one of them worked π
Forum: Fixing WordPress
In reply to: Removing Page titlehere is the full code from index.php file including your code
<?php get_header(); ?> <div class="container"> <div class="content" role="main"> <div class="pagename"><h1 class="entry-title"><span><?php if ( ! is_page('home') ) { wp_title( '', true, 'right' );} else { ?>Home <?php } ?></span></h1> <div class="custom-search" role="complementary"> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Primary-TopSearch') ) : else : ?> <?php endif; ?> </div></div> <div class="side_bar"> <?php get_sidebar(); ?></div> <div class="content-main one-column"> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if (++$counter > 1) { ?><h2 class="post-title"><span><?php post_title(); ?></span></h2><?php } ?> <div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?> </div><!-- .entry-content --> </div><!-- #post-## --> <?php comments_template( '', true ); ?> <?php endwhile; ?> </div><!-- #content-main --> </div><!-- #content --> </div><!-- #container --> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Removing Page titleyou can see the results at this link
http://www.mentorarts.com/wordpress/advpress/(BLOG PAGE IS MY DEFAULT POST PAGE)
Forum: Fixing WordPress
In reply to: Removing Page titleBoth the codes are on the same page index.php
I used twentyten theme codes (page.php) as reference.I tried your method, it did hide the doubling of Page title on all pages but at the blog page there is no heading as well + only the recent blog is showing.
Forum: Fixing WordPress
In reply to: Seperating Post Title and Page TitleMy posts are in a loop and that part is working fine i.e. whenever I add a new post it appears with its title.
Here are 2 images to explain my problem
Issue with Blog Page = http://www.mentorarts.com/images/blog.gif
Issue with Pages = http://www.mentorarts.com/images/page.gif