DODO Internet
Forum Replies Created
-
Hello @yeeaddons ,
Alright! Thank you for letting me know.
Forum: Plugins
In reply to: [Advanced Datepicker - Restricts Date for Contact Form 7] Manual inputHello @yeeaddons ,
Thanks for the tip! That is exactly what I needed. This problem is fixed.
Forum: Plugins
In reply to: [Jetpack Social] exclude category(ies)Hello @erania-pinnera ,
Thank you for the alternatives. I will look into what would be the best option for us.
If you can also pass this on to the Jetpack dev team, please do. This will make it easier for us (and potentially for others) to use.
Forum: Plugins
In reply to: [Jetpack Social] Feature requestsHello @erania-pinnera,
Thank you for your reply. I’ll wait for the development and product teams’ response. If the option to have channels disabled by default would be implemented, that would be great for us. It would make things easier for us. And that means things will be less likely to go wrong for us.
Will you keep us informed about this via this ticket?
Hello Abid,
I haven’t checked it. So I have now updated the plugin and removed the other plugin. After that I checked it again and it is working.
Thank you for adding this feature to the plugin.
Hello Abid,
That’s great. Thanks so much for the quick responses and for adding these features.
Best regards.
Hello Abid,
I found out the fatal error. This was generated because of the original plugin. Once I deactivated it and activated the one from Github. I did activated. It is working like a charm! Only when I have selected pages and media, the function get_current_comment_status returns multiple. Which is fine for me, but it might be more useful if it returns “pages,media”.
For me this function is very helpfull and I can continue on my plugin. Will this be added in version 2.5.3 of the main plugin? Or do I need this custom version from Github?
Hello Abid,
When I try to install the plugin from Github, I could not activate it. It say it causes a fatal error. Downloaded I the correct version with this new feature?
Hello Abid,
Thank you for the links and adding those functions. I’ll check them out and add them to the conditional logic of my custom plugin.
Best Regards.
- This reply was modified 8 months ago by DODO Internet.
Forum: Plugins
In reply to: [User Verification by PickPlugins] Solid WP PRO – Hide backendHello,
We have paid security plugin called Solid WP PRO (formerly known as Ithemes security PRO). In this plugin we can hide the login page (normally known as wp-login.php) to a different URL. For example https://domain.com/hidelogin. So the login page is harder to find for all kind of users who will harm the site. All pages under hte wp-login.php (the login, password reset and the sign in) will be renamed to this new URL.
This plugin is not working with this security feature. And it has something to do with the way the email check link with the parameter “checkemail” is build. I think the URL is build something like this:
<?php echo get_site_url() . “wp-login.php?checkemail=registered”; ?>
(I’ve also seen this before with other plugins)As I stated, I don’t know for sure how this plugin is build. But if the link is build this way, this security feature will block the page and the users cannot verify themself. If the “checkemail” parameter can be added through a different way, for example with the combination with the wp_login_url() and the add_query_arg() PHP function. Than the link will work with the security feature and the users can verify themself. The code will then look something like this:
<?php $checkemail_url = add_query_arg(‘checkemail’, ‘registered’, wp_login_url());
echo $checkemail_url; ?>This security feature is also present at the free version of this security plugin. So you can test it yourself. You can find the free plugin here:
https://ww.wp.xz.cn/plugins/better-wp-security/This is tested and I can confirm this will work
If you have any questions, let me know.
Forum: Plugins
In reply to: [Contact Form 7] Other captcha systemThat is exactly what I needed. Problem solved. Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Other captcha systemBecause we have a different Catpcha system and I think CF7 doesn’t recognize it, the forms thinks the [your-email] is unsafe. See: https://snipboard.io/KS29kY.jpg . Is there no way to disable this specific error/recommendation message?
- This reply was modified 1 year ago by DODO Internet.
Forum: Plugins
In reply to: [Contact Form 7] Other captcha systemSo your solution is to use the inbuild recaptcha (which we don’t want to use) or ingore the error message and always have this message displayed?
Forum: Plugins
In reply to: [WPC AJAX Add to Cart for WooCommerce] Option to change the button labelHello @janilyn409 ,
Thank you for bringing this up to the developers and getting it back to me. I’ll check the notification plugin.
Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] “Order Paid” status free orderThe problem was in the missing [tc_order_confirmation] shortcode at the “tickets payment confirmation” page. After the shortcode was added. It’s working normally again.