Guust

Forum Replies Created

Viewing 15 posts - 12,001 through 12,015 (of 27,116 total)
  • Author
    Posts
  • in reply to: appearance my new framework theme #385444

    Guust
    Moderator
    Post count: 29970

    Thanks for letting us know, please also review https://wpgeodirectory.com/docs/known-issues/#w3cache

    in reply to: appearance my new framework theme #385442

    Guust
    Moderator
    Post count: 29970

    That sounds like a caching issue. Have you cleared all caching?
    If we need to investigate, post your URL and WP admin details in a private reply and we will have a look.

    Thanks

    in reply to: End date listing #385441

    Guust
    Moderator
    Post count: 29970

    You’re welcome 🙂

    in reply to: End date listing #385427

    Guust
    Moderator
    Post count: 29970

    You can do that with the Payment Manager, then you can set listings to automatically disappear from the frontend on expiry, and can set custom expiry dates [manually].

    Thanks

    in reply to: Listing without a picture #385426

    Guust
    Moderator
    Post count: 29970

    You still will need the detail page, because that is the only place listings can be rated.
    You can hide all image space on the GD pages with with CSS.

    Thanks

    in reply to: Subscription Renewal #385424

    Guust
    Moderator
    Post count: 29970
    This reply has been marked as private.
    in reply to: Subscription Renewal #385419

    Guust
    Moderator
    Post count: 29970
    This reply has been marked as private.
    in reply to: Geodirectory update problems #385417

    Guust
    Moderator
    Post count: 29970

    Thanks for letting us know.

    in reply to: Subscription Renewal #385410

    Guust
    Moderator
    Post count: 29970
    This reply has been marked as private.
    in reply to: Subscription Renewal #385406

    Guust
    Moderator
    Post count: 29970

    Maybe it is not the correct license for the theme?

    in reply to: GD Payment Manager V2+ #385403

    Guust
    Moderator
    Post count: 29970

    Have a look at your plugin page, it will show the version either as 1.4.4 or 2.0.2.
    You only need V2 if you use the WPinvoicing plugin: https://wpinvoicing.com/

    Thanks

    in reply to: Autolocate city #385402

    Guust
    Moderator
    Post count: 29970

    That shortcode can only work in GD pages, because they are the only pages that use the location session.

    Thanks

    in reply to: Subscription Renewal #385400

    Guust
    Moderator
    Post count: 29970

    You should install the WP Easy Updates plugin, if you don’t have it already:
    https://wpeasyupdates.com/

    That will enable you to add licenses on the plugin page if not done already, see image.
    Some plugins need their licenses at GD > Auto-updates, until their next update.

    If you are using a premium GD theme, you will need to add the license at Appearance > Theme License.

    You can find all licenses at https://wpgeodirectory.com/your-account/

    Thanks

    in reply to: Listing tab order code snippet error #385396

    Guust
    Moderator
    Post count: 29970

    You may be safer to use the Code Snippets plugin: https://wpgeodirectory.com/docs/useful-plugins/#snippets

    Try this, let us know:

    
    
    // this is the snippet that adds the filter, calling the function below.
    add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend') ;
    
    // this is the function that does the re-ordering that we call with the add filter snippet above.
    function geodir_detail_page_tab_list_extend($tab_array)
    {
    
    // here you can modify the array and re-arrange tabs as you wish, you can create a completely new array too.
    
    // this is the map tab, by default is the 6th, but here we moved it to position 1 and made it the active tab.
    if(isset($tab_array['post_map'])){
    $new_tab_array['post_map'] = $tab_array['post_map'];// set in new array
    // IMPORTANT the following code tells GeoDirectory that this is the new default active tab
    $new_tab_array['post_map']['is_active_tab']='1';
    unset($tab_array['post_map']);//unset in old one
    }
    
    // this is the review tab, by default is the 7th, but here we moved it to position 2.
    if(isset($tab_array['reviews'])){
    $new_tab_array['reviews'] = $tab_array['reviews'];// set in new array
    unset($tab_array['reviews']);//unset in old one
    }
    
    // this is the post profile tab, by default is the 1st
    if(isset($tab_array['post_profile'])){
    $new_tab_array['post_profile'] = $tab_array['post_profile']; // set in new array
    // IMPORTANT the following code tells GeoDirectory that this is no longer the default active tab
    $new_tab_array['post_profile']['is_active_tab']='';
    unset($tab_array['post_profile']);//unset in old one
    }
    
    // this is the post info tab (optional for custom fields), by default, if available, is the 2nd.
    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
    }
    // this is the images tab, by default is the 3rd
    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
    }
    
    // this is the video tab, appears only if there are videos and by default is the 4th
    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
    }
    
    // this is the speacial offer tab, appears only if there are special offers and by default is the 5th
    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
    }
    
    // this is the related listing tab, it is optional and by default is the 8th
    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: CSS / Stylesheet issue #385395

    Guust
    Moderator
    Post count: 29970

    I alerted Stiofan to look at this after the weekend.
    In the meantime, you can disable GD Booster if you like.

    Please post your WP admin details in a private reply so we can investigate.

    Thanks

Viewing 15 posts - 12,001 through 12,015 (of 27,116 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount