hezekiah

Forum Replies Created

Viewing 15 posts - 61 through 75 (of 105 total)
  • Author
    Posts
  • in reply to: Change location switcher's position #59951

    hezekiah
    Buyer
    Post count: 115

    trustorrun.com
    Thanks

    in reply to: Change location switcher's position #59906

    hezekiah
    Buyer
    Post count: 115

    THank you. But is there no css change to make the dropdown align with the browser window instead of the incomplete view. Thanks

    in reply to: Excerpt limit on archive pages #59849

    hezekiah
    Buyer
    Post count: 115

    I also need to apply the word count to search results. The entire profile of places and events show up in search results as well. Thanks

    in reply to: Poor Seo Ranking #59842

    hezekiah
    Buyer
    Post count: 115
    This reply has been marked as private.
    in reply to: Poor Seo Ranking #59779

    hezekiah
    Buyer
    Post count: 115
    This reply has been marked as private.
    in reply to: Poor Seo Ranking #59756

    hezekiah
    Buyer
    Post count: 115
    This reply has been marked as private.
    in reply to: Poor Seo Ranking #59746

    hezekiah
    Buyer
    Post count: 115

    Thanks. with wpseo installed, can i still make changes in gd titles and metas. And what kind of variable will i use or change to have a place caetegory title LIKe i earlier mentioned: “restaurants in …. location|sitename” instead of “place archives|sitename”

    in reply to: Poor Seo Ranking #59725

    hezekiah
    Buyer
    Post count: 115
    This reply has been marked as private.
    in reply to: Detail Page Loads Slowly #49327

    hezekiah
    Buyer
    Post count: 115
    This reply has been marked as private.
    in reply to: How to change default tab (from profile to review)? #47017

    hezekiah
    Buyer
    Post count: 115

    ok. will wait.

    in reply to: How to change default tab (from profile to review)? #46988

    hezekiah
    Buyer
    Post count: 115

    Yes i did. Below is the full code:

    add_filter(‘geodir_detail_page_tab_list_extend’, ‘geodir_detail_page_tab_list_extend’) ;

    if ( ‘gd_place’ == get_post_type() ) {
    function geodir_detail_page_tab_list_extend($tab_array)
    {
    // here u can modify this array, u can create a completely new one too.
    if(isset($tab_array[‘reviews’])){
    $new_tab_array[‘reviews’] = $tab_array[‘reviews’];// set in new array
    $new_tab_array[‘reviews’][‘is_active_tab’]=’1′;
    unset($tab_array[‘reviews’]);//unset in old one
    }
    if(isset($tab_array[‘post_profile’])){
    $new_tab_array[‘post_profile’] = $tab_array[‘post_profile’]; // set in new array
    $new_tab_array[‘post_profile’][‘is_active_tab’]=”;
    unset($tab_array[‘post_profile’]);//unset in old one
    }

    if(isset($tab_array[‘post_map’])){
    $new_tab_array[‘post_map’] = $tab_array[‘post_map’];// set in new array
    unset($tab_array[‘post_map’]);//unset in old one
    }

    if(isset($tab_array[‘special_offers’])){
    $new_tab_array[‘special_offers’] = $tab_array[‘special_offers’];// set in new array
    unset($tab_array[‘special_offers’]);//unset in old one
    }

    if(isset($tab_array[‘post_info’])){
    $new_tab_array[‘post_info’] = $tab_array[‘post_info’];// set in new array
    unset($tab_array[‘post_info’]);//unset in old one
    }

    if(isset($tab_array[‘post_images’])){
    $new_tab_array[‘post_images’] = $tab_array[‘post_images’];// set in new array
    unset($tab_array[‘post_images’]);//unset in old one
    }

    if(isset($tab_array[‘post_video’])){
    $new_tab_array[‘post_video’] = $tab_array[‘post_video’];// set in new array
    unset($tab_array[‘post_video’]);//unset in old one
    }

    if(isset($tab_array[‘special_offers’])){
    $new_tab_array[‘special_offers’] = $tab_array[‘special_offers’];// set in new array
    unset($tab_array[‘special_offers’]);//unset in old one
    }

    // now we set any remaining tabs that have not been assigned an order
    foreach($tab_array as $key=>$tab){
    $new_tab_array[$key]=$tab;
    }

    return $new_tab_array ;
    }
    }

    in reply to: How to change default tab (from profile to review)? #46985

    hezekiah
    Buyer
    Post count: 115

    thanks. used the:

    // begin change order tabs //
    /** https://wpgeodirectory.com/support/topic/how-to-change-default-tab-from-profile-to-review/#post-24021 **/

    add_filter(‘geodir_detail_page_tab_list_extend’, ‘geodir_detail_page_tab_list_extend’) ;

    function geodir_detail_page_tab_list_extend($tab_array)
    {
    // here u can modify this array, u can create a completely new one too.
    if(isset($tab_array[‘reviews’])){
    $new_tab_array[‘reviews’] = $tab_array[‘reviews’];// set in new array
    $new_tab_array[‘reviews’][‘is_active_tab’]=’1′;
    unset($tab_array[‘reviews’]);//unset in old one
    }
    if(isset($tab_array[‘post_profile’])){
    $new_tab_array[‘post_profile’] = $tab_array[‘post_profile’]; // set in new array
    $new_tab_array[‘post_profile’][‘is_active_tab’]=”;
    unset($tab_array[‘post_profile’]);//unset in old one
    }

    if(isset($tab_array[‘post_map’])){
    $new_tab_array[‘post_map’] = $tab_array[‘post_map’];// set in new array
    unset($tab_array[‘post_map’]);//unset in old one
    }

    if(isset($tab_array[‘special_offers’])){
    $new_tab_array[‘special_offers’] = $tab_array[‘special_offers’];// set in new array
    unset($tab_array[‘special_offers’]);//unset in old one
    }

    if(isset($tab_array[‘post_info’])){
    $new_tab_array[‘post_info’] = $tab_array[‘post_info’];// set in new array
    unset($tab_array[‘post_info’]);//unset in old one
    }

    if(isset($tab_array[‘post_images’])){
    $new_tab_array[‘post_images’] = $tab_array[‘post_images’];// set in new array
    unset($tab_array[‘post_images’]);//unset in old one
    }

    if(isset($tab_array[‘post_video’])){
    $new_tab_array[‘post_video’] = $tab_array[‘post_video’];// set in new array
    unset($tab_array[‘post_video’]);//unset in old one
    }

    if(isset($tab_array[‘special_offers’])){
    $new_tab_array[‘special_offers’] = $tab_array[‘special_offers’];// set in new array
    unset($tab_array[‘special_offers’]);//unset in old one
    }

    // now we set any remaining tabs that have not been assigned an order
    foreach($tab_array as $key=>$tab){
    $new_tab_array[$key]=$tab;
    }

    return $new_tab_array ;
    }

    // end change order tabs //

    as function.It worked well for reviews. but couldnt add the if statement.

    in reply to: How to change default tab (from profile to review)? #46979

    hezekiah
    Buyer
    Post count: 115

    Hi, used if ( ‘gd_place’ == get_post_type() ) { // function here }
    The details box stopped loading totally. Any fix. Thanks

    in reply to: fatal error #44885

    hezekiah
    Buyer
    Post count: 115

    Thanks stiofan. Great job. Really grateful. See u later.

    in reply to: fatal error #44618

    hezekiah
    Buyer
    Post count: 115
    This reply has been marked as private.
Viewing 15 posts - 61 through 75 (of 105 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount