Join Slack
Powered by
<How to call a shortcode with ajax in WordPress to...
# community-feeds
r
rss
11/28/2023, 12:19 PM
How to call a shortcode with ajax in WordPress to show an Elementor template?
I would like to use ajax to call a shortcode to display an Elementor template. The template shortcode is: [elementor-template id="1008"] This is the Ajax I am trying to use: jQuery.ajax({ type: 'POST', url : '
https://somedomain.com.au/wp-admin/admin-ajax.php
', cache: false, data : { 'action': 'elementor-template', 'id': '1008' }, complete : function() { }, success: console.log(data), error: console.log(error) });
Open in Slack
Previous
Next