These hooks will affect at all the below mentioned places on the Detail Page of your site. You can locate the hooks from the here given file locations & CALL them from the specific files (For E:g- functions.php)

1) To show a link “Send to friend” in detail page.

Action Hooks   –  templ_send_friend_inquiry_email

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php

detail-page-hooks-sendtofriend

If you want to show it, in any other page like page.php/post.php simply write

do_action('templ_send_friend_inquiry_email')

 

2) To Show Image Gallery on Detail Page

Action Hooks   –  templ_post_single_image

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php

 

3) To show Widgets/Options before or after the content

Action Hooks   –  templ_before_post_content/ templ_after_post_content

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php

Example 

If social media icons are below the content but you want to display them ABOVE THE CONTENT then simply write,

Remove_action( 'templ_after_post_content', 'tmpl_social_icons');

Add_action('templ_before_post_content', 'tmpl_social_icons');

 

detail-page-hooks-socialicons

4) To Customize Detail Page post content

Action Hooks   –  templ_post_single_content

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php

 

5) To display the Custom Fields on Detail Page

Action Hooks   –  tmpl_detail_page_custom_fields_collection

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php

If you do not want to show custom fields at all on your Detail Page then Remove this action hook 

 

6) To show Pagination at any Detail Page

Action Hooks   –  tmpl_single_post_pagination

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php

 

7) To Show Message/Widgets before & after comment box

Action Hooks   –  tmpl_before_comments &  tmpl_after_comments

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php

 

8) To show related post at the Detail Page

Action Hooks   –  tmpl_related_post

Folder Location – wp-content > plugins > Tevolution > templates

File Locations  –  Single-tevolution.php