OthelloBloke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Removing Bold from Title and Paragraph issueIt’s a CSS issue.
Look for:
p { /*margin: 10px; */ font-size: 13px; line-height: 1.25em; }and change to:
p { font-size: small; margin:0px 0px 15px 0px; }Then look for:
h3 { font-size: 33px; line-height: 1.25em; font-weight: bold; font-family: Georgia; }and change to:
h3 { font-size: 33px; line-height: 1.25em; font-family: Georgia; }Forum: Fixing WordPress
In reply to: static pages turned to blog pagesWhat’s the URL?
Forum: Fixing WordPress
In reply to: Get Posts by Custom FieldAnyone? Please?
Forum: Fixing WordPress
In reply to: Get Posts by Custom FieldWhen I remove the query post tag in the first line… the posts show… but ALL of them which I don’t want.
Can anyone help please?
Forum: Fixing WordPress
In reply to: Changing Permalink SetupIt would be needed until all of the old links on various search engines or websites have been removed. So basically yeah it will be always needed.
Why remove it anyway? It’ll help in the future.
Forum: Fixing WordPress
In reply to: PAGES CONTENT EMPTY, what gives?You should delete your installation and all the files on chumuchumu.com, and put an htaccess in the root with the following:
RedirectMatch 301 http://www.chumuchumu.com/wordpress/(.*) http://www.themanrevolution.com/$1Everything will redirect to the corresponding page in the new location.
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postActually I think this way worked out better… check it out
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postThat’s weird because it DOES work if I don’t use the code you gave me.
At the moment I’m hiding the overflow on the div with css.
This sucks because I want a more link below the side vid and can’t now 🙁
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postDUDE YOU ROCKKKKKKKK!
That worked – nearly. But now it ignores the ‘more’ tag I’ve inserted into the post… so when I view ANY page or post on my website, it shows the entire text of the sidebar video.
🙁
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postThe code I have in the sidebar that shows 1 post from the video category is as follows:
<?php query_posts($query_string); query_posts("showposts=1&cat=21"); ?><?php while (have_posts()) : the_post(); ?> <div class="right-margin"> <?php the_content(); ?><?php edit_post_link('Edit', '<p>[ ', ' ]</p>'); ?> </div> <?php endwhile; ?>I want something like this:
<?php if($fakeloop-postid != $mainloop-postid) { ?> <?php query_posts($query_string); query_posts("showposts=1&cat=21"); ?><?php while (have_posts()) : the_post(); ?><div class="right-margin"><?php the_content(); ?><?php edit_post_link('Edit', '<p>[ ', ' ]</p>'); ?></div><?php endwhile; ?> <?php } ?>Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postThe problem is I can’t get the id of the side post to cross over into the main loop and vice versa… even with using global.
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postThe problem is I can’t get the id of the side post to cross over into the main loop…
Forum: Fixing WordPress
In reply to: Image placement problem in postsA url would be helpful.
Forum: Fixing WordPress
In reply to: Troubles using wp_list_pagesWhooper… I’m not sure if you forgot to put something, but in your second example you’ve assigned wp_list_pages to the $related_pages variable…
but you haven’t echoed the variable. Try this:
<li> <ul> <?php wp_list_pages('title_li=&depth=1&child_of='.$post->post_parent.'&sort_colum=post_name&echo=1'); ?> </ul> </li>or just echo the variable after you define it.
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postI want the latest post from the Hot Video category to show in the sidebar…
But I don’t want it to show if the post on the side is the same as the post in single.php view 🙂
So I can avoid having the same post / video show twice.