To override the conversation section template, you can follow the steps provided:
1.Create a folder named “woocommerce-price-quote-pro” within your child theme: This means you should have a WordPress child theme set up. If you’re not familiar with child themes, they are a way to make modifications to a theme without altering the original theme files. In this case, you should create a subfolder within your child theme directory called “woocommerce-price-quote-pro”
For example, if your child theme is named “my-child-theme,” the folder structure should look like this:
wp-content/themes/my-child-theme/woocommerce-price-quote-pro/
2. Create a new file named “author-email-content.php”: Inside the “woocommerce-price-quote-pro” folder you created, you should now create a new PHP file with the exact name “author-email-content.php” This file is where you’ll place the custom code or template modifications for the conversation section.
For example, your file structure should be:
wp-content/themes/my-child-theme/woocommerce-price-quote-pro/author-email-content.php
After following these steps and making your desired customizations in the “author-email-content.php” file, your changes should be applied to the email template, overriding the default template. This allows you to have control over the appearance and functionality of the specific email template.
