alextababa2
Forum Replies Created
-
Forum: Themes and Templates
In reply to: can't uncheck a theme-options checkboxSolved – it was my php.
Needed to double “=”
eg:
NOT THIS <?php if ($options[‘option1’] = ‘1’) : ?>
<b?THIS <?php if ($options[‘option1’] == ‘1’) : ?></b>Forum: Fixing WordPress
In reply to: php q: Is this page a descendant of this categoryI solved this myself… oooh yeah… using this thread http://wordpress.org/support/topic/380233?replies=3
I’m still a total hack though.
<?php $cat_id = get_query_var(‘cat’); ?>
<?php $id = get_cat_id(‘art’); ?>
<?php if ( is_category($id) || cat_is_ancestor_of( $id , $cat_id ))echo include(TEMPLATEPATH . ‘/loop-art.php’);
else echo include(TEMPLATEPATH . ‘/loop-normal.php’);?>
Forum: Fixing WordPress
In reply to: Your Attempt to Edit Post “” Has Failed IssuesI’ve disabled autosave for a temporary solution, by commenting out the line in /wp-admin/sp-postnes:
//wp_enqueue_script('autosave');Ali
Forum: Fixing WordPress
In reply to: Your Attempt to Edit Post “” Has Failed IssuesMikeo’s issue of not entering the title is the same for me. I can post fine except when I’ve entered a title and the first draft is saved. It doesn’t matter what I’ve typed in the body or categories.
What happens in my case is that if a first draft is saved and the url is created, i won’t be able to post. The issue is when I click out of the title box, a draft is saved.
I’ve disabled each of my plugins and mu-plugins, no luck.
I’m hoping to roll out my small business – WordPress MU is essential to it! I’m holding back though until I know it will be a seamless experience for all, much to my wife’s annoyance.
PHP 5.2.12
Wordpress MU 2.91
Buddypress 1.3 (i disabled this for testing too)Does anyone know what might effect this?