Árpád Lehel Mátyus
Forum Replies Created
-
Hi MaxHandMade,
Thank you for reporting this! And thank you for your consideration of doing the translation and review video! I am really looking forward to it.
I have updated the POT file.
The plugin version was not updated, please remove your old files and download again to get the latest pot file.
Bests,
Lehel
Leonidas,
Version 2.0.2 now has a fix for this. Thank you for reporting this issue.
Bests,
Lehel
Hi Leonidas,
Thank you for catching this. We will work on fixing this and have the release out asap. I will report back here when the new update is available.
Thanks,
Lehel
Hi Brandt
Thanks for reaching out, you can achieve something like this using the premium license key on the plugin and implementing a custom login in the Tpul hook.
function YOUR_CUSTOM_FUNCTION_show_popup($should_show_popup) { // should_show_popup - is the original value based on active options // EXTRA_CONDITION is an example variable that you can set $EXTRA_CONDITION = ???? ; // do some logic on deciding if is a migrated user if ($should_show_popup && $EXTRA_CONDITION) { return true; // only show if popup wants to show and is migrated uer } else { return false; } } add_filter('tpul_override_show_popup', 'YOUR_CUSTOM_FUNCTION_show_popup');However just using the plugin as is will also work for you, new users will need to just accept again on their first login.
Thanks for reaching out through discord about this. https://discord.gg/q3Uja2cz5T
Thanks,
Lehel
I have not received any update from you on this. Please reach out at lehelmatyus.com/contact so I can help you.
thanks,
Lehel
Hi AdventDeo,
There was a logout error introduced in v.1.0.50 but was fixed in the next version.
Can you please confirm you are using the latest version of the plugin?
I just tried but I was not able to replicate the logout issue you are describing in the latest version. Good thinking with the workaround!
The plugin is using a standard WP method to log out through REST so it should be working with any other plugin.
Can you please reach out to lehelmatyus.com/contact and give your site url in the contact form. I am happy to debug the issue.
Thank you for your suggestion about allowing html.
Thanks,
Lehel
Hi @qoutae
Thanks for reaching out and using the plugin.
These fields should not be used only by the plugin, i would advise against managing these values directly. The plugin has functions to write read these and siplay them as human readable values.
Accepted date is a unix timestamp like 1725478063 you can use epoch converter to see the date. The plugin does convert this into real date format whenever it displays it.
Accepted meta value as 2 means the user accepted the latest terms, 1 means accepted terms but you have since updated the terms. these values could be 0,-1,-2 etc i would advise let the plugin use these and just use the features available in the plugin to display the human readable labels for these.
I am happy to answer more questions on the support discord channel, there is a link to it on the plugin detail page. I am also free to discuss any extra premium features that you would like the plugin to support.
I have added IP tracking since, and will release the update with it soon.
Bests,
Lehel
Hi nojuju,
Currently the plugin does not support overriding this label in the users listing page.
Please go to Settings > Terms Popup On User Login > Support. Reach out to that email, provide your support token in the email and I can assist you further on how to achieve this.
Bests,
Lehel
Since I didn’t hear back from you I will close out this issue. Still feel free to reach out via my contact form if you are interested in this feature.
Lehel
Hi @nojuju
Currently the plugin does not have a “show me later” feature.
I am thinking about adding it as a premium feature in the future but it will be a few weeks before I do. Let me know if that would work for you. Please reach out at https://lehelmatyus.com/contact and describe the feature in more detail what you would like to see.
Thanks,
Lehel
Glad to hear you were able to find the issue. If I can be of any help please let me know.
Bests,
Lehel
Hi @lenaccp
Yes, I have added this as a premium feature as per your request.
Please let me know if you have any questions.
Lehel
Forum: Plugins
In reply to: [Share by Email] Project is revived, suggest features please.I’m so glad to hear that. thank you for letting me know!
Forum: Plugins
In reply to: [Share by Email] Project is revived, suggest features please.The lines I shared should work however I think your theme or elementor might be overriding it with a more specific CSS rule.
// to color the link body a.sbe-share-link { color: green } // to color the icon body a.sbe-share-link svg path { fill: green; }let me know if this works.
If not, send me a link to your public website where this displays.
Lehel
Forum: Plugins
In reply to: [Share by Email] Project is revived, suggest features please.Hi tslofphoenix,
You can use the following rules
// to color the link .sbe-share-link { color: green } // to color the icon .sbe-share-link svg path { fill: green; }I hope this helps,
Lehel