MrCrow
Forum Replies Created
-
Thank you for the post. I did create a ticket there.
Forum: Plugins
In reply to: WPTouch Pro only white pageReposting.
Forum: Plugins
In reply to: [WP Super Popup] [Plugin: WP Super Popup] Page content bleeding throughFixed. For anyone else who has this problem, mine was caused by a z-index on one of my divs. Once I removed that, it didn’t bleed through.
Forum: Themes and Templates
In reply to: Showing parent and children page titlesSOLVED with below code:
<?php get_header(); ?> <div id="main"> <?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?><!-- [breadcrumb] --> <div id="subnavtitle"><h2><?php $parent_title = get_the_title($post->post_parent); echo $parent_title; ?></h2></div> <div id="contenttitle"><h2><?php the_title(); ?></h2></div> <div id="subnav"><?php include(TEMPLATEPATH."/sidebar.php");?></div> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="content"><p><?php the_content(); ?></p></div> <?php endwhile; ?> <?php endif; ?> <?php include(TEMPLATEPATH."/sidebar2.php");?> </div> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: Showing parent and children page titlesEsmi,
I fixed everything moving to the right, but it still shows the parent title under both divs. Here is the code:
<?php get_header(); ?> <div id="main"> <?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?><!-- [breadcrumb] --> <?php if( !$post->post_parent ) :?><div id="subnavtitle"><h2><?php the_title(); ?></h2></div> <?php else: ?><div id="contenttitle"><h2><?php the_title(); ?></h2></div> <?php endif;?> <div id="subnav"><?php include(TEMPLATEPATH."/sidebar.php");?></div> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="content"><p><?php the_content(); ?></p></div> <?php endwhile; ?> <?php endif; ?> <?php include(TEMPLATEPATH."/sidebar2.php");?> </div> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: Showing parent and children page titlesThanks esmi! When I entered that code, it shifted everything to the right, like my sidebar menu and content. Here’s code:
<?php get_header(); ?> <div id="main"> <div class="breadcrumbs"> <?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?> </div> <!-- [breadcrumb] --> <?php if( !$post->post_parent ) :?><div id="subnavtitle"><h2><?php the_title(); ?></h2></div> <?php else: ?><div id="contenttitle"><h2><?php the_title(); ?></h2></div> <?php endif;?> <div id="subnav"> <?php include(TEMPLATEPATH."/sidebar.php");?> </div> <div id="content"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> <?php include(TEMPLATEPATH."/sidebar2.php");?> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: How to add nav menuTy esmi.
I’ll make a child theme then.
Can anyone tell me how to make a top nav bar where the site-description is located?
Forum: Themes and Templates
In reply to: How to add nav menuAnd how do I create the menu where the site description is located?
Forum: Themes and Templates
In reply to: How to add nav menuSo should I go about copying all the files from twenty ten or create a child theme? What’s the best practice I guess is what I’m asking.
Forum: Themes and Templates
In reply to: How to add nav menuI’m not changing the theme itself. I created a new child theme and copied over all the files from twenty ten.
Forum: Themes and Templates
In reply to: Convert existing CMS site to WordPressWill I be able to use any coding for it? Like the old php and html and css?