Hi, I have a problem with Amelia and HideMyWPGhost. The plugin is used to protect the site from hackers attacks but once activated the forms called via shortcode are no longer displayed on the site. How could I solve it? Could you help me in solving the problem? Thank you
Please provide me a temporary WP-admin (administrator) user for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue.
We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course, we do not provide login data to third parties.
You can write credentials here just check PRIVATE Reply so nobody can see them except us.
Here is a function/hook, that you can add to a PHP file, this is going to exclude the Hide My WP Ghost only for pages where Amelia's booking is, but it will be active on other areas of the site, so you can use both plugins as active.
Open the PHP file with any text/code editor, and find this file:
mu-plugins/functions.php
Add this code :
<?php
function wpamelia_exclude_conflict_plugins($plugins)
{ if (!empty($_GET['page']) && strpos($_GET['page'], 'wpamelia') !== false) {
foreach ($plugins as $key => $plugin) {
if (false !== strpos($plugin, 'hide-my-wp/index.php')) {
unset($plugins[$key]);
}
}
} return $plugins;
}
add_filter('option_active_plugins', 'wpamelia_exclude_conflict_plugins');
?>
Unfortunately, the solution is not possible, because in every page of the site will be implemented the shortcode of Amelia, including the HomePage, so the site will be totally unprotected by HideMyWPGhost, going to nullify the protection system itself.
Based on the Giuseppe's advice, the team behind "Hide My WP" said to access Hide My WP > Tweaks > Change Options and disable the option Change Relative URLs to Absolute URLs.
Sorry, I was able to resolve it by following Giuseppe's instructions. Since the post replies go from newest to oldest, the reverse of forums, I assumed it didn't work and that the code had to be implemented in the function.php file.
I didn't pay attention to the dates of the messages.
I can't configure the way the replies are shown to our end users but it is absurd. We (agents) see the newest responses first while the old ones are in the bottom.
It's not our platform, so we can't change that, but I will reach out to their support team about it.
Hi, I have a problem with Amelia and HideMyWPGhost. The plugin is used to protect the site from hackers attacks but once activated the forms called via shortcode are no longer displayed on the site. How could I solve it? Could you help me in solving the problem? Thank you
Hello,
Thank you for reaching out to us.
Please provide me a temporary WP-admin (administrator) user for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue.
We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course, we do not provide login data to third parties.
You can write credentials here just check PRIVATE Reply so nobody can see them except us.
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hello,
Thank you for the credentials.
Here is a function/hook, that you can add to a PHP file, this is going to exclude the Hide My WP Ghost only for pages where Amelia's booking is, but it will be active on other areas of the site, so you can use both plugins as active.
Open the PHP file with any text/code editor, and find this file:
mu-plugins/functions.php
Add this code :
That should be a workaround solution.
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Good morning, thank you for your reply.
Unfortunately, the solution is not possible, because in every page of the site will be implemented the shortcode of Amelia, including the HomePage, so the site will be totally unprotected by HideMyWPGhost, going to nullify the protection system itself.
Hallo,
I also contacted HMWPG support, and for now, this is their solution, which I hope can be helpful to others too:
Go to Hide My WP > Tweaks > Change Options and disable the option Change Relative URLs to Absolute URLs.
Tnx!
Hello,
Thank you for sharing that solution with others and I am glad to hear that the issue has been resolved.
Please let me know if you have any other questions.
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hello;
The wpamelia_exclude_conflict_plugins funciton doesn't solve the problem. Did you find another solution?
Thanks
Hello Alex.
Based on the Giuseppe's advice, the team behind "Hide My WP" said to access Hide My WP > Tweaks > Change Options and disable the option Change Relative URLs to Absolute URLs.
Have you tried this option?
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hi Aleksandar,
Sorry, I was able to resolve it by following Giuseppe's instructions. Since the post replies go from newest to oldest, the reverse of forums, I assumed it didn't work and that the code had to be implemented in the function.php file.
I didn't pay attention to the dates of the messages.
Sorry and thank you very much.
That's OK, Alex, thanks for letting me know!
I can't configure the way the replies are shown to our end users but it is absurd. We (agents) see the newest responses first while the old ones are in the bottom.
It's not our platform, so we can't change that, but I will reach out to their support team about it.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Don't worry is OK, i didn't pay enough attention anyway 😅
Thank you :)
My pleasure, Alex.
Please feel free to reach out to us if you have any further questions or concerns!
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables