Here are the Hooks that affects the Post as well as Custom Post Listing Page. Locating them from the given files, you can add your PHP code at the particular respective file (Like functions.php) & CALL these hooks from there
All listing page Hooks effect here
1) To show the share buttons/Messsge etc. before or after the title on the Category Listing Page
Action Hooks – templ_before_categories_title /templ_after_categories_title
Folder Location – wp-content > plugins > Tevolution > templates
File Location – Taxonomy-tevolution.php
2) To show description with share buttons/Messsge etc. before or after the title on the Category Listing Page
Action Hooks – templ_before_categories_description/ templ_after_categories_description
Folder Location – wp-content > plugins > Tevolution > templates
File Location – Taxonomy-tevolution.php
3) To Show images on Category Listing Pages
Action Hooks – tmpl_category_page_image
Folder Location – wp-content > plugins > Tevolution > templates
File Location – Taxonomy-tevolution.php
4) To Display any content before or after the image
Action Hooks – tmpl_after_category_page_image/ tmpl_before_category_page_image
Folder Location – wp-content > plugins > Tevolution > templates
File Location – Taxonomy-tevolution.php
5) To display before/after the content on the listing page
Action Hooks – templ_before_post_content/ templ_after_post_content
Folder Location – wp-content > plugins > Tevolution > templates
File Location – Taxonomy-tevolution.php , Taxonomy-tevolution-tag.php
Example
add_action('templ_before_post_content','tmpl_before_post_content');
function tmpl_before_post_content(){
Dynamic_sidebar('advertisement');
}
6) For Taxonomy Listing page Custom Fields
a) Action Hooks – templ_listing_custom_field
Folder Location – wp-content > plugins > Tevolution > templates
File Location – Taxonomy-tevolution.php , Taxonomy-tevolution-tag.php
b) Action Hooks – templ_before_archive_title/templ_after_archive_title
Folder Location – wp-content > plugins > Tevolution > templates
File Location – archive-tevolution.php
c) Action Hooks – tmpl_before_archive_page_image/tmpl_after_archive_page_image
Folder Location – wp-content > plugins > Tevolution > templates
File Location – archive-tevolution.php