Hi
Regarding this question I asked before, I used the following code to get the review section to be displayed outside the tabs area.
// Add Review after Detail Page Tabs
add_filter('geodir_detail_page_tab_is_display','geodir_detail_page_tab_is_display_filter',10,2);
function geodir_detail_page_tab_is_display_filter($value,$type){
if($type=='reviews'){return false;}
else{return $value;}
}
add_action( 'geodir_details_main_content', 'comments_template_change_position',65,5);
function comments_template_change_position(){
echo comments_template();
}
It works fine on normal listing display but when I preview a new listing, the disqus comment used on my website shows up under the tabs where the review would have showed. At first, I will see normal WP comments with some comments from the demo contents displayed for a few seconds before the disqus comment replaces it. Either way, this is not normal.
Did I do something wrong with the code. I got it from the link you shared.
Thanks