To override the templates of single Business Tabs such as about, reviews, follower etc, you can follow the steps provided:
1.Create a folder named “bp-business-profile” 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 “bp-business-profile”
For example, if your child theme is named “my-child-theme,” the folder structure should look like this:
wp-content/themes/my-child-theme/bp-business-profile/
2. Create a folder named “single” within your bp-business-profile folder
Inside the “bp-business-profile” folder you created, you should now create a new folder with the name “single” This folder is where you’ll override all the templates.
For example, your file structure should be:
wp-content/themes/my-child-theme/bp-business-profile/single
2. Create a new file named “about.php”: Inside the “bp-business-profile/single” folder you created, you should now create a new PHP file with the exact name “about.php” This file is where you’ll place the custom code or template modifications for the about section.
For example, your file structure should be:
wp-content/themes/my-child-theme/bp-business-profile/single/about.php
After following these steps and making your desired customizations in the “about” file, your changes should be applied to the about tab template, overriding the default template. This allows you to have control over the appearance and functionality of the about tab
Following the same steps you can override other templates available in the single folder.
