dangle2k
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Strange behavior on random pagesI moved that page (http://singularcity.com/pursuing-your-passion/) to the trash then permanently deleted it so it’s gone. Or should be because it still comes up.
Forum: Fixing WordPress
In reply to: Strange behavior on random pagesI should add that I’ve already tried disabling all plugins and switching themes (Twenty Ten) and the messed up pages still show with no content.
Thanks.
Forum: Fixing WordPress
In reply to: Strange behavior on random pagesNope, not using a cache plugin. Thanks.
Forum: Fixing WordPress
In reply to: weird blank page problemWow! I feel like such an idiot, there is a “downloads” directory. Thank you so much!
Forum: Fixing WordPress
In reply to: Trying to include a custom field code into a functionOk, here is the link to the code in pastebin.com
Still looking for help on this!
thanks again.
Forum: Fixing WordPress
In reply to: shortcode – display post by nameYup, that did the trick! Just ‘name’ not ‘post_name’.
Thank you very much for your help!
Forum: Themes and Templates
In reply to: custom sidebar for single post pages based by categoryNevermind, I found the solution to this! After searching for an hour and not finding an answer I did another search using the title of this post and found the answer right away! duh!
Any way if anyone is interested here is the solution I found
<?php if (is_single() && in_category('love') ) { get_sidebar('love'); } elseif (is_single() && in_category('looks') ) { get_sidebar('looks'); } elseif (is_single() && in_category('family') ) { get_sidebar('family'); } elseif (is_single() && in_category('friends') ) { get_sidebar('friends'); } elseif (is_single() && in_category('home') ) { get_sidebar('home'); } elseif (is_single() && in_category('work') ) { get_sidebar('work'); } elseif (is_single() && in_category('money') ) { get_sidebar('money'); } elseif (is_single() && in_category('culture') ) { get_sidebar('culture'); } else { get_sidebar(); } ?>Thanks anyway!
Forum: Fixing WordPress
In reply to: custom fields for thumbnails?alchymyth, thank you so much! That works perfectly, exactly what I needed.
emilekott, thank you as well. I’ll be checking out that plugin.
Forum: Fixing WordPress
In reply to: One blog synced/mirrored to another website possible?Thanks for your reply. The thing is, I should have mentioned before, her “other” site has a different look and style to it. She wants to keep everything on her other site looking the same except for the information in the Blog section, which will have the same content as her main site but keep the look of her other site. Maybe I shouldn’t have used the word “mirrored” which implied an exact duplicate.
So to sum it up, I need to know if it’s possible to sync the same blog content, posts, categories, tags, images and comments, between two different WP sites, each with their own style and layout.
Thank you.