Kiran
Forum Replies Created
-
AuthorPosts
-
Hello Nick,
Here is patch to fix link post types v1 to v2 conversion data. Patch: https://github.com/AyeCode/geodirectory/pull/521/commits/e621ec1d38c8cd32722c83867b9d6eaf902c0f5d
After applying this patch, you can try v1 to v2 conversion on your clone site which have not performed v1 to v2 conversion before.Please follow instructions given here for conversion: https://wpgeodirectory.com/docs-v2/geodirectory/installation/#convert
Kiran
Hello Tom,
Please provide us admin & FTP credentials in a private reply so we can take a look.
Kiran
Hello Graham,
I have done some debugging and found that it is due to old version of GeoDirectory that searching is not working properly.
Please update it and let us know how it goes.Kiran
Hello,
That’s okay I’ll wait for the updated code. I’m happy to be a tester for you too if you want to send zips. Any idea of a timeline on this?
The script will run if you are going v1 to v2 conversion 1st time. For existing converted site i need to do it manually. That’s way i asked for FTP & DB credentials, so i can apply patch on your site.
If I export all and reimport all, is that a viable workaround?
Can you clarify what data you asking about export/reimport?
Kiran
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.Hello Edward,
Recently we detected this issue on site which have PHP setting allow_url_fopen = off. I have applied patch on your site to fix this.
Please check and let us know.
Kiran
Hi Javier,
The issue of “Event calendar shows spinner continuously” is already fixed but it will be updated in next release.
I have applied patch on your site so now it is working fine.
Kiran
Hello,
– re: the bug/problem with the form submission with artificially tweaked form – wouldn’t you update the plugin so we can download the new fixed version?
Fix will be available in next update of plugin, but we need confirm from your side whether it is the same or not. So if you provide FTP we will apply patch on your site to check from your side.
Kiran
Hello,
– the hook to insert above the search results for v2
There are two hooks, that you can use to insert content before searched results.
1)
do_action('geodir_before_listing_listview')will add content before
<ul>tag.
20
do_action( 'geodir_before_listing_post_listview' )will add content in
<ul>tag before
<li>loop.
a) to retrieve all data for specific custom type and category
You can get help from this on how to retrieve custom post types posts using taxonomy filter https://wordpress.stackexchange.com/questions/66219/list-all-posts-in-custom-post-type-by-taxonomy
b) to catch the current category for the current page where the code is running.
You can use function
get_queried_object()to retrieve all the searched vars for current page.
Kiran
Hi Peter,
Currently there is no way to separate separate house number & road form the address returned from OSM api. This can be done only manually from add listing form.
Kiran
Hello Simone,
I looked your code and have used
$cover_photo = geodir_get_post_meta( $postid, 'geodir_foto_copertina', true); $logo = geodir_get_post_meta( $postid, 'geodir_logo_scheda', true);to retrieve field value. This will not work on preview of new listings, because new listing data only saved after listing is saved.
You should use like
$cover_photo = isset( $post->geodir_foto_copertina ) ? $post->geodir_foto_copertina : ''; $logo = isset( $post->geodir_logo_scheda) ? $post->geodir_logo_scheda: '';Kiran
This reply has been marked as private. -
AuthorPosts