Adding Schema markup for SEO

1. Add this code to your php snippets add_action( ‘wp_head’, function () { $schemamarkup = get_post_meta(get_the_ID(), ‘schemamarkup’, true);if(!empty($schemamarkup)) {echo $schemamarkup;}} ); 2. Turn on CUSTOM FIELDS from page/post settings....

Mailchimp automations on free plan

Use this link: Link to Classic Automations You can only create 1 email here.  If you need to create more you can do so using a tag system.  See this video for more...

Woocommerce snippets

Show Category Description if ( ! function_exists( ‘my_show_category_description_in_shop’ ) ) { function my_show_category_description_in_shop( $category ) { ?> <h2 class=”woocommerce-loop-category__description”> <?php echo esc_html(...