Kiran

Forum Replies Created

Viewing 15 posts - 3,706 through 3,720 (of 6,022 total)
  • Author
    Posts

  • Kiran
    Moderator
    Post count: 7069

    Hi Scott,

    Things you asking is not possible without customization. 🙂

    Kiran

    in reply to: Email format changed #446235

    Kiran
    Moderator
    Post count: 7069

    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,
    Kiran

    in reply to: Description Text Editor Issue #446224

    Kiran
    Moderator
    Post count: 7069

    Hi 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

    in reply to: Issue saving reviews and start ratings #446223

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Multi Currency Woocommerce Plugin #446150

    Kiran
    Moderator
    Post count: 7069

    Hello Sacha,

    Invoicing plugin do not have any integration with WooCommerce. Invoicing plugin don’t supports multi-currency at same time.

    Kiran

    in reply to: Unfavorite all function and hide buddypress tabs #446149

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: Main Listing Images #446107

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: Issue saving reviews and start ratings #446106

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Sitemaps for neighbourhoods – yoast #445973

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: Listing post tags issue #445972

    Kiran
    Moderator
    Post count: 7069

    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,
    Kiran

    in reply to: Email format changed #445729

    Kiran
    Moderator
    Post count: 7069

    Hi Rafaela,

    Please provide us admin credentials so we can take a look.

    Kiran

    in reply to: Paypal IPN Invaid for listing ID: # #445547

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Paypal IPN Invaid for listing ID: # #445422

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: After import there is same country with 2 translations #445407

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: After import there is same country with 2 translations #445380

    Kiran
    Moderator
    Post count: 7069

    Hello 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

Viewing 15 posts - 3,706 through 3,720 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount