manturafs
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: DM Albums] Full Screen not workingi have the same problem. i deactivated google analytics for wordpress and it started working. how can one fix this?
Forum: Fixing WordPress
In reply to: create conditional menuscan it be done with wp_list_pages alone. i know i can list children with wp_list_pages, but just haven’t figured out how to limit the depth of children and make visibility conditional. perhaps the latter can be done through css?
Forum: Plugins
In reply to: Specific categories on specific pagesI believe you are talking about the text that actually comes from a plugin called Breadcrumb Navigation XT. Basically you have to edit that plugin to make that text no longer show, but luckily this is pretty easy.
Go to your plug in folder and search for the “breadcrumb-navigation-xt” folder. There should only be one file in there named “breadcrumb-navigation-xt.php” This is the file you need to edit. In that file, just search for “archive_category_prefix” and “archive_category_suffix”. Once you find those, you should see the text you are talking about. Feel free to edit those two tags to whatever you like, reupload them to your site and your text should be clean and tidy.
Forum: Fixing WordPress
In reply to: Blank white page – lots of questions here but no answers?this can happen for a number of reasons. the best thing to do is to figure out what is causing this problem. For me, it was a plug in. to find what is causing the problem, create a web page called error.php or test.php or whatever you can remember. Paste the following code into the page:
<?php ini_set('display_errors','1'); ini_set('display_startup_errors','1'); error_reporting (E_ALL); include('index.php'); ?>
upload that to your blog and navigate to the page with your browser. it should show you the page causing you to error (and subsequently a blank/white screen)