luciendub
Forum Replies Created
-
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] MyISAM Override check doesn't workI had the same problem as spacepilaf. I want to confirm that after I deleted the yarrp options, I was able to select what I want and there was no message related to MyISAM anymore.
Tout fonctionne !Forum: Fixing WordPress
In reply to: Wp Query (is endwhile essential?)Ok thank you!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Customize cssOk I’m going to try this
Forum: Plugins
In reply to: [WPSocialite] Social buttons not loadingI just put a 5 stars rating. Thank you and good luck for the future! / J’ai mis un commentaire de 5 étoiles! Bonne chance et merci encore!
Forum: Plugins
In reply to: [WPSocialite] Social buttons not loadingI just tried it (to desactivate all the plugin except Socialite) and I realize that the problem comes from the W3TotalCache plugin. So following your advice, I desactivated the minify settings for JS and now it works! Thank you
Forum: Plugins
In reply to: [WPSocialite] Social buttons not loadingYes it was not wrking even after that.
I just sent you an emailForum: Plugins
In reply to: [WordPress Related Posts] Different themes?No possibilities to include variables in it like
<?php wp_related_posts("medium")?>
?Forum: Hacks
In reply to: Custom panel option and widget disableOk. Thank you for your answer
Forum: Hacks
In reply to: Custom panel option and widget disableI also got that code:
<label for="<?php echo $value['id']; ?>"><?php echo $value['name']; ?></label> <?php if(get_option($value['id'])){ $checked = "checked=\"checked\""; }else{ $checked = "";} ?> <input type="checkbox" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" value="true" <?php echo $checked; ?> /> <small><?php echo $value['desc']; ?>
Is there a clue to see if the checkbox is checked? How could I add that verification to my function?
Forum: Hacks
In reply to: Custom panel option and widget disableOk so I tried this:
function remove_dashboard_widgets() { global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); } if (!current_user_can('manage_options') &&(function_exists('ek_admin_ext'))) { } add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );
and also this
function remove_dashboard_widgets() { global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); if (!current_user_can('manage_options') &&(function_exists('ek_admin_ext'))) { } } add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );
But I still get the “Vous n’avez pas les droits suffisants pour accéder à cette page.” (You do not have sufficient privileges to access this page.)
Forum: Hacks
In reply to: Custom panel option and widget disableNote that I also tried
function remove_dashboard_widgets() { global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); } if (!current_user_can('manage_options') &&(function_exists('ek_admin_ext'))) { add_action('wp_dashboard_setup', 'remove_dashboard_widgets' ); }
Forum: Hacks
In reply to: Custom panel option and widget disableI also tried
function remove_dashboard_widgets() { global $wp_meta_boxes; if (function_exists('ek_admin_ext')); add_action('wp_dashboard_setup', 'remove_dashboard_widgets' ); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); }
but when I click save changes I receive:
Vous n’avez pas les droits suffisants pour accéder à cette page.
Forum: Hacks
In reply to: Member area (login give acess to specific pages)I used Role Scopper plugin
Forum: Hacks
In reply to: Member area (login give acess to specific pages)Resolved as I just posted this post ??
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] What are the right selectorsI still got an error with these ??