roy123
Forum Replies Created
-
Thank you.
All is good.
Have a wonderful holiday.Hi @wpmudevsupport12 Patrick,
Following the image you placed and comparing it to my installation, I don’t have the same options listed under my installation of your plugin.
Forum: Plugins
In reply to: [New User Approve] how to prevent social login users from auto approveYou might want to look here:
https://www.ads-software.com/support/topic/denied-gmail-account-can-access-the-site/Forum: Plugins
In reply to: [New User Approve] denied gmail account can access the site.I reason why it fails with other authentication plugins, and found the solution to make yours works with them.
In new-user-approve.php, you add the following add_filter at line114:
add_filter( ‘wp_authenticate_user’, array( $this, ‘authenticate_user’ ) );The ‘wp_authenticate_user’ filter is only being used if username/email +password is used for authentication.
If you use the filter ‘authenticate’, it resolves the issue, and all is good.
So, the fix should be:
add_filter( ‘authenticate’, array( $this, ‘authenticate_user’ ), 99 );Can this be fixed in the next release?
Thank you,
RoyForum: Plugins
In reply to: [Nested Pages] Broken with 5.9Fixed. Thank you.
BTW – is it possible to show/list/menu child pages only in the parent page using this plugin?Forum: Plugins
In reply to: [Nested Pages] Broken with 5.9Same here with a clean WP 5.9 installation
- This reply was modified 2 years, 10 months ago by roy123.
I checked today by removing all plugins and found that cloning is not provided in the vanilla installation. my apologies.
The actual plugin that enabled this option ( and I didn’t know it ) was
“Nested Pages” by Kyle Phillips.
To his defense, also a different plugin failed to make a copy of pages that includes “table of content”.I tried both the with and without plugins.
My first try was without any plugin, and it was the first time I had the issue.
I thought a plugin would copy it better(?), but it didn’t help.Same here
WP: 5.1.1
Had to uninstall.- This reply was modified 5 years, 7 months ago by roy123.
Forum: Plugins
In reply to: [DrawIt (draw.io)] Compatibility with GutenbergFound a workaround for now.
Add a “classic” block to the page/post, and you will get the old menu with the “Draw.it” button.
But, it will be nice to have it supported by the new WP release.Forum: Plugins
In reply to: [DrawIt (draw.io)] Compatibility with GutenbergBefore upgrading to WP 5, used this plugin, and found it very useful.
After upgrading to WP 5, it is not accessible/visible in the editor.Will wait for updates.
Thank you.Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Adding CSS class in short code.Hi Tobias,
Thanks for your tip on the shortcode_debug=true, the correct argument name to use is “extra_css_classes”.
I kept on using the extra_class_classes as was shown in your first reply, and I failed to see the name you wrote in your second reply.
Well, know I know how to debug and get all possible options.Thank you for the great support and great plugin.
Regards,
RoyeForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Adding CSS class in short code.Any idea of how to debug this issue? Does it work on your end?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Adding CSS class in short code.Hi Tobias,
Any version related to this?, as I tried with my current installation.
When using the following extra_class_classes=”TestMe”, I can’t find the TestMe class anywhere in the code ( when using development tool in the browser ).[table id=2 row_highlight=”In Progress” filter=”In Progress” extra_class_classes=”ignoreDummy” /]
Thank you,
RoyeThank you for your fast response. the workaround works great.