Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.April 22, 2019 at 7:38 am in reply to: No Records Found Sorry, no records were found. Please adjust your search criteri #482077
Hello,
Please check now.
I enabled Location Manager plugin, because listings were created with multi-locations.
Kiran
April 22, 2019 at 7:27 am in reply to: GDv2 Upgrade Problem – Database error: [Unknown column 'country' in 'field list' #482076This reply has been marked as private.Hello Renee,
To fix editor issue:
Add following code snippet to prevent conflict with “BuddyPress User Profile Tabs Creator Pro” plugin.function gd_conflict_sd_bp_profile_tabs() { if ( class_exists( 'BPPTC_Profile_Tabs_Pro' ) && ( isset( $_GET['post_type'] ) || isset( $_GET['post'] ) ) && is_admin() ) { $post_type = isset( $_GET['post_type'] ) ? $_GET['post_type'] : get_post_type( $_GET['post'] ); if ( $post_type == 'bpptc_profile_tab' ) { global $sd_widget_scripts; $sd_widget_scripts = true; } } } add_action( 'widgets_init', 'gd_conflict_sd_bp_profile_tabs', 0 );Let us know.
Regards,
KiranThis reply has been marked as private.Hello jkirker,
I have done some debugging and not found any wrong with urls.
In GeoDirectory v2 we have added tool to fix duplicate location slug to use location slug more standard way like WordPress slugs.
I checked all location slugs with -1, -2 etc and all locations names are unique with country, region.
Fox example city “Auburn” available exists in Washington(United States), Ontario(Canada), New York(United States), Maine(United States), Indiana(United States), Massachusetts(United States), Alabama(United States) so it has slugs auburn, auburn-1, … , auburn-6Let us know.
Thanks,
KiranThis button is rendered via badge to look bigger and different from other button on page.
So, no updates will undo this, correct?
If updates overwrites files, then it will undo this.
Try following css:
/* normal */ .gd-badge-meta-write-a-review .gd-badge { background-color: #157b48 !important; } /* hover */ .gd-badge-meta-write-a-review .gd-badge:hover { background-color: #157b48 !important; }Kiran
This reply has been marked as private.Hello Naoufel,
Please try now and let us know.
I see you have some customization done via theme functions.php file for GeoDirectory v1. You have to review this code and have to make compatible with GeoDirectory v2.
Let us know.
Regards,
KiranThis reply has been marked as private.Hello Timalua,
iPanorama 360 shortcode renders inline JavaScript in html without wrap by “/* <![CDATA[ */” & “/* ]]> */”.
I have added following snippet in your child theme functions.php.
/** * iPanorama 360 shortcode fix p tag */ function gd_snippet_190420_ipanorama_shortcode_tag( $output, $tag, $attr, $m ) { if ( $tag == 'ipanorama' && ! empty( $output ) ) { $output = str_replace( '<script type="text/javascript">', '<script type="text/javascript">/* <![CDATA[ */', $output ); $output = str_replace( '</script>', '/* ]]> */</script>', $output ); } return $output; } add_filter( 'do_shortcode_tag', 'gd_snippet_190420_ipanorama_shortcode_tag', 1, 4 );Please check and let us know.
Regards,
KiranThis reply has been marked as private.This reply has been marked as private.Hello Jeff,
If “Featured” is not excluded from package from CPT Settings > Packages > Package then listing added under that package will be auto marked as a featured.
If “Featured” field is excluded from package then listing added under that package not marked as a featured.Featured field is visible in frontend add/edit listing form if package has featured field not excluded and user is admin.
Let us know.
Kiran
This reply has been marked as private. -
AuthorPosts