Kiran
Forum Replies Created
-
AuthorPosts
-
October 15, 2019 at 9:10 am in reply to: Make the Search "not to" index/scan the listing description. #513159
Hi Manfred,
Add following PHP snippet to don’t search in post description.
/** * Skip searching in post description. */ function gd_snippet_191015_search_content_where( $content_where ) { $content_where = ''; return $content_where; } add_filter( 'geodir_search_content_where', 'gd_snippet_191015_search_content_where', 20, 1 );
Regards,
KiranHi Wesley,
1. Do you know what plugin was causing breaking javascript?
To find which plugin causing this issue, it needs to disable non GD plugin/theme one by one. Do you want me to check?
—
2. On the analytics choices, I don’t see a “This Month vs. Last Month” which would be probably the most viewed analytic. Is it possible to display that as well?
This has been implemented but it will be in next release of Google Analytics plugin.
You can apply this patch: https://github.com/AyeCode/geodir-google-analytics/pull/11/commits/793ed20f216ffc60d50a514ab3cd4b918844889dThanks,
KiranThis reply has been marked as private.Thanks for letting us know.
Hi Wesley,
1. The Google Maps aren’t showing for address on the add-listing form.
One of plugin converting
&
to
#038;
in html and it breaks JavaScript on the page.
I have added following PHP snippet under Snippets to fix this./** * Fix changing "&" to "& #038;". */ function gd_snippet_191014_the_content( $content ) { if ( ! empty( $content ) && strpos( $content, "geodir_" ) !== false ) { $content = str_replace( "&" . "#038;&" . "#038;", "&&", $content ); } return $content; } add_filter( 'the_content', 'gd_snippet_191014_the_content', 9999, 1 );
—
2. On my listing pages, I can’t get the Google Analytics to show anything other than the weekly view.
I have added following CSS in Appearance > Customize > Additional CSS
/* Fix GD listing Google analytics type selector */ .gdga-type-container span.select2-selection.select2-selection--single.gd-select2-selection { display: block; }
Please check after clearing your browser cache and let us know.
Regards,
KiranThis reply has been marked as private.This reply has been marked as private.Hi jotomas,
Event edit issue has been fixed.
It looks like even plugin was disabled during v1 to v2 conversion so event data are not converted properly.
I have fixed it and now add/edit is working fine.Please check and let us know.
Regards,
KiranThis reply has been marked as private.October 14, 2019 at 8:23 am in reply to: Imported languages via csv are not automatically linked to original language. #512985Hi Mark,
For what is duplicate used?
With WPML you can translate post by two methods(normal translate & duplicate).
Read more about translate & duplicate at here: https://wpml.org/forums/topic/clarity-on-duplicate-v-s-translate/#post-3340301
If you use wpml_is_duplicate=1 then it will treat 2410 as a duplicate of 24079 otherwise translation of 24079.
Let us know.
Kiran
This reply has been marked as private.Hi jotomas,
I checked and found something conflicts there that stops event saving. Please provide FTP credentials to look into more.
Kiran
Hi identity,
Location page meta title is overwritten from add/edit location item. “Crystal Lake, Illinois” is saved in “Meta Title” for “Crystal Lake” at GeoDirectory > Settings > Locations > Cities > Edit “Crystal Lake”. It is overwriting the meta title set in Titles & Meta section.
Try to leave blank “Meta Title” at add/edit location item page.
Let us know.
Regards,
KiranOctober 14, 2019 at 6:46 am in reply to: %%in_location%% working, but not %%in_location_single%% in meta title #512977Hi awideman,
I have checked and it looks like something stopping to save listing. Please provide us FTP credentials to look into there.
Kiran
Hi Kai,
I have checked add listing for all GD post types, it seems all working fine now.
Please check and let us know.
Regards,
Kiran -
AuthorPosts