Dexter0015
Forum Replies Created
-
Forum: Plugins
In reply to: [Synchi] Is there a way to not using synchi by default ?Hi,
Thanks for the quick reply.
I’m positive, even when I just save the post, it reload editor on Synchi each time.
But it’s not a bug so there is no hurry here, just wanted to report it.
Hi Jonathan,
Thanks, it solve my problem indeed!
Forum: Plugins
In reply to: [Widget Wrangler] New theme compatibility functionHi Jonathan,
I already updated two sites and didn’t notice any problem (both on WP 4.0.1).
Forum: Plugins
In reply to: [Widget Wrangler] New theme compatibility functionHi Jonathan,
You’re right, and I already change my implementation in my WIP project.
I’m glad you like it.
Forum: Plugins
In reply to: [iSoftware Blocks] Conflict with Form MakerEdit : I found a way to make things work : I created a block with the “Form” shortcode in it, then I added the shortcode for the block in the page and it works. But I find it a little complicated.
Forum: Plugins
In reply to: [Custom Post Type UI] Featured Image Meta Box does not show upForum: Plugins
In reply to: [Custom Post Type UI] Featured Image Meta Box does not show upEdit :
Don’t worry about ‘post-formats’ it’s correctly displayed, the only issue seems to be with the ‘thumbnail’.
Forum: Plugins
In reply to: [Custom Post Type UI] Featured Image Meta Box does not show upHi,
I have the same error.
I’m running WordPress 4.0 on a local server (wampserver) and have desactivated all plugins except “Custom Post Type UI”.
Here is my custom type code generated by the plugin if it can help :
add_action('init', 'cptui_register_my_cpt_voyant'); function cptui_register_my_cpt_voyant() { register_post_type('voyant', array( 'label' => 'Voyants', 'description' => 'Profil de voyant par SMS.', 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'capability_type' => 'post', 'map_meta_cap' => true, 'hierarchical' => false, 'rewrite' => array('slug' => 'voyant', 'with_front' => true), 'query_var' => true, 'supports' => array('title','editor','custom-fields','thumbnail','page-attributes','post-formats'), 'labels' => array ( 'name' => 'Voyants', 'singular_name' => 'Voyant', 'menu_name' => 'Voyants', 'add_new' => 'Add Voyant', 'add_new_item' => 'Add New Voyant', 'edit' => 'Edit', 'edit_item' => 'Edit Voyant', 'new_item' => 'New Voyant', 'view' => 'View Voyant', 'view_item' => 'View Voyant', 'search_items' => 'Search Voyants', 'not_found' => 'No Voyants Found', 'not_found_in_trash' => 'No Voyants Found in Trash', 'parent' => 'Parent Voyant', ) ) ); }
In my case both “post-formats” and “thumbnail” aren’t displayed.