We setup a bunch of custom fields, last year or the year before. They were specific questions that need to be answered when someone registers for an event. For some reason they've disappeared completely. Now when someone registers for an upcoming event they aren't getting asked any questions.
Can you advise why we can't see our custom fields and where they have gone.
Issues like this usually occur when there is a conflict either with the theme currently active on your website, or another plugin you have installed.
Can you please change the theme and see if the issue is resolved? If not, then please deactivate all other plugins except for our plugin, refresh the page where the issue is, and see if it is resolved (it should be). If it is, then start activating other plugins one by one, and after each activation refresh the page to see if the issue reoccurred. Once it does reoccur, you will have found the plugin causing the issue.
We would just like to let you know that the plugin LearnPress by ThimPress was the issue. It never used to be but since the last update of either Amelia and/or LearnPress the problem has occured.
Here is a function/hook, that you can add to a PHP file, this is going to exclude the LearnPress 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, 'learnpress/learnpress.php')) {
unset($plugins[$key]);
}
}
} return $plugins;
}
add_filter('option_active_plugins', 'wpamelia_exclude_conflict_plugins');
?>
Hello,
We setup a bunch of custom fields, last year or the year before. They were specific questions that need to be answered when someone registers for an event. For some reason they've disappeared completely. Now when someone registers for an upcoming event they aren't getting asked any questions.
Can you advise why we can't see our custom fields and where they have gone.
Thanks a million
Tara
Hello Tara,
Thank you for reaching out to us.
Issues like this usually occur when there is a conflict either with the theme currently active on your website, or another plugin you have installed.
Can you please change the theme and see if the issue is resolved? If not, then please deactivate all other plugins except for our plugin, refresh the page where the issue is, and see if it is resolved (it should be). If it is, then start activating other plugins one by one, and after each activation refresh the page to see if the issue reoccurred. Once it does reoccur, you will have found the plugin causing the issue.
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
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,
We would just like to let you know that the plugin LearnPress by ThimPress was the issue. It never used to be but since the last update of either Amelia and/or LearnPress the problem has occured.
Tara
Hello Tara,
Here is a function/hook, that you can add to a PHP file, this is going to exclude the LearnPress 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
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
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 Tara,
I can confirm that the procedure that I sent you below still works.
Can you please let me know where the script I provided you with was added?
Looking forward to your reply.
Kind Regards,
Uros Jovanovic
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps, and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
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