Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.
Thanks for letting us know 🙂
Hi Chance,
It seems there is a session writing problem with your server. Either session directory does not exists or it is not writable.
I get this following error in debug:
session_start(): open(/var/lib/php/session/sess_m7o9p9k8nh67as444cne67nhs2, O_RDWR) failed: Permission denied (13)
Contact your hosting or server admin to check about this error.
For temp solution add following lines in wp-conflg.php file to use standard WP session instead of PHP session within GD.
/* Fix failed to write PHP session data. */ if ( !defined( 'GEODIR_USE_PHP_SESSIONS' ) ) { define( 'GEODIR_USE_PHP_SESSIONS', false ); }
Let us know.
KiranAugust 4, 2017 at 5:21 am in reply to: Updated WordPress from version 4.8 to 4.8.1 – Cannot find Categories… #389707This reply has been marked as private.Hi,
Pus following function in function.php
function gd_current_country_is( $country ) { $location_terms = geodir_get_current_location_terms(); if ( !empty( $location_terms['gd_country'] ) && $location_terms['gd_country'] == $country ) { return true; } return false; }
Put following condition in widget logic
// For UKgd_current_country_is( 'united-kingdom' ) == true
// For AUS
gd_current_country_is( 'australia' ) == true
Kiran
Hi Jennie,
Please check now, i added following style in GD > Design > Script and now it looks fine.
.geodir_cpt_categories_widget ul li { list-style: none; }
Let us know.
Thanks,
KiranHi There,
Check following code snippets to detect various location page.
$location_terms = geodir_get_current_location_terms(); // /united-kingdom/ (country) if ( !empty( $location_terms['gd_country'] ) && $location_terms['gd_country'] == 'united-kingdom' ) { // True } // /united-kingdon/greater-london/ (region) if ( !empty( $location_terms['gd_region'] ) && $location_terms['gd_region'] == 'greater-london' ) { // True } // /united-kingdon/greater-london/london/ (city) if ( !empty( $location_terms['gd_city'] ) && $location_terms['gd_city'] == 'london' ) { // True } // /location/me page (me) if ( get_query_var( 'gd_country' ) == 'me' || get_query_var( 'gd_region' ) == 'me' || get_query_var( 'gd_city' ) == 'me' ) { // True } // /location/ (everywhere) if ( empty( $location_terms ) && geodir_is_page( 'location' ) && !( get_query_var( 'gd_country' ) == 'me' || get_query_var( 'gd_region' ) == 'me' || get_query_var( 'gd_city' ) == 'me' ) ) { // True }
Kiran
Hi Courtney,
There are two jQuery JavaScript files of different version are included and this results in JS error. Those two JS files are wp-includes/js/jquery/jquery.js?ver=1.12.4 & wp-content/themes/bandbay/js/jquery-2.1.4.min.js?ver=4.8.1
The JS file jquery-2.1.4.min.js is included via theme and it conflicts with the WordPress main jQuery file. The JS error breaks the rest of the things.You should contact theme developer for support.
Let us know.
KiranHi There,
The bug has been fixed and will be reflected in next release of Advance Search plugin.
Thanks,
KiranThanks for letting us know 🙂
Hi There,
I did some testing by importing Banks_000009.csv with 10k listings and it successfully imported 1850 listings until i terminated the process.
It is the same CSV file that you are trying?Let us know.
Kiran
Hi Ayanna,
Currently Cash On Delivery & Cheque Payment gateways not available for Invoicing but we have planned to add support for both these gateways.
Kiran
-
AuthorPosts