ronimarin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categories missing in frontend, but are in DBFound a solution… accidently 😉
Used Categories and Tags Converter to convert one of the tags that is also category to category, and that solved all of categories and now everything is fine !?!?
It’s a wordpress.org official plugin http://wordpress.org/extend/plugins/wpcat2tag-importer/
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] After upgarading – blank admin pagesYes!
Deleted settings, db, advanced and removed rules from htaccess file…Forum: Plugins
In reply to: [Plugin: W3 Total Cache] After upgarading – blank admin pagesbump
Upgraded to wp 3.0.1 and still the same problem… 0.9.1.1 does produce blank admin pages, and reverting to 0.8.5.2 works as should.
Forum: Fixing WordPress
In reply to: [Help] Categories and Tags Missing, But Exist in DatabaseCome on admins, can’t believe noone can find a solution to this one…
There is another thread with detailed problem explanation here: http://wordpress.org/support/topic/416254?replies=6Please help!
Forum: Fixing WordPress
In reply to: Categories missing in frontend, but are in DBI see a lot of people having this problem, and no solution. Some have resolved it by reverting to 2.9.2, but I really would like to solve it for v3.0…
Any tips?!?!
Forum: Fixing WordPress
In reply to: Categories missing in frontend, but are in DBI’m starting to feel desperate! I see more people having the same or simmilar problem, but can not find a solution. Any hints, or pointers…
Forum: Fixing WordPress
In reply to: Frame extern links.You can use Pretty link plugin, that creates links to external sites on your domain and uses the top bar with your site name and link back.
Forum: Fixing WordPress
In reply to: Categories missing in frontend, but are in DBIf you check for example top category Croatia ( http://welcome-to-croatia.com/holiday-news/croatia/ ) You will see that posts show sub categories they are assigned to…
Forum: Fixing WordPress
In reply to: Categories missing in frontend, but are in DBThere are posts in those categories, and when viewing posts, they are listed under categories assigned!
Everything looks fine in DB, but child categories are just not showing up on frontend category menu. And in backend they do not show in category listing (some do, but most don’t), but the paging for correct number of categories is shown. When creating posts, I see all the categories…
I’m totally lost here!
I tried all ordinary measures such as disabling plugins and such, but none with any luck.
Forum: Fixing WordPress
In reply to: [Help] Categories and Tags Missing, But Exist in DatabaseOne more clue: categories are listed on the edit and create post / page admin pages.
Forum: Fixing WordPress
In reply to: [Help] Categories and Tags Missing, But Exist in DatabaseI have the same problem.
CASE:
– Categories are in the DB.
– Dashboard shows correct number of categories.
– No child categories are shown on website.
– No child and some top categories are shown in “Categories” dashboard, just paging for a correct number of categories that are in DB…WP v3.0, site: welcome-to-croatia.com
Forum: Themes and Templates
In reply to: php if (bla bla) statement problemI managed to do it this way:
<?php if ( is_front_page() || is_page(‘582’) ) { ?>
<?php if ( !(is_paged()) ) { ?>
<div>Something to include</div>
<?php } ?>
<?php } ?>Is there a nicer way?
Forum: Themes and Templates
In reply to: php if (bla bla) statement problemContinued…. I still need the last bit.. if the page is paged then don’t show it!
How do I properly say “if it is not paged”?
Something like:<?php if ( is_front_page() || is_page('582') && !$paged ) { ?>
In words:
If it’s front page or page 582 but not paged …Forum: Themes and Templates
In reply to: php if (bla bla) statement problemThanks Michael, that done the trick 🙂
I was going crazy already…Forum: Themes and Templates
In reply to: php if (bla bla) statement problemIt still refuses to work!
– I checked if cache is enabled, but not. Removed cache instructions from config file, and disabled cache plugin.
– I tried also variation<?php if ( is_home() || is_page('holiday-news') ) { ?>but that also does not yield results…
Any other ideas?
I’m using this code within sidebar if that has anything to do with it.