Support Forum » User Profile

Forum Replies Created

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • in reply to: WYSIWYG Editor Not Working Correctly #23920
    stijlXpresstijlXpres
    Participant

    Hi,

    Yes! Just tested in on local installation. This seems to fix the bug!

    in reply to: WYSIWYG Editor Not Working Correctly #23853
    stijlXpresstijlXpres
    Participant

    Hi,

    We are still experiencing similar issues as described by SLG Marketing.

    in reply to: WYSIWYG Editor Not Working Correctly #23805
    stijlXpresstijlXpres
    Participant

    Nothing shows up in debug mode unfortunatelly. Toggling between text-mode and visual-mode seems to trigger something. Which makes it unpredictable whether changes are being saved.

    I am testing on local server so sharing access is not an option. Although I experience the same issues on live server.

    in reply to: WYSIWYG Editor Not Working Correctly #23800
    stijlXpresstijlXpres
    Participant

    Hi Long Nguyen,

    Unfortunately, your suggestion did not fix the issue. But I still can edit (and save) in 'text' mode, although the changes are not visible in 'visual' mode.

    Setting back MetaBox to version 5.3.5. does fix the issue on my sites.

    in reply to: WYSIWYG Editor Not Working Correctly #23790
    stijlXpresstijlXpres
    Participant

    Hi,

    I am also experiencing issues with the latest version (5.3.6)
    Changes made in any metabox wysiwyg field are not saved when updating the page or post.

    What can I do?

    in reply to: Trouble with license #15756
    stijlXpresstijlXpres
    Participant

    Hi Anh,

    That's it!

    Thank you!

    in reply to: Trouble with license #15753
    stijlXpresstijlXpres
    Participant

    Hi Anh,

    Unfortunately, the Updates - Check Again fix does not help.

    In the admin I see: 'Warning! Your license key for Meta Box is invalid or expired. Please fix it or renew to receive automatic updates and premium support.'

    And on the page where I normally add the license key, I now see the page-content twice.

    Problem does not occur on all my websites, but on the most.

    Thanx,

    in reply to: admin columns not working #10537
    stijlXpresstijlXpres
    Participant

    Hi,

    Hereby the code:

    https://ghostbin.com/paste/ssuu2

    As said, this code works fine for one CPT, but doesn't for another. Only difference between both are the funcion-titles and post-type names.
    Could it be caused because of a earlier error where something is going wrong in building or filling a database table?
    What makes me think that is when I rename 'suppliers' to 'sponsors', I get the same issue.

    in reply to: admin columns not working #10522
    stijlXpresstijlXpres
    Participant

    Hi,

    The issue of the missing admin columns keep occuring. For some unknown reason I can't get the admin columns to show. It works fine on one CPT, but is having trouble on another.

    Even when I make a copy of a working CPT, it stops working. I have no idea where to look know.

    Can you help me out?

    in reply to: Advanced Image doesn't save #9085
    stijlXpresstijlXpres
    Participant

    No worries, thanx for the quick response!!

    in reply to: admin columns not working #6383
    stijlXpresstijlXpres
    Participant

    Hi Anh, this is the custom code I used for showing / hiding custom admin columns:

    add_filter( 'manage_transport_posts_columns', 'set_transport_columns' );
    function set_transport_columns($columns) {
    	unset( $columns['date'] );
    	$columns['show'] = __( 'Koppeling', 'transport' );
    	$columns['date'] = 'Datum';
    	set( $columns['date'] );
    	return $columns;
    }
    
    add_action( 'manage_transport_posts_custom_column' , 'transport_columns', 10, 2 );
    function transport_columns( $column, $post_id ) {
    	switch ( $column ) {
    		case 'show':
    			echo get_post_meta( $post_id, 'show', true );
    			break;
    	}
    }
    in reply to: admin columns not working #6365
    stijlXpresstijlXpres
    Participant

    Hi, that was a typo. 'admin_columns' does not fix the issue.

    Before using this extension, I manually added some columns in the code. Could it be that this couses the trouble?

    in reply to: admin columns not working #6359
    stijlXpresstijlXpres
    Participant

    Sure, here we go:

    $meta_boxes[] = array(
      'title'      => __( 'View', 'transport' ),
      'post_types' => 'transport',
      'fields'     => array(
        array(
          'id'   => 'show',
          'name' => __( 'Related', 'transport' ),
          'type' => 'post',
          'post_type' => 'page',
          'field_type' => 'checkbox_list',
          'admin-columns' => array(
            'position'    => 'before date',
            'title'       => __( 'Related', 'transport' ),
            'sort'        => true,
            ),
          ),
        ),
      );
    in reply to: admin columns not working #6356
    stijlXpresstijlXpres
    Participant

    Hey Anh Tran,

    As far as I understand I just follow the steps as mentioned in the documentation. What I'v tried so far:

    'admin_columns' => true,

    'admin_columns' => 'after title',

    but also the more advanced ways as described in your documenation.

    BTW: The link in the sidebar to 'MB Admin Columns' gives a 404.

Viewing 14 posts - 1 through 14 (of 14 total)