The Solution:
The new syntax:
[sc name=”shortcode”]
For php file:
<?php echo do_shortcode(“[sc name=”shortcode”]”); ?>
Delete the double quotation mark; and place the single quote: ‘ (alt+39)
<?php echo do_shortcode(“[sc name=’shortcode’]”); ?>
—————————–
Not working: <?php echo do_shortcode(“[sc name=”shortcode”]”); ?>
Working: <?php echo do_shortcode(“[sc name=’shortcode’]”); ?>
Greetings and Blessings.