Kiran
Forum Replies Created
-
AuthorPosts
-
Hello,
PHP snippet can be executed by adding via PHP snippet plugin or by adding in current theme functions.php file.
For more info check this https://wpgeodirectory.com/docs/useful-plugins/#snippets
Kiran
Hi Dave,
I have added alternate calendar queries. Please check and let us know if you see CPU related issue.
Thanks,
KiranHi,
We have fixed issue, please provide FTP password to apply patch on your site. Because password link says “Sorry, I’ve already forgotten that secret.”.
Thanks,
KiranHello There,
Try following PHP snippet to apply MagPlus layout settings to GeoDirectory pages.
if(!function_exists('magplus_get_opt')) { function magplus_get_opt($option) { global $magplus_theme_options; $local = false; //get local from main shop page if (class_exists( 'WooCommerce' ) && (is_shop() || is_product_category() || is_product_tag())) { $shop_page = wc_get_page_id( 'shop' ); if (!empty($shop_page)) { $value = magplus_get_post_opt( $option.'-local', (int)$shop_page); $local = true; } // Get local from metaboxes for GeoDirectory pages. } else if ( function_exists( 'geodir_is_geodir_page' ) && geodir_is_geodir_page() && ( $page_id = (int) GeoDir_Compatibility::gd_page_id() ) ) { if ( in_array( $option, array( 'blog-sidebar-layout', 'archive-sidebar-layout', 'search-sidebar-layout' ) ) ) { $option = 'main-layout'; } $value = magplus_get_post_opt( $option.'-local', (int)$page_id ); $local = true; //get local from metaboxes for the post value and override if not empty } else if (is_singular()) { $value = magplus_get_post_opt( $option.'-local' ); //print_r($value); $local = true; } //return local value if exists if ($local === true) { //if $value is an array we need to check if first element is not empty before we return $value $first_element = null; if (is_array($value)) { $first_element = reset($value); } if (is_string($value) && (strlen($value) > 0 || !empty($value)) || is_array($value) && !empty($first_element)) { return $value; } } if (isset($magplus_theme_options[$option])) { return $magplus_theme_options[$option]; } return false; } }
Thanks,
KiranHello,
I have added two template files
– YOUR-CHILD-THEME/geodirectory.php
– YOUR-CHILD-THEME/templates/contents/content-geodir.php
– Chosen template geodirectory.php(GeoDirectory) for GeoDirectory pages.Kiran
Hello Ralf,
– Un-tick option “Allow posting without logging in?” from GeoDirectory > Settings > General
– Add following PHP snippet via snippet plugin or add in your current theme functions.phpremove_action( 'init', array( 'GeoDir_Post_Data', 'setup_guest_cookie' ), 1 );
– You can also block cookie from your side
Thanks,
KiranHi Eva,
I checked location description for “Brisbane City” location but yet no description added there. See https://smartaussies.com.au/wp-admin/admin.php?page=gd-settings&tab=locations§ion=add_location&location_id=2
Add description to show on front-end side.Kiran
Hello,
Please check and let us know.
Thanks,
KiranHi Eva,
Use location description widget/shortcode on GeoDirectory > Settings > Pages >
location page content.Thanks
March 23, 2020 at 2:31 pm in reply to: Claim listing V2.0.0.11 – no notification or admin changes #536293There was column missing in claim table. I re-generated table.
Kiran
Hi Ralf,
That cookie is used to store author unique id when non-logged user adds new listing. So after logged in the author id assigned to the listing which added by non-logged user. Don’t block this cookie.
Thanks,
KiranMarch 23, 2020 at 5:11 am in reply to: Claim listing V2.0.0.11 – no notification or admin changes #536162Hi There,
Issue has been fixed, please check and let us know.
Thanks,
KiranHi Andreas,
I checked and it looks like custom css from plugin/theme has affected map marker icon style. For any plugin/theme built-in css conflicts we includes fix in our plugin.
Thanks,
KiranHello,
Can you provide screenshot or steps how to replicate?
Kiran
Hi Eva,
Location description (country/region/city/neighbourhood) displayed via Location Description widget/shortcode on pages where location is set in url.
On which pages do you want that description? Or do you want different category description on different city/region?
Regards,
Kiran -
AuthorPosts