Forum Replies Created

Viewing 5 posts - 31 through 35 (of 35 total)
  • Author
    Posts
  • in reply to: PikList WYSIWYG breaking format in PikList Group #4412
    shayneol
    Member

    Hello Steve,

    I was just wondering if v.0.9.9 has been released yet. If it has, I’m not sure that I’ve been looking in the correct location to download it. Could you help? Thanks.

    in reply to: PikList WYSIWYG breaking format in PikList Group #4388
    shayneol
    Member

    Oh ok. I will be patient then.

    Thanks

    in reply to: PikList WYSIWYG breaking format in PikList Group #4385
    shayneol
    Member

    Hello Kevin,

    I have just updated to Piklist v9.4.29. Using the same code as my previous entry above, the Editor issue still persists. I am uploading a screenshot for reference.

    Attachments:
    You must be logged in to view attached files.
    in reply to: PikList WYSIWYG breaking format in PikList Group #4358
    shayneol
    Member

    Hello Steve,

    Please see my code below. The first three groups are being used in my project, but the last field was copied straight from the Piklist demo file (field-editor.php). I just tried this on a new WordPress installation (WordPress v.4.3.1) and the editor fields do not work within an Add_More. I thank you and your team for all of your hard work on this framework. Can you give a timeframe on when the next release with this resolution will be available?

    <?php
    /*
    Post Type: page
    Order: 100
    Lock: true
    Meta box: false
    */
    
      piklist('field', array(
        'type' => 'group'
        ,'label' => 'Add Variation Items'
        ,'description' => 'To add more VARIATION ITEMS, click the blue "+" button. Click and drag to rearrange the order.'
        ,'field' => 'variation_01'
        ,'add_more' => true
        ,'fields' => array(
    	  array(
    	  	'type' => 'select'
    		,'field' => 'variation_level'
    		,'label' => 'Level'
    		,'value' => 'beg'
    		,'columns' => 6
    		,'choices' => array (
    			'beg' => 'Beginner'
    			,'int' => 'Intermediate'
    			,'adv' => 'Advanced'
    		)
    	  )
          ,array(
            'type' => 'text'
            ,'field' => 'variation_title'
            ,'label' => 'Variation Title'
            ,'columns' => 6
            ,'attributes' => array(
              'class' => 'large-text'
            )
          )
    	  ,array(
    	  	'type' => 'editor'
    		,'field' => 'variation_text'
    		,'label' => 'Text'
    		,'columns' => 12
    		,'options' => array (
    			'wpautop' => true
    			,'media_buttons' => true
    		)
    	  )
    	  
        ) // end group: variation_01
      )); // end field declaration
      
    
      piklist('field', array(
        'type' => 'group'
        ,'label' => 'Add Performance Rubric Criteria Items'
        ,'description' => 'To add more ITEMS, click the blue "+" button. Click and drag to rearrange the order.'
        ,'field' => 'performance_rubric_01'
        ,'add_more' => true
        ,'fields' => array(
    	  array(
    	  	'type' => 'select'
    		,'field' => 'performance_level'
    		,'label' => 'Performance Rubric Criteria Level'
    		,'value' => 'beg'
    		,'columns' => 12
    		,'choices' => array (
    			'beg' => 'Beginner'
    			,'int' => 'Intermediate'
    			,'adv' => 'Advanced'
    		)
    	  )
    	  ,array(
    	  	'type' => 'editor'
    		,'field' => 'performance_text'
    		,'label' => 'Performance Rubric Criteria Text'
    		,'columns' => 12
    		,'options' => array (
    			'wpautop' => true
    			,'media_buttons' => true
    		)
    	  )
    	  
        ) // end group: performance_rubric_01
      )); // end field declaration
    
       piklist('field', array(
        'type' => 'group'
    	,'field' => 'teacher_page'
        ,'label' => 'Teacher Pages'
        ,'template' => 'field'
    	,'description' => 'To add more staff members, click the blue "+" button. Click and drag to rearrange the order'
        ,'add_more' => true
        ,'fields' => array(
          array(
            'type' => 'text'
            ,'field' => 'section_title'
            ,'label' => 'Section Title'
            ,'columns' => 6
          )
          ,array(
            'type' => 'text'
            ,'field' => 'section_anchor'
            ,'label' => 'Section Anchor ID'
            ,'columns' => 6
          )
    	  ,array(
    	  	'type' => 'editor'
    		,'field' => 'section_content'
    		,'label' => 'Section Content'
    		,'columns' => 12
    		,'options' => array (
    			'wpautop' => true
    			,'media_buttons' => true
    		)
    	  )
    	  
        ) // end group: teacher_page
      )); // end field declaration
    
      //*** COPIED STRAIGHT FROM THE PIKLIST DEMO FILE
      piklist('field', array(
        'type' => 'editor'
        ,'field' => 'post_content_add_more'
        ,'label' => 'Post Content Add More'
        ,'add_more' => true
        ,'description' => 'This is the teeny editor used in an add-more repeater field.'
        ,'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.'
        ,'options' => array (
          'media_buttons' => true
          ,'teeny' => true
          ,'textarea_rows' => 5
          ,'drag_drop_upload' => true
        )
      ));
    
    ?>
    in reply to: PikList WYSIWYG breaking format in PikList Group #4352
    shayneol
    Member

    Hello Kevin,

    Any word on getting the WYSIWYG editor to work correctly with an Add More parameter or within an Add More Group? I’ve tested this on many versions of WordPress and the latest version that will work correctly for me is WordPress v.3.8.3.

    Thanks

Viewing 5 posts - 31 through 35 (of 35 total)