Shortcode not working
-
Hi,
I wish to use the plugin shortcode in a new tab that I created in the My Account section in Woocommerce, by adding it to custom code in functions.php of my child theme (Section 4 below –> echo do_shortcode( ‘[RM_Form id=’3′]’ ); )
This shortcode causes the entire site to break with Error 500.
I tested shortcode of other plugins and they all work fine, so the problem seems to be unique to RegsitrationMagic plugin.
Could you please assist to troubleshoot, thanks !
Chris
============================
// ——————
// 1. Register new endpoint to use for My Account page
// Note: Resave Permalinks or it will give 404 errorfunction bbloomer_add_premium_support_endpoint() {
add_rewrite_endpoint( ‘premium-support’, EP_ROOT | EP_PAGES );
}add_action( ‘init’, ‘bbloomer_add_premium_support_endpoint’ );
// ——————
// 2. Add new query varfunction bbloomer_premium_support_query_vars( $vars ) {
$vars[] = ‘premium-support’;
return $vars;
}add_filter( ‘query_vars’, ‘bbloomer_premium_support_query_vars’, 0 );
// ——————
// 3. Insert the new endpoint into the My Account menufunction bbloomer_add_premium_support_link_my_account( $items ) {
$items[‘premium-support’] = ‘Premium Support’;
return $items;
}add_filter( ‘woocommerce_account_menu_items’, ‘bbloomer_add_premium_support_link_my_account’ );
// ——————
// 4. Add content to the new endpointfunction bbloomer_premium_support_content() {
echo ‘<h3>Premium WooCommerce Support</h3><p>Welcome to the WooCommerce support area. As a premium customer, you can submit a ticket should you have any WooCommerce issues with your website, snippets or customization. <i>Please contact your theme/plugin developer for theme/plugin-related support.</i></p>’;
echo do_shortcode( ‘[RM_Form id=’3′]’ );
}add_action( ‘woocommerce_account_premium-support_endpoint’, ‘bbloomer_premium_support_content’ );
The page I need help with: [log in to see the link]
The topic ‘Shortcode not working’ is closed to new replies.