OthelloBloke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: CSS HeadscratcherFirstly…
The layout isn’t working properly in IE in case you didn’t know.
Try this:
p#logo { margin-top:0px; }
form#searchform { margin-top:0px; }Forum: Fixing WordPress
In reply to: Changing the “read the rest of this entry” crashes my siteYou could try commenting out the apostrophe…
There\’s more…
Forum: Fixing WordPress
In reply to: Have categories show summary instead of entire postYou only have a single post showing on the Category page?
Isn’t that a setting under the General setting?
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postOn this page for instance…
http://www.ryanpaul.ca/hot-video/griffin-house-the-guy-that-says-goodbye-to-you-is-out-of-his-mind/
I don’t want that video to show in the sidebar when I’m viewing that page, but DO want it to show when I am NOT on that page.
The aim is to not have two of the same video showing on screen.
Forum: Fixing WordPress
In reply to: Stop sidebar content from showing when on that postIn sidebar.php I have this:
<? global $post; $sideid == $post->ID; if ($sideid != $mainid) { ?>Fake Loop & Video Here<?php } ?>and then at the bottom of single.php I have:
<?php global $post; $mainid == $post->ID; ?>I’ve tried putting both these inside and outside the loops… but it still shows the video in the sidebar when viewing the main single post.
Forum: Fixing WordPress
In reply to: Hide Child Pages Except When On Parent OR Related Child PagesNope it’s not working…
The problem is this… I MUST use the following str_replace lines
<?php global $post; $pages = wp_list_pages('echo=0&depth=1&title_li=&include=17&sort_column=menu_order' ); if (is_page( )) { $pages = get_query_var('page_id'); if ($post->post_parent) { $pages = $post->post_parent; } $child=wp_list_pages( 'echo=0&child_of=' . $page . '&title_li=&include=17&sort_column=menu_order' ); if ($child) { $pages = wp_list_pages ('echo=0&child_of=' . $page . '&title_li=&include=17&sort_column=menu_order'); } } $pages = str_replace('The Page Title', '<img src="http://www.domain.ca/wp-content/themes/ctj2b/images/logo.gif" border="0" />', $pages); $pages = str_replace('title="<img src="http://www.domain.ca/wp-content/themes/mctj2b/images/logo.gif" border="0" />"', 'title="The Page Title', $pages); echo $pages; ?>I MUST replace a page title text with an image… how can I make it work with these following two replacing statements?
Forum: Plugins
In reply to: [Plugin: User-Cats Manager] Problem with category pagesI really need this damn plugin to work. Is there not anyone out there who’s willing to fix this for at least $50?
Forum: Fixing WordPress
In reply to: Hide Child Pages Except When On Parent OR Related Child PagesWhen I click on a top level page with children… the child pages are listed for the page I click on… but also ALL the other child pages of other parents 🙁
Forum: Fixing WordPress
In reply to: Hide Child Pages Except When On Parent OR Related Child PagesHey there…
This works to a certain extent, but it also opens up the child pages on OTHER parent pages.. even if you’re not on them.
Any ideas how to fix it?
Forum: Plugins
In reply to: [Plugin: User-Cats Manager] Problem with category pagesI second that. I’ll add another $50 via paypal on top of WEB11 to anyone who can fix this bug.
Forum: Plugins
In reply to: Viper’s Video Quicktags – 6.03 Shows Preview Imageingejanse…
I found out the problem. The footer hook isn’t in your template. I added:
<?php wp_footer(); ?>immediately before</body>Everything works fine now!
Forum: Plugins
In reply to: Viper’s Video Quicktags – 6.03 Shows Preview ImageThis problem does NOT happen on the settings preview page.
Please help.
Forum: Themes and Templates
In reply to: the_author_posts_link() problemsI’m having this problem after upgrading to 2.6. wp_list_authors isn’t working either.
I’m getting damned sick of wordpress with all the problems we’ve been having.
Forum: Plugins
In reply to: Exclude Posts from Category – Google XML Sitemap GeneratorAnyone please?
Forum: Fixing WordPress
In reply to: PHP Include wordpressI haven’t tried or test this, but you might want to try:
<?php print file_get_contents('http://www.blahblah.com/index.php'); ?>