Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi Sameep,
There are illegal characters in description & address field (see attachment). I corrected it and now it successfully imported.
I have attached corrected csv file.
Thanks,
KiranGlad to hear that 🙂
Kiran
Hi Josh,
Please add
define('WP_POST_REVISIONS', 99);before line
/* That's all, stop editing! Happy blogging. */in wp-config.php file.
Let us know how it goes.
Thanks,
KiranHello,
The problem occurred due to wrong code in woopress theme.
If file wp-content/themes/woopress/framework/woo.php there are hooks “get_{$adjacent}_post_join” & “get_{$adjacent}_post_where” which have 3 parameters used where as WordPress core using 5 parameters.
This results in PHP error and breaks the page.For now i have fixed it for you in file wp-content/themes/woopress/framework/woo.php. So contact theme developer you fix this or you may lose this changes done when you update theme.
After my changes the product page is working fine now.Let us know.
Thanks,
KiranHello Tilen,
This is not an issue, it is because of setting, the schedule is not appearing on the map bubble.
You have chosen to show only “Upcoming” schedule on the map infowindow at GeoDirectory > Event Settings > General > Filter event dates in map infowindow.
You have not any upcoming events so it does not have any upcoming schedule and that’s why schedule not showing on map infowindow.I tested by creating one test event with date 1 July and it shows schedule on map infowindow correctly (see attachment).
Thanks,
KiranHello Harry,
We have already fixed this issue and applied patch on your site.
Please check after clearing your browser cache.
Let us know.
Thanks,
KiranHi Dirk,
This has been fixed. You can find patch at here: https://github.com/GeoDirectory/geodirectory/pull/465/commits/bf4a689438b6abcbeb199af129e367a13e530685
Kiran
This reply has been marked as private.Hello,
Please check and let us know.
thanks,
KiranHi Fabrizio,
There is a JavaScript error from recaptcha on page when you refresh page, this happens due to JavaScript file loading order by caching system. We have fixed this recently.
Please provide FTP credentials so we can apply patch on your site.
Kiran
Hello,
The date I already have set in the event settings (see screenshot “event date settings”) – but it doesn’t seem to show properly in the Add Event form.
The date format setting you marked with yellow color is used for display purpose. To set date format in input field select it from first dropdown (Event Hinjufuzen).
And the time has to count from 0 until 24 (otherwise Germans will not be able to differ between morning and afternoon).
By default it shows in 12-hour format, but you can manage it via hook.
Use following code snippet to show in 24-hour format.function _gd_custom_times_24_hours_format( $times = array() ) { $time_increment = apply_filters('geodir_event_time_increment' , 15) ; $event_time_array =array(); $am = __( '%s AM', 'geodirevents' ); $pm = __( '%s PM', 'geodirevents' ); for($i=0;$i<24 ; $i++ ) { for($j=0 ; $j < 60 ; $j+= $time_increment ) { $time_hr_abs = $i ; $time_am_pm = $am; if($time_hr_abs<10) $time_hr = '0' . $time_hr_abs ; else $time_hr = $time_hr_abs ; if($j<10) $time_min = '0' . $j ; else $time_min = $j ; if($i<10) $time_hr_index = '0' . $i ; else $time_hr_index = $i ; $event_time_array[ $time_hr_index . ":" . $time_min ] = wp_sprintf( $time_am_pm, $time_hr . ":" . $time_min ); } } return $event_time_array; } add_filter( 'geodir_event_schedule_times', '_gd_custom_times_24_hours_format', 10, 1 );Thanks,
KiranHi Alex,
There is no function for this, but you can take reference of existing code to set categories to the listing.
https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/post_functions.php#L450
https://github.com/kprajapatii/geodirectory/blob/master/geodirectory-admin/admin_functions.php#L4518Kiran
Glad to hear that! 🙂
It happened due to JavaScript loading order because of caching system. We have updated in our plugin to load JavaScript at right order.
Kiran
Hello,
The issue has been fixed and it displayed the listings.
Thanks,
Kiran -
AuthorPosts