johnjf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Previos Posts Not WorkingAhh I just used internet explored and the previous posts link is beside my posts on the right. I’ll have to fix that, I’m working on a new design so will be sure this doesn’t happen.
Forum: Fixing WordPress
In reply to: Previos Posts Not Workinghmm? What browser are you using? On the main page if you go all the way down you should see a link that shows ” <—- Previous Entries ” just below my blog posts. When I click on it goes to page 2 but still shows the latest 5 posts.
Forum: Fixing WordPress
In reply to: Previos Posts Not WorkingI think if you created your own child theme and you can’t find the <title> tag then all you have to do is just instert your code above just below the <head> tag
Forum: Fixing WordPress
In reply to: featured image not sizing the sameThanks for the help. What I did was try removing the height in the css and it did nothing so I changed the code to
add_image_size( ‘post-thumb’, 375 ); // homepage thumbnail
it showed the image width the same but the height wasn’t the same, it was off by about 15px so I added the height back into the css and now it’s showing up properly.
Guess it was an issue like you said Christine with the image not being as big as the one in the post on the left.
Thanks again for the help, greatly appreciated.
Forum: Fixing WordPress
In reply to: Posts in separate boxesThanks for the help, I managed to figure it out as said to look into the css.
Forum: Fixing WordPress
In reply to: Integrate a blog post from other site into wordpressoops sorry, didn’t make it clear enough. What they want is the blogs posts from the 1st website to automatically implement into the 2nd under the blog catergory, say fitness. So when ever they make a post from there first website it would automatically post onto the 2nd website but under that category.
Forum: Fixing WordPress
In reply to: sub page links not showingwhy doesn’t anyone ever reply? I’m sure someone knows how to setup a wordpress navigation that can help me.
Forum: Fixing WordPress
In reply to: Posts in all pages helpnvm, just realized I had multiple loops and needed
wp_reset_query();
to start my other loop
you can place
<?php echo do_shortcode('[thethe-image-slider name="slidername"]'); ?>
Change “slidername” with the name of your slider.
where you want the slide to appear and I think that should work.Forum: Fixing WordPress
In reply to: Editable regions on pagefound out how to do it myself
Forum: Fixing WordPress
In reply to: WordPress posts showing up in all pages, why?found out the error myself
Forum: Fixing WordPress
In reply to: WordPress posts showing up in all pages, why?Well I’ve been trying to figure out the problem going back and forth editing page.php and index.php, checking my header, etc. I can’t seem to find the problem.
I took away
query_posts('pagename=Home');
edited what ever else and still all I’m getting is recent posts showing up in my pages instead of content pages.
Forum: Fixing WordPress
In reply to: WordPress posts showing up in all pages, why?I’m using localhost xampp to work on my theme. I’m following a tutorial from amberwienburg using her hyjinks template.
I have this in my index.php
<?php query_posts('pagename=Home'); if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div id="content_main"> <h2><?php the_title();?></h2> <?php the_content();?>
and in my page.php file I just have
<?php if (have_posts()) ; ?> <?php while (have_posts()) : the_post(); ?> <div id="content_wrap"> <div id="content_main"> <h2><?php the_title();?></h2> <?php the_content(); ?>
Sorry I’m new to wordpress.
Forum: Fixing WordPress
In reply to: Working on website behind the scenes?Thank you, I’ll give it a try