akbortoli
Forum Replies Created
-
Forum: Plugins
In reply to: [Dynamics Sidebars] Errors in PHP debugI’ll mark this as resolved.
Forum: Plugins
In reply to: [Dynamics Sidebars] [Plugin: Dynamics Sidebars] Custom sidebar to post?Thanks babyboy808!
Forum: Plugins
In reply to: [Dynamics Sidebars] [Plugin: Dynamics Sidebars] Custom sidebar to post?To user with CPT add support for custom sidebar, on your functions.php add this:
add_post_type_support( ‘cpt’, ‘custom-sidebar’ ); “(change cpt for you custom post type name)”
or when you register or custom post type using register_post_type( ‘post type’, $args );
pass ‘supports’ => array( ‘custom-sidebar’, ‘title’, ‘editor’ ) and etc, see https://codex.www.ads-software.com/Function_Reference/register_post_type for more information on supports.Will make it more clear on the Description page.
Forum: Plugins
In reply to: [Dynamics Sidebars] [Plugin: Dynamics Sidebars] Custom sidebar to post?Hey, sorry for the delay to get back to you. I’ve just released version 1.0.0, it works with Pages/Posts and CPTs as well.
Forum: Plugins
In reply to: [Dynamics Sidebars] [Plugin: Dynamics Sidebars] Perfect!Thank you shortye, i’ve just released version 1.0.0
Forum: Plugins
In reply to: [Term Menu Order] [Plugin: Term Menu Order] Init after everythingThank you Bill, the multisite issue i think is a bug with WP core as it does not create column “menu_order” on “wp_terms” sites table.
Forum: Plugins
In reply to: [Term Menu Order] [Plugin: Term Menu Order] Init after everythingTesting on WP Multisite “3.3.2” and it does not work as column “menu_order” is missing for “wp_terms”.
Forum: Plugins
In reply to: [Term Menu Order] [Plugin: Term Menu Order] Init after everythingAlso on “ns_tmo_plugin.class.php” line 45 if you check:
return ( isset( $term->$custom_column ) ) ? $term->$custom_column : FALSE;
avoid a compatibility issue with “Simply Show IDs” plugin. Don’t really know if False is the best returned value if not set “$custom_column”, but if fixed my compatibility.
Forum: Plugins
In reply to: [Dynamics Sidebars] [Plugin: Dynamics Sidebars] Does'nt workTested new version 0.1.3 on WP 3.0 to 3.2.1 and it’s working fine. If you find any bug please report here. Thanks
Forum: Plugins
In reply to: [Dynamics Sidebars] [Plugin: Dynamics Sidebars] Does'nt workHey klartext-ne, which version of wordpress are you using?