Forum Replies Created

Viewing 10 replies - 16 through 25 (of 25 total)
  • Thread Starter czone

    (@czone)

    Thank 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

    Thread Starter czone

    (@czone)

    Oh 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.

    Thread Starter czone

    (@czone)

    Thanks 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.

    Thread Starter czone

    (@czone)

    Thanks Emil Uzelac,
    Problem solved

    Thread Starter czone

    (@czone)

    Thanks 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?

    Thread Starter czone

    (@czone)

    Thanks 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 πŸ™‚

    Thread Starter czone

    (@czone)

    here 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(); ?>
    Thread Starter czone

    (@czone)

    you can see the results at this link
    http://www.mentorarts.com/wordpress/advpress/

    (BLOG PAGE IS MY DEFAULT POST PAGE)

    Thread Starter czone

    (@czone)

    Both 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.

    Thread Starter czone

    (@czone)

    My 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

Viewing 10 replies - 16 through 25 (of 25 total)