Unfortunately, there is currently no such option with Amelia's built-in features. You can suggest that feature on the following link: https://features.wpamelia.com/
We carefully follow suggestions from our customers and the more votes the feature gets, the more priority we put on implementing that feature in one of the future updates.
Our developers are very busy at the moment, working on some priority tasks and fixing bugs and issues with our plugins, so they won't have the time for custom work in the near future.
But we can recommend this service for customization:
Hello, there is a way to show a list or grid of all employees?
Regards
Hello Paolo,
Thank you for reaching out to us.
You can see that from the back end on the Amelia/Employees page.
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
excuse me, in a page in frontend :)
Hello Paolo,
Thank you for the update on this.
Unfortunately, there is currently no such option with Amelia's built-in features. You can suggest that feature on the following link: https://features.wpamelia.com/
We carefully follow suggestions from our customers and the more votes the feature gets, the more priority we put on implementing that feature in one of the future updates.
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 Paolo,,
Thank you for the update on this.
Our developers are very busy at the moment, working on some priority tasks and fixing bugs and issues with our plugins, so they won't have the time for custom work in the near future.
But we can recommend this service for customization:
https://wpkraken.io/?tms-plugins
They do develop such solutions, so can you please send your inquiry to them?
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
Hi Uroš, I try to make it myself using buddy boss.
There is a way to get informations of employee like the services?
Or the employee ID, so i create a shortcode to shjow service for specific user.
Hello Paolo,
Before we continue with this thread, can you please let me know what your purchase code is?
Looking forward to your reply.
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
invoice 56351228-94666111
Hello Paolo,
Thank you for providing me with that.
You can take a look at the API related to employee data.
Please let me know if that helps you.
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
Not much, I would like to recover at least the employee's ID on a page, in order to then make the display of his services dynamic.
e.g. If I'm looking at John Doe's page with employee id 6, the shortcode will be [ameliacatalogbooking employee=6]
Can you help me with this?
Hello Paolo,
You will have to manually create a page for each separate employee and use the following shortcode for that purpose:
[ameliacatalogbooking employee=1] if you want to show the services of one specific employee with ID 1.
Please let me know if that works for you or not.
Looking forward to your reply.
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 , this is my solution to get dynamically the employee id and show his services in Buddyboss profile page:
add_shortcode("Amelia_employeeID","GET_employeeID");
function GET_employeeID(){
$userid = bp_displayed_user_id();
global $wpdb;
$result = $wpdb->get_results("SELECT * FROM wp_amelia_users WHERE externalId = $userid");
foreach($result as $row) {
$amelia_id = $row->id;
$value="[ameliacatalog category=1 employee=".$amelia_id."]";
return $value;
}
}
With this code, you can use a elementor template with the shortcode [Amelia_employeeID]
What do you think?
Hello Paolo,
Can you confirm that this solution works?
Looking forward to your reply.
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
Yes works! :)
Hello Paolo,
Thank you for sharing that with us, we appreciate it.
I wish you a happy New Year.
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