Kiran
Forum Replies Created
-
AuthorPosts
-
September 20, 2019 at 1:26 pm in reply to: After last update archive pages are displaying incorrectly #509382
Hi Ronny,
It looks like you have not updated all GeoDirectory plugins. Please update all GeoDirectory plugins and let us know how it goes.
Regards,
KiranYou can find files which needs to be updated at here https://github.com/AyeCode/geodirectory/commit/05978b094b5e9adc09a9b16fec74d40a5a0fe52f
Or you can overwrite all files within /geodirectory/
Kiran
Hi Carl,
The search page layout is conflict with GeoDirectory search template.
Please add following PHP code snippet to fix it. Please update GeoDirectory plugins to recent version as well./** * Jarida theme search page sidebar fix. */ function gd_snippet_190920_jarida_init() { if ( ! is_admin() && geodir_is_page( 'search' ) ) { $search_page_id = geodir_search_page_id(); if ( $sidebar_pos = get_post_meta( $search_page_id, 'tie_sidebar_pos', true ) ) { $sidebar = ''; if( $sidebar_pos == 'left' || ( tie_get_option( 'columns_num' ) == '2c' && $sidebar_pos == 'nright' )) $sidebar = ' sidebar-left'; elseif( $sidebar_pos == 'full' ) $sidebar = ' full-width'; elseif( $sidebar_pos == 'right' || ( tie_get_option( 'columns_num' ) == '2c' && $sidebar_pos == 'nleft' )) $sidebar = ' sidebar-right'; elseif( $sidebar_pos == 'nright' ) $sidebar = ' sidebar-narrow-right'; elseif( $sidebar_pos == 'nleft' ) $sidebar = ' sidebar-narrow-left'; if ( $sidebar ) { wp_add_inline_script( 'geodir', "jQuery(function(){jQuery('#main-content').addClass('" . $sidebar . "');});" ); } } } } add_action( 'wp_print_scripts', 'gd_snippet_190920_jarida_init', 100 );Kiran
Please download https://github.com/kprajapatii/geodirectory-v2/archive/master.zip and extract files under /plugins/geodirectory/
Kiran
This reply has been marked as private.With “WP File Manager” sometimes it breaks the site at the time of replacing files.
Do you have CPanel credentials? I can also manage files updates from there.
Kiran
This reply has been marked as private.Hi Giovan,
This is something conflicts with lity element. I have added following PHP snippet to fix this. Now video popup works fine.
function gd_snippet_wp_footer() { ?> <script type="text/javascript"> jQuery(function($){ $('.gd-badge-meta.gd-lity > a').each(function(){ $(this).attr("data-lity", ""); }); }); </script> <?php } add_action( 'wp_footer', 'gd_snippet_wp_footer', 100 );Kiran
This reply has been marked as private.Hi Matthew,
I have checked on my test site and it is working as expected.
I have created event which starts on 19th and it has duration of 4 days. I have checked today(on 20th) and event is listed in upcoming events lists(see screenshot).
Provide us admin credentials to look into more.
Regards,
KiranHi Alexander,
Those strings are defined in \geodirectory\language.php and it looks like translation not working with strings defined in \geodirectory\language.php file.
We have fixed this and it will be in next release. You can try patch https://github.com/AyeCode/geodirectory/commit/05978b094b5e9adc09a9b16fec74d40a5a0fe52f
Regards,
KiranThis reply has been marked as private.This reply has been marked as private.Hi,
I have tested with following api data and it worked fine.
title=Listing via API&content=This listing is created via API.&post_category[]=36&post_tags=my tag,api&status=publish&author=1&street=123 GD Tower&country=India®ion=Gujarat&city=Surat&zip=123456&latitude=21.169559&longitude=72.836725&mapview=ROADMAP&phone=+1 111 111 1111&[email protected]&website=https://www.mysite.com/&package_id=7&franchise_fields[]=emailPlease provide a site link, admin & FTP credentials to look into more.
Kiran
September 19, 2019 at 12:45 pm in reply to: Scrolling on mobile device (IOS apple) not smooth. #509170Hi Joel,
Do you have smooth scroll issue on only GeoDirectory pages or all the site pages?
Please provide any specific url so we can check.
Regards,
Kiran -
AuthorPosts