Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • For me the issue was a JS conflict between the cforms plugin (version 11.5) and the JS used for the editor. Deactivating it restored the visual editor functionality. I used FF and Web Console to narrow it down. Hope that helps some one.

    I am having issues as well getting is_page working. Here’s my sidebar code:

    <div id="Sidebar">
      <div id="Sidebar-in">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
    
    	<!-- start page relevant content -->
    	<?php
    		if (is_page('compounding'))
    		{
    			echo '1';
    		}
    		else
    		{
    			echo '2';
    		}
    	?>
    
    	<!-- list Categories-->
        <h2><?php _e('Categories'); ?></h2>
        <ul>
          <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
        </ul>
    
    	<!-- list Archives -->
        <h2><?php _e('Archives'); ?></h2>
        <ul>
          <?php wp_get_archives('type=monthly'); ?>
        </ul>
    
        <?php endif; ?>
      </div><!-- end #sidebar-in -->
    </div><!-- end #Sidebar -->

    The echo numbers are just for testing and will be replaced with content. However, this doesn’t seem to work. The page slug is compounding and it is a parent page. You can see it here.

Viewing 2 replies - 1 through 2 (of 2 total)