NazarA
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Get child page's content to show on parent pageNo I have not. How does that help?
Forum: Themes and Templates
In reply to: Get child page's content to show on parent pageSorry for the double-post, but I am trying to show the content in “Introduction” to show on the parent page.
Forum: Themes and Templates
In reply to: Get child page's content to show on parent pagehttp://meskholdings.com/brands
Should of linked before, but thats the website I am currently working on.
Forum: Themes and Templates
In reply to: Background image showing twiceUPDATE:
It’s all cool. Incase anyone runs into this issue i’ll explain what I did:Remove the meta tags “description”, “keywords” & “author”. Not too sure which of those three caused the issue but there are wordpress plugins that does them.
Took me a few days to figure out what was happening!
Forum: Themes and Templates
In reply to: Background image showing twiceWith the rest of the pages (Home, About, Services etc), I did not create a template page for them. I simply copied & pasted the code and placed it in the input box. (noob mistake?)
With the blog page, I decided to make it a template page, just to make my life a little bit easier.
Forum: Themes and Templates
In reply to: Background image showing twiceIts only happening because the blog page is a template, the rest I simply stuffed the main content ON the page. Looking at the source code that’s generated from the web browser so that I can see if WordPress is throwing in any tags that could be conflicting with my own but I dont see that issue. :/
Forum: Themes and Templates
In reply to: Loop isnt working?Actually I am using an seo pack (all-in-one SEO to be exact)
Just tried your code and it works! Thank you! π
Forum: Themes and Templates
In reply to: Loop isnt working?<?php /* Template Name: Blog */ ?> <?php get_header(); ?> <h1>Blog</h1> <div class="blog-container "> <div class="mainblog"> <?php query_posts( 'posts_per_page=5' ); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <h1 class="header"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <h2 class="infoheader"><?php the_date(); ?> | <?php the_time('H:i') ?> | <?php the_category(); ?> </h2> <div class="thumbnail"><?php the_post_thumbnail(); ?></div> <div class="the_excerpt"><?php the_excerpt(); ?></div> </div> <!--post--> <?php endwhile; endif; ?> </div> <!--mainblog--> <?php get_sidebar(); ?> </div> <!--blog-container--> <div><?php get_footer(); ?></div>This is the only issue im currently having! Other than that this’ll be all resolved π
Forum: Themes and Templates
In reply to: Loop isnt working?<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>Forum: Themes and Templates
In reply to: Loop isnt working?For now the blog is protected.
It works (yay!) however now in my <title> all i get is ” | Blue Harlequin” (site is http://www.blueharlequin.com), Im not getting this issue anywhere else!
Forum: Themes and Templates
In reply to: Major issueFound the issue, my css wasnt playing nicely.
Forum: Themes and Templates
In reply to: Major issueThat does not help at all. Ive looked back at my code and everything is perfectly fine. I think its the way I’m placing the loop that’s messing up the layout.