Ludovic S. Clain
Forum Replies Created
-
Forum: Plugins
In reply to: [WPC Brands for WooCommerce] Banner link invalidated if with hyphenHey ??
Indeed, there was something that had escaped me, I made up an explanation which was a bad idea. And it turns out that I only use logos not banners, so when I dug deeper I realized that it was another plugin that linked to logos, “Gallery Custom Links” from Meow Apps. Thank you for your feedback, your explanations, your patience, and sorry for the inconvenience.
- This reply was modified 7 months, 1 week ago by Ludovic S. Clain.
Forum: Plugins
In reply to: [HelpfulnessMeter] where i find staticHi there ??
Thank you for reaching out for assistance with the HelpfulnessMeter plugin.
Based on your message, it seems that you are encountering difficulties with viewing statistics after adding the plugin (I guess that’s what you mean by “static”), especially in relation to the admin columns. I apologize for any inconvenience this may have caused.
To address your issue, I would recommend the following steps:
- Please ensure that the HelpfulnessMeter plugin is activated correctly in the WordPress admin area.
- In the WordPress admin area, navigate to the settings of the ‘admin column’ plugin and verify if the HelpfulnessMeter statistics columns are available and enabled.
- If the columns are not visible, there might be a need to configure the admin column settings to display the HelpfulnessMeter statistics. There should be an option to add or manage custom columns for the statistics to appear.
If you continue to experience issues after following these steps, or if there is any other way I can assist you further, please do not hesitate to contact me. I am here to help you get the most out of the HelpfulnessMeter plugin.
Best regards,
Ludovic from ??????Forum: Plugins
In reply to: [Multiple Post Passwords] PHP Warning: Undefined array keyHey @andreasmuench,
any updates on this bugs please?
Hey Jeff, I just reactivated my debug and nothing similar is now appear. Thank you for your concern, I think we can put it aside for the moment, false alert. All the best!
Hey @specialk ??</img>?
Just to let you know that I have some PHP warnings from bbq-whitelist plugin, It looks like an update to do for compatibility with PHP8.0 (but I’m not sure):Warning: foreach() argument must be of type array|object, null given in ~/wp-content/plugins/bbq-whitelist/bbq-whitelist.php on line 39
Warning: foreach() argument must be of type array|object, null given in ~/wp-content/plugins/bbq-whitelist/bbq-whitelist.php on line 49
Warning: foreach() argument must be of type array|object, null given in ~/wp-content/plugins/bbq-whitelist/bbq-whitelist.php on line 59
Warning: foreach() argument must be of type array|object, null given in ~/wp-content/plugins/bbq-whitelist/bbq-whitelist.php on line 69
Warning: foreach() argument must be of type array|object, null given in ~/wp-content/plugins/bbq-whitelist/bbq-whitelist.php on line 79Thank you for your help!
Warm regards,
LudovicGreat, it does the job, thank you very much for your precious time (I’m a big fan, I recently acquired some of your methods, and I love them)!
Take care ??
Thanks. And so it could give what the content of the array for the BBQ Whitelist plugin please?
Does the previous screenshot I left you help?
https://markuphero.com/share/gvFLIAgZYgnLHB6G9IP7Maybe this URL
https://staging.waomizik.re/wc-api/WC_Gateway_GoCardless/?request=webhook
but I am not sureThe HTTP ERROR 403 screenshot:
https://markuphero.com/share/A2NcbkxY5dhna18NNyls/3- This reply was modified 1 year, 11 months ago by Ludovic S. Clain.
it’s a bit complicated, because GoCardless is a premium plugin, and you need a SandBox account at GoCardless too, maybe I can give you temporary access to my staging site?
Also, I read about the BBQ Whitelist addon, I think I need to Whitelist something, but I don’t know what…Forum: Plugins
In reply to: [User Posts Limit] Network-wide rules don’t seem to be appliedHey!
works great, thank you ???Forum: Plugins
In reply to: [Was This Helpful?] Error with disabling all post type optionHi there ???
same issue on my side:[05-Jun-2022 23:06:25 UTC] PHP Warning: Undefined array key "wthf_types" in ~wp-content/plugins/was-this-article-helpful/index.php on line 230 [05-Jun-2022 23:06:25 UTC] PHP Fatal error: Uncaught TypeError: array_values(): Argument #1 ($array) must be of type array, null given in ~wp-content/plugins/was-this-article-helpful/index.php:230 Stack trace: #0 ~wp-content/plugins/was-this-article-helpful/index.php(230): array_values() #1 ~wp-includes/class-wp-hook.php(307): wthf_options_page() #2 ~wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters() #3 ~wp-includes/plugin.php(476): WP_Hook->do_action() #4 ~wp-admin/admin.php(259): do_action() #5 ~wp-admin/options-general.php(10): require_once('...') #6 {main} thrown in ~wp-content/plugins/was-this-article-helpful/index.php on line 230
Maybe linked to php8 (i’m using this one).
Thank you for your help!
Warm regards,
LudovicForum: Plugins
In reply to: [User Posts Limit] Network-wide rules don’t seem to be appliedGreat, it worked ???
I leave here some clarifications for those who are interested:The objective => in a WordPress multisite installation, to be able to limit the total of published articles per subsite for a given role
Example => if the total limit of articles published on a subsite is 3, and if an author has already published 3 articles, another author wishing to publish will no longer be able to do so
Step #1
Open theuser-posts-limit.php
file and comment out line 516 and add a line containing:
$message = 'Total post limit reached for this site: ' . $upl_query->found_posts;
https://markuphero.com/share/kmBFQDOuQjEBfDNOc7p6Step #2
Add a snippet (preferably in a must-use plugin given we’re on a multisite install):add_filter('upl_network_query', 'upl_limit_total_posts'); function upl_limit_total_posts($args) { $post_type = 'post'; if ($post_type === $args['post_type']) { unset($args['author']); } return $args; }
Small bugs to fix (hoping that it will be in the next update ???):
? theuser-posts-limit.php
file will be overwritten with each update, it would be necessary to be able to perpetuate the temporary modification made
? The widget in the dashboard does not reflect the total limit set by site
https://markuphero.com/share/iAuUNhX3HvwYu7vNEovoThank you very much for your patience and dedication, I’m going to give this plugin my best review and help translate it into French!
Forum: Plugins
In reply to: [User Posts Limit] Network-wide rules don’t seem to be appliedHi there ???
Thank you for your reply;
Still doesn’t work.
Here what I did:
? Open then “user-posts-limit.php” file
? Comment the line 516 and add your code described here https://www.ads-software.com/support/topic/network-wide-rules-dont-seem-to-be-applied/#post-15683983 instead
? Comeback to the snippet I’ve tried here https://www.ads-software.com/support/topic/network-wide-rules-dont-seem-to-be-applied/#post-15620931
? Created 2 “Author” accounts on the main site (I have a multisite installation)
? I set a limit of “posts” to 2 (network-wide)
? With the first author I created 2 posts
? With the second author the limit has not been triggeredSo limit per (sub)site still doesn’t work as expected…
Thank you for your help!
Warm regards,
LudovicForum: Plugins
In reply to: [Expire User Passwords] Password reset is not allowed for this accountAfter investigation, it was one of my snippets in my functions.php file that conflicted with the functioning of the plugin.
Forum: Plugins
In reply to: [User Posts Limit] Network-wide rules don’t seem to be appliedemail sent yesterday…