Uberche
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: URL IssueThat’s what I was looking for, thought I did this with the other site…
Thanks!
Forum: Fixing WordPress
In reply to: Getting my own adds on my webpageUpload the picture at the correct size to your server than use
<img src="image url here" width="125" height="125">
to display it.<a href="link you want to open"><img src="image url here" width="125" height="125"></a>will make a picture that links to another page so you can have them click on the image and go to whereever you want them to be going.
Forum: Fixing WordPress
In reply to: Comments issueNo… i didn’t fix it. But I did figure out what is causing the problem.
At the bottom of my page I want to have a random list of other blogs from that category. so i used
<?php $recent = new WP_Query("cat=274&showposts=4&orderby=rand"); while($recent->have_posts()) : $recent->the_post();?> <div class="frontrecent"> <a href="<?php the_permalink() ?>" rel="bookmark"> <?php the_post_thumbnail(array(150,113)); ?><br/> <?php the_title(); ?> </a> </div> <?php endwhile; ?>When I include this in my page it does the above to my comments section. Any ideas on why? I’d really rather not have yet another plugin for the “related posts” function. Why would this destroy my comment sections ability to work properly?
Forum: Fixing WordPress
In reply to: Comments issueAs no one seems to know i just rebuilt it. seems to be working. fingers crossed.
Forum: Fixing WordPress
In reply to: Comments issueif you want to see it take a look at
http://www.ethansenglishcafe.com/wpblog/2010/07/test7/
It’s Test7 post showing test4’s categories which I added on I Love Movies post.
Forum: Fixing WordPress
In reply to: After 1 week it only shows white pages now!?Not sure how much helpt his is but I’ve only had complete white sites when something goes wrong in the code or if a plugin starts acting up. Have you changed anything recently? If not and no one else here can suggest anything I’d suggest reinstalling the backups of the base wordpress files (header.php, footer.php, index.php, functions.php) as many as you need one at a time till it lets you into the admin, keep track and see which is the one messing up and go from there.
Forum: Fixing WordPress
In reply to: Different headers in Different PagesFantastic should also be, maybe just needed reloading (I just updated it to the proper link this afternoon after you replied here). But regardless just used the code you put here on the Fantastic link as well and worked like a charm!!
Thanks a lot Alchymyth! So much less hassle than I was trying to make it.
Forum: Fixing WordPress
In reply to: Different headers in Different PagesThere are two buttons not working so far, the header is designed so Blog works, Forum isn’t working, it’s a Simplepress forum within WordPress on it’s own page and Fantastic phrase is not working either, it’s just the category “fanphrase” within wordpress.
Either conditional statements within the code for each of the three buttons or conditional statements with three separate codes would be fine. All that needs to change is which of the three buttons (Fantastic phrases, Blog and Forums) has the “Class=”current”” depending if I’m looking at the Page ‘forum’, the category ‘blog’ or the category ‘fanphrase’.
Thanks!
Forum: Fixing WordPress
In reply to: Different headers in Different Pages1. I should have been a little clearer I think, I only want two different styles of buttons, the brown and the silver. Both are working fine on the server. What I want is the current page’s button to be silver and the rest brown. Right now all buttons using wordpress pages (Blog, Fantastic Phrase and Forum) all have the Blog silver because that’s the base page.
So I basically need to use conditional statements to make them change, when it’s looking at the Fantastic Phrase archive I want the Fantastic Phrase button silver, when they are looking at the Forum I was the forum button Silver.
2. Ok, so where exactly in the default word press php file should they be placed?
3 & 4. But they are all in wordpress so it only has one page, so CSS styles don’t work in this case. Half my site is made using regular CSS styled pages and they work fine. half is built around wordpress as a content manager and I’m having trouble getting the buttons to work in that.
Forum: Fixing WordPress
In reply to: Different headers in Different PagesUpdated my reply with the question. seems to be showing. I’ve checked all sorts of sites for the code for this and none of it seems to be working for me… not sure why. Hoping someone here can answer because I’m not much for php so I’m stumped.
it’s showing now… strange.
Forum: Fixing WordPress
In reply to: Different headers in Different PagesIs it just me or is my question apparently not showing?
Different headers in different pages.
<?php if (is_page('slider')){ include(TEMPLATEPATH.'/headerslider.php'); } elseif (is_page('blog')){ include(TEMPLATEPATH.'/headerblog.php'); } else { include(TEMPLATEPATH.'/headerdefault.php'); } ?>made the corresponding header.php files and it still gives me a white empty page.
tried
<?php if (is_page('forum')){ *forum header CSS code*; } elseif (is_page('blog')){ *blog header CSS code*; } else { *regular header CSS code*; } ?>and also just empty white pages.