luxman

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 31 total)
  • Author
    Posts
  • in reply to: Remove "Review" Option from Events #117240

    luxman
    Free User
    Post count: 38

    Got it!

    Here is what I placed in my child-theme’s functions.php file for those looking to solve this as well.

    
    
    
    // This is the add filter action which will use the function below to re-order tabs. 
    add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend') ;
     
    //This is the actual function to re-order tabs
    function geodir_detail_page_tab_list_extend($tab_array)
    {
     
    // before creating the new array which will re-order the tabs, we check if the custom post type is "Places"
     
    if ( 'gd_event' == get_post_type() ) {
     
     
        // this is the review tab, by default is the 7th, but here we moved it to position 1.
        if(isset($tab_array['reviews'])){
             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']='1';
             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 map tab, by default is the 6th
        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
         }
     
        // 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 ; } // If Check for Places ends here 
     
    // Here we tell GeoDirectory to use the regular array for all other custom post types.
    else { return $tab_array ;  }
     
    }
    in reply to: Remove "Review" Option from Events #117205

    luxman
    Free User
    Post count: 38

    How do I unset the tab from the old array and avoid setting it back in the new array.

    in reply to: Remove "Review" Option from Events #117203

    luxman
    Free User
    Post count: 38

    What do I add to this code?

    
    
    
        // this is the review tab, by default is the 7th, but here we moved it to position 1.
        if(isset($tab_array['reviews'])){
             $new_tab_array['reviews'] = $tab_array['reviews'];// set in new array
             // IMPORTANT the following code tells GeoDirectory that this is the new default active tab 
             $new_tab_array['reviews']['is_active_tab']='1';
             unset($tab_array['reviews']);//unset in old one
         }

    If I remove it, then the reviews tab appears last. If I keep it, it appears first. I want it 100% gone.

    in reply to: Remove "Review" Option from Events #116656

    luxman
    Free User
    Post count: 38

    This will remove the reviews for listings too though right? How do I make it just for events?

    in reply to: Listings Not Getting Added to Site? #116387

    luxman
    Free User
    Post count: 38

    OK figured out the issue!

    One of those sessions were turned off. Additionally, I had created a custom php.ini file which was uploaded to the wp-admin file. This file overwrote the servers settings causing the admin folder to not be writable.

    I created the php.ini file which had this:

    memory_limit = 128M;
    upload_max_filesize = 64M;
    post_max_size = 32M;
    max_execution_time = 300;
    max_input_vars = 9000;
    session.use_only_cookies = off;

    I had this due to WooCommerce needing higher memory limits and other stuff. Now everything works 🙂 So if other members have issues, definitely check to see if they have a php.ini file in the wp-admin folder.

    in reply to: Listings Not Getting Added to Site? #116310

    luxman
    Free User
    Post count: 38

    Issue is still not resolved.

    in reply to: Listings Not Getting Added to Site? #115917

    luxman
    Free User
    Post count: 38
    This reply has been marked as private.
    in reply to: Listings Not Getting Added to Site? #115852

    luxman
    Free User
    Post count: 38

    Am I the only member to have this issue? It appears the others had to check their permalinks or location settings. Given the login information above, can someone see a way to fix this? Even through cpanel?

    What does this do? – http://pastebin.com/5JWnmLY4

    in reply to: Listings Not Getting Added to Site? #115850

    luxman
    Free User
    Post count: 38

    I tried adding that but it didn’t do anything.

    in reply to: Listings Not Getting Added to Site? #115848

    luxman
    Free User
    Post count: 38

    This is what I have in my php.ini file in /admin/ for the demo site I’m using

    memory_limit = 128M;
    upload_max_filesize = 64M;
    post_max_size = 32M;
    max_execution_time = 300;
    max_input_vars = 9000;

    so add session.use_only_cookies = off ?

    in reply to: Listings Not Getting Added to Site? #115837

    luxman
    Free User
    Post count: 38
    This reply has been marked as private.
    in reply to: Listings Not Getting Added to Site? #115772

    luxman
    Free User
    Post count: 38

    Thanks for creating this plugin as well! It works perfectly with the WordPress theme Kleo 🙂

    in reply to: Listings Not Getting Added to Site? #115771

    luxman
    Free User
    Post count: 38

    I plan on enabling multisite… for example, https://directory.domain.com

    Is WP Geo Directory multisite friendly now? or are there still issues? I had searched the forums and it looks like this was completed over the summer.

    EDIT: FYI, the site I am using the plugin on is currently with CloudFlare. I do have minification and rocketloader off.

    in reply to: Listings Not Getting Added to Site? #115770

    luxman
    Free User
    Post count: 38
    This reply has been marked as private.
    in reply to: Listings Not Getting Added to Site? #115381

    luxman
    Free User
    Post count: 38

    I did a fresh install on another domain, checked everything and it does the same thing > redirects to the homepage. Twenty Fifteen theme.

Viewing 15 posts - 16 through 30 (of 31 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount