Whenever I try accessing any of the pages of the website, I get the error below:
Parse error: syntax error, unexpected 'Feature' (T_STRING) in /home4/wac2pi0abqbi/public_html/wp-content/themes/netdivoflexchild/index.php on line 2
After googling it, I discovered that the error was thrown because of the use of " instead of ' in the shortcode below:
<?php echo do_shortcode("[wpb-feature-product title="Feature Products"]"); ?>
The error was fixed by using the shortcode below, instead of the one above.
<?php echo do_shortcode("[wpb-latest-product title='Feature Products']"); ?>
So, if you encounter similar error, try using ' instead of " in your code.
Post a Comment