criador.in
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgrade to 3.3 white screen cannot access adminIf you have memory related problem try to increase default wordpress memory size to 64 mb … if you have too many plugin installed than this error is common.
you don’t need any plugin to create custom menu.
Go to
Appereance > Menu > type anything and click create new menu
than on left side enter link and alt and add …
for sub menu slide menu to right side under main menu
save this new menu
that’s it
Thanks
Forum: Fixing WordPress
In reply to: Justhost.com / lack of pagesHi,
try removing your browser cache. i have a same problem i removed my browser cache and it all worded fine.
If all work fine try disabling your recent activated plugin.
Thanks
Forum: Themes and Templates
In reply to: Excluding categories in a templateHi,
basically all the categories on the menu can be found at the header.php file in your theme folder.
Find this:
<?php wp_list_categories(‘title_li=’) ?>
Replace with:
<?php wp_list_categories(‘exclude=6,43&title_li=’) ?>This will exclude category 6 and 4 from the list. But you can change the category ID according to your requirement.
Thanks,