Vikas
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi,
It seems that u have deleted a default page called ‘Location’ created during GD installation ?
I need phpmyadmin database access to fix this.
Please advise ?Thanks
Hi,
This is all happening becuase of strange character in url. I never saw a domain contains special character in it. e. g. http://сдельщик.рф
I am from india , i can not type your domain in browser address bar.
Please advise ?Hi,
I do not have a quick solution like this at this moment but i will consider to create a widget in upcoming release.
Please advise ?
Hi,
Plz put these lines of code in ur child theme functions.php file.
add_action('init' , 'geodir_remove_meta_tags'); function geodir_remove_meta_tags() { remove_filter('wp_head' , 'geodir_add_meta_keywords') ; }
Hi,
If ur site is live then i would prefer to install exact copy of live site with existing adons on staging domain, then upgrade each adons, if everything goes fine on staging then upgrade adons of ur current live site.Thanks
Hi,
Plz go to WP admin back end , Geodirectory > Designs > Listing tab , scroll to bottom and find Terms and Conditions Content, enter your term and condition content here.
Thanks
July 2, 2014 at 5:51 am in reply to: GeoDirectory Location Manager Breaks Permalinks & List views #7121Hi,
Its not related to location manager plugin. It seems that u have deleted all geodirectory related pages, e.g. add listing , all listing, location etc.
Please advise ?
Hi,
Thanks for providing all the info. I have fixed it.
I found that u somehow deleted original add-listing page created by geodirectory installation and created a new add listing page manually.Please advise ?
User has to click on More link to view uploaded images.
Plz have a look on attached image.
Thanks
This reply has been marked as private.Hi,
Thanks for spotting.
Plz go to geodirectory > geodirectory-functions > custom_taxonomy_hooks_actions.php and replace the code at line no. 166/167
if(strpos($taxonomy,'tags')) $newrules[$listing_slug.'/(.+?)/?$'] = 'index.php?'.$taxonomy.'=$matches[1]';
with this
if(strpos($taxonomy,'tags')) { $newrules[$listing_slug.'/(.+?)/page/?([0-9]{1,})/?$'] = 'index.php?'.$taxonomy.'=$matches[1]&paged=$matches[2]'; $newrules[$listing_slug.'/(.+?)/?$'] = 'index.php?'.$taxonomy.'=$matches[1]'; }
Plz do one more exercise after this.
Go to Wp-admin > geodirectory > premalinks > just click on Save changes buttonLet me know if it helps.
Thanks
Hi,
Plz use geodirectory template override functionality.
Copy add-listing.php from geodirectory > geodirectory-templates and create a folder with name ‘geodirectory’ in active theme folder and put this file in it. Now make whatever changes u want there.Plz let me know if it works for u.
Thanks
Plz try to put this code in your theme functions.php file
add_filter('pre_get_posts', 'geodir_apply_my_posts_orderby'); function geodir_apply_my_posts_orderby($query) { if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) { if(!is_admin()) add_filter('posts_orderby', 'geodir_my_posts_orderby' ); } } function geodir_my_posts_orderby($orderby) { global $wpdb; if(!is_admin()) { $orderby = str_replace(", $wpdb->posts.post_date desc" , '', $orderby); } return $orderby ; }
Let me know if this works.
Thanks for ur patience.
This reply has been marked as private. -
AuthorPosts