• Hi, I’m using Elementor Page Builder and I’m disappointed that you don’t offer any shortcodes or widgets to put stars or reviews where we want.

    It’s very limited and using an Elementor Pro template the reviews are before the content, unusable!!

Viewing 1 replies (of 1 total)
  • Experience the same problem. Here’s my workaround:

    add_shortcode('sc_wc_yotpo_show_widget', function(){
    	$plugin_dir = WP_PLUGIN_DIR . '/yotpo-social-reviews-for-woocommerce';
    	include_once $plugin_dir.'/wc_yotpo.php';
    	wc_yotpo_show_widget();
    	
    	return;
    });
    
    add_shortcode('sc_yotpo_show_buttomline', function(){
    	$plugin_dir = WP_PLUGIN_DIR . '/yotpo-social-reviews-for-woocommerce';
    	include_once $plugin_dir.'/wc_yotpo.php';
    	wc_yotpo_show_buttomline();
    	
    	return;
    });

    Add the above code to functions.php or, in my case, Code Snippets.

Viewing 1 replies (of 1 total)
  • The topic ‘No shortcodes!!!’ is closed to new replies.