Mej de Castro
Forum Replies Created
-
Hi @scotm,
Thanks for reaching out to us!
Upon testing on our end, the password-protected pages appear to be working fine and are not redirecting to the login page.
Could you please share a screenshot from your end? This will help us better understand the issue and attempt to replicate it on our side.
We look forward to your response!
Kind Regards,
Mej, LoginWP TeamForum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Latest Update Crashed SiteHi Dear Users,
We can confirm that the latest downloadable version has resolved the issue with the “s” character when navigating to the LoginWP dashboard.
We still recommend deactivating the plugin and downloading a fresh copy from the repository. Please make sure to clear your caches before installing the new version to ensure all previous issues are fully overwritten.
Thank you for your patience and understanding regarding this matter.
Kind Regards,
Mej, LoginWP TeamForum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Latest Update Crashed SiteDear Users,
Thank you for reporting this issue. Our team has fixed the problem a few hours ago, and everything should now be working as expected. The issue was likely related to caching. If you are still encountering issues, please follow the steps below.
- Delete the current LoginWP plugin from your WordPress dashboard.
- Clear all caches (browser, plugin, and server-side if applicable).
- Reinstall and activate the latest version of LoginWP.
If the issue persists after completing these steps, please let us know. We’ll be happy to investigate further.
Kind regards,
MejForum: Reviews
In reply to: [ClickWhale] Wow, very good plugin!Hi @hi6h5c0re,
Thanks so much for your kind words! We’re thrilled to hear that you’re enjoying ClickWhale after switching from Pretty Links.
We truly appreciate your support and are glad it’s been a great fit for you! 🚀
Kind Regards,
Mej, ClickWhale TeamHey @michaelxxx ,
Quick follow up here! Just checking if you have seen our previous message regarding the filters.
Thanks!
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Option to enable/disable rulesHi @laurenarestua,
Thanks for sharing your idea with us! We think it’s a great suggestion. We’ll log this ticket as a feature request for our developers to review for future updates.
If there’s anything else we can help with, please let us know!
Kind Regards,
Mej, LoginWP teamForum: Themes and Templates
In reply to: [MH Magazine lite] link ending with ‘/’ has strikethroughHi @captainmet,
You’re welcome! Happy to help!
Forum: Themes and Templates
In reply to: [MH Magazine lite] link ending with ‘/’ has strikethroughHi @captainmet,
Thanks for reaching out to us. This issue might be related to your Permalinks under the WordPress Settings tab.
Could you please check your permalink settings and share a screenshot with us?
For reference, here’s how the permalinks look on our test website: https://snipboard.io/28TUYI.jpg. Removing the ending “/” from the custom permalink structure will also remove it from your links.
Is this the setting you were referring to?
Thank you so much for your kind words and recommendation, @mediambev!
We’re glad to hear that you’re enjoying the Widget Options plugin and finding it easy to use. Your support means a lot to us!
Kind Regards,
Mej, Widget Optons TeamHi @mariettej,
For any future websites, please note that the provided filters will need to be added as well if you plan to use the same conditional logic code for your widgets. Thanks!
Hi @michaelxxx,
Could you please try adding this filters on your functions.php file or any suitable place?
function add_extra_hooks( $allowed_functions ) {
$allowed_functions[] = 'in_category';
return $allowed_functions;
}
add_filter( 'widgetopts_allowed_php_functions', 'add_extra_hooks' );Thanks and let us know how it goes!
Hey @michaelxxx,
I hope you are doing well. Could you please let us know the specific conditional logic you were using for your widgets? This will help us look into possible workarounds for your setup.
In the meantime, you may also try adding the filter below to your functions.php file and let us know if it works:
function add_extra_hooks( $allowed_functions ) {
// Add your custom functions here
$allowed_functions[] = 'function_to_add';
return $allowed_functions;
}
add_filter( 'widgetopts_allowed_php_functions', 'add_extra_hooks' );Please make sure to replace function_to_add with the actual functions you are using in your conditional logic.
Looking forward to your update!
Hi @taka1,
Thanks for the update! We’re glad to hear that the issue is now resolved on your website. Please note that these filters are required for your conditional logic to work as expected. We recommend checking your functions.php file after theme updates to ensure the filters are not overwritten.
If you run into any other issues or have further questions, please don’t hesitate to reach out. We’re here to help!
Kind Regards,
Mej, Widget Options TeamHi @mariettej,
Thanks for the update! The filters you’ve added to your functions.php file are part of your theme files. We recommend creating a child theme to ensure your customizations remain safe and intact during theme updates.
Please also note that these filters were added manually because the functions you are using for your conditional logic are not currently included in the list of allowed functions for Widget Options.
Thanks again!
Kind Regards,
Mej, Widget Options TeamHey @mariettej,
Could you please try adding the code below to your
functions.phpfile or another suitable location, and let us know if this resolves the issue?function add_extra_hooks( $allowed_functions ) {
$allowed_functions[] = 'wp_get_post_parent_id';
return $allowed_functions;
}
add_filter( 'widgetopts_allowed_php_functions', 'add_extra_hooks' );To clarify, the functions
is_pageandget_the_ID()are already included in the allowed WordPress functions for Widget Options. You can review the full list here: List of Allowed WordPress Functions. Please note that functions are now limited.On the other hand, the
wp_get_post_parent_idfunction is not included by default, which is why we suggest adding the code above. Kindly test this out and let us know if the display logic works again.Looking forward to your response!