Stiofan O'Connor

Forum Replies Created

Viewing 15 posts - 12,271 through 12,285 (of 13,774 total)
  • Author
    Posts
  • in reply to: Error in the validation tool: #25600

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    you must still have an old ver of at leat one addon

    Please provide wp-admin, ftp and DB access in a private reply and i will fix it.

    Thanks,

    Stiofan

    in reply to: Geodirectory differed content loading #25593

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    tab content will now be shown before js finishes loading, this will be in next release.

    Thanks,

    Stiofan

    in reply to: "Upload Image" button not working in Version 1.3.1 #25580

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    i have not tested but i really doubt it, we store custom values that are needed so i think it would just break it.

    Stiofan

    in reply to: Latest update has caused SEO to be stripped #25579

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Thanks, fixed and will be in the next ver released later today.

    Stiofan

    in reply to: "Upload Image" button not working in Version 1.3.1 #25571

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Hi Kevin,

    For some reason on your site at that point the global $pagenow var is not defined, this is very strange but i have worked around it by wrapping the call for the script in a action which is called later. I have fixed this on your site and the fix will be in the next ver of core.

    Thanks,

    Stiofan

    in reply to: Title word limit #25564

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Thanks Gianni.

    This issue is resolved for me, i can only think that for some reason the upgrade function did not fire properly for you, i have added a tool to core to be able to fire the upgrade functions (Clear all GD version numbers), this will be in the next core release whch i think will be later today.

    Thanks,

    Stiofan

    in reply to: Events Dummy Data #25560

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Event category count fixed and will be released at the end of the day, also excerpts fixed but what do u mean about reviews?

    Thanks,

    Stiofan

    in reply to: Hide tabs in custom post type #25508

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    This was my bad with my example code, basically both functions will work if u return the original array instead of returning nothing. I checked ur site but all listings seem to be gone, please advise.

    This code should work unless i have made a mistake again, if so please let me know when u have added some listings so i can test.

    Thanks,

    Stiofan

    
    
    function geodir_detail_page_tab_list_extend($tab_array)
    {global $post;
    if(isset($post->post_type) && $post->post_type=='gd_free'){}else{return $tab_array;}
    {
    
    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
    }
    
    if(isset($tab_array['related_listing'])){
    $new_tab_array['related_listing'] = $tab_array['related_listing'];// set in new array
    unset($tab_array['related_listing']);//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: GB Booster Issues With Avada #25204

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    I have added a little fix, please test.

    Stiofan

    in reply to: Booster is overwriting custom CSS #25203

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    I see them updated, i’ll mark this as resolved, let me know if it’s not.

    Thanks,

    Stiofan

    in reply to: pb css since minified and update #25202

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    hi your css problem seem to be releated to this issue: https://theme-fusion.com/forums/reply/reply-to-what-is-avada_3-3-1colorgreen-doing-on-top-of-my-website/

    Can you ask them why you have

    Avada_3.7.1{color:green;}

    as css on your page.

    Stiofan

    in reply to: pb css since minified and update #25201

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Hi, your css problems seems to be related to this same issue, please contact them and ask why this is happening https://theme-fusion.com/forums/reply/reply-to-what-is-avada_3-3-1colorgreen-doing-on-top-of-my-website/

    Stiofan

    in reply to: Hide tabs in custom post type #25197

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    you won’t be abelt o add the conditional outside the functions as the post has not been set yet instead add it to the start of your function

    
    
    function geodir_detail_page_tab_list_extend($tab_array)
    {global $post;
    if(isset($post->post_type) && $post->post_type=='gd_free'){}else{return;}

    Stiofan

    in reply to: Moved: Adrian #25196

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Yes this was a bug, i have fixed it on ur site.

    Thanks,

    Stiofan

    in reply to: Popular Catagories #25195

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    GD Share Location Plugin can be deleted.

    Please check your site now, i have made some changes and activated GD Boooster.

    Stiofan

Viewing 15 posts - 12,271 through 12,285 (of 13,774 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount