Kiran
Forum Replies Created
-
AuthorPosts
-
September 13, 2018 at 7:18 am in reply to: create near me button which functions like the compass near me option? #446369
Hi Scott,
Things you asking is not possible without customization. 🙂
Kiran
Hello Rafaela,
I have checked publish lisitng email with GMail account and it showing fine. So it is a email provider(GMail, Yahoo etc) how it showing email.
But you can wrap message content by margin, padding ex:<div style="margin:10px;padding:10px"><p>Dear [#client_name#],</p> .......... <p>[#site_name#]</p></div>I have tested this with GeoDirectory > Notifications > Listing published email and it shows margins in email message (see attachment)
Thanks,
KiranHi Kerrin,
I have fixed the issue. Please provide us FTP & admin credentials so i can apply patch on your site to confirm from your side.
Kiran
This reply has been marked as private.Hello Sacha,
Invoicing plugin do not have any integration with WooCommerce. Invoicing plugin don’t supports multi-currency at same time.
Kiran
Hello Evrem,
Use following snippet to re-order favorites sub-tabs.
function _gd_snippet_bp_favorites_subnav( $sub_navs ) { foreach ( $sub_navs as $key => $nav ) { $position = $nav['position']; if ( $nav['slug'] == 'places' ) { $position = 30; } else if ( $nav['slug'] == 'events' ) { $position = 20; } else if ( $nav['slug'] == 'schools' ) { $position = 50; } else if ( $nav['slug'] == 'games' ) { $position = 10; } $sub_navs[$key]['position'] = $position; } return $sub_navs; } add_filter( 'geodir_buddypress_subnav_favorites', '_gd_snippet_bp_favorites_subnav', 10, 1 ); function _gd_snippet_bp_favorites_default_nav( $nav ) { $nav['default_subnav_slug'] = 'games'; // Set first tab slug here to set as s default return $nav; } add_filter( 'geodir_buddypress_nav_favorites', '_gd_snippet_bp_favorites_default_nav', 10, 1 );Kiran
Hello Lee,
Try this snippet to display single/default image on detail page.
// Display single post image on detail page. function _gd_snippet_detail_featured_image( $post ) { if ( ! empty( $post ) ) { $post_images = geodir_get_images( $post->ID, 'thumbnail', true, true, 1 ); if ( ! empty( $post_images ) ) { $image = $post_images[0]; ?> <div class="geodir_flex-container" style="text-align:center"> <img src="<?php echo $image->src; ?>" alt="<?php echo esc_attr( $image->title ); ?>" title="<?php echo esc_attr( $image->title ); ?>" style="max-height:400px;margin:0 auto;" /> </div> <?php } } } function _gd_snippet_detail_single_image_slider() { remove_action( 'geodir_details_main_content', 'geodir_action_details_slider', 30 ); add_action( 'geodir_details_main_content', '_gd_snippet_detail_featured_image', 30, 1 ); } add_action( 'plugins_loaded', '_gd_snippet_detail_single_image_slider' );Kiran
This reply has been marked as private.Hi Adil,
Neighbourhoods are currently not available in Yoast xml sitemap.
Currently we are working on GeoDirectory v2 so this feature will be available in Location Manager v2.
Please see https://wpgeodirectory.com/support/forum/geodirectory-core-plugin-forum/v2-beta/Kiran
Hi Silvia,
This has been fixed and fix will be available in next release.
You can find patch ate here: https://github.com/GeoDirectory/geodirectory/pull/473/commits/218a701bb2fb6198d5a0c8f08efe034249a073fa
Thanks,
KiranHi Rafaela,
Please provide us admin credentials so we can take a look.
Kiran
This reply has been marked as private.This reply has been marked as private.September 5, 2018 at 9:49 am in reply to: After import there is same country with 2 translations #445407This reply has been marked as private.September 5, 2018 at 6:24 am in reply to: After import there is same country with 2 translations #445380Hello Marc,
But I don’t see 99% of these categories and tags in my wordpress admin board.
Many data in this table is from GD demo import as well. (like morimoto).
can I delete all these data in wp_terms that I dont need?You can delete terms(categories/tags) from admin, but before deleting make sure terms are not linked to any post/listing.
In categories/tags listings it shows posts counts linked to that term, so you can delete terms with 0(zero) count.The original slug is still “schweiz” (the translation).
This is because of country slug translation. I have updated original slug back to “switzerland”.
And when I create a new city, this new city will not be added to GD cities list.
Please check i have added one city “Signau, Bern, Switzerland”.
Let us know.
Thanks,
Kiran -
AuthorPosts