Kiran

Forum Replies Created

Viewing 15 posts - 676 through 690 (of 6,022 total)
  • Author
    Posts

  • Kiran
    Moderator
    Post count: 7069

    Hello @rainbowwebservices,

    I checked and it correctly received cancel subscription notification at website end from PayPal. It did not managed a listing status on cancellation of subscription.

    I want to do a test with sandbox account. Please provide a staging site or allow us to enable sandbox mode on your site to test and to check what causing issue in handling listing downgrade process on cancellation of subscription.

    Thanks for your patience.

    Kiran

    in reply to: Problem with WPML Multilanguage (III) #526639

    Kiran
    Moderator
    Post count: 7069

    Hi jotomas,

    WPML language menu switcher issue has been fixed.

    For issue on page WP Dashboard – Appearance – Menus – Add menu items
    – Make sure all strings are translated
    – It also depends on admin viewing language under profile page /wp-admin/profile.php

    Let us know.

    Regards,
    Kiran

    in reply to: Category Archive page is not showing all listings #526330

    Kiran
    Moderator
    Post count: 7069

    Hello,

    Issue has been fixed and it will be in next release.

    Provide us FTP credentials to apply patch on your site to check.

    Kiran

    in reply to: Problem with WPML Multilanguage (III) #526329

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Wrong GD Archive header #526319

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Wrong GD Archive header #526309

    Kiran
    Moderator
    Post count: 7069

    Hi Alexander,

    Finally FTP credentials are worked for me. I have done some debugging and found that source language for the UK archive page is in EN language, but on your site EN language is hidden. So it not detecting original page id for the UK language and this causing translation of page title.

    I have fixed issue to detect page id from hidden languages as well.

    Please check and let us know.

    Thanks for your patience.

    Regards,
    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hi tinamama,

    Yes, currently it sends notification only when listing is recurring with last subscription cycle and going to expire.

    We have opened task to implement sending notification to users informing them about next renewal date for active subscriptions.

    This feature will be implemented in future based on tasks priority.

    Thanks,
    Kiran

    in reply to: Problem with WPML Multilanguage (III) #526283

    Kiran
    Moderator
    Post count: 7069

    Hi jotomas,

    Please provide us FTP credentials to check what causing this issue.

    Kiran

    in reply to: Search for opening hours #526280

    Kiran
    Moderator
    Post count: 7069

    Hi Michael,

    Try following PHP snippet to set Business Hours open as default.

    
    
    /**
     * Set Business Hours to open as default.
     */
    function gd_snippet_200118_business_hours_set_default( $html, $cf ) {
    	global $gd_post;
    
    	if ( ! empty( $html ) && ! empty( $cf ) && ! empty( $gd_post ) && ! empty( $gd_post->post_status ) && $gd_post->post_status == 'auto-draft' ) {
    		$html = str_replace( '});</script>', '$("input#' . $cf['htmlvar_name'] . '_f_active_1").prop("checked", true).trigger("change");});</script>', $html );
    	}
    
    	return $html;
    }
    add_filter( 'geodir_custom_field_input_business_hours', 'gd_snippet_200118_business_hours_set_default', 20, 2 );

    Regards,
    Kiran

    in reply to: Wrong GD Archive header #526272

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Preview Listing – Not Found #526142

    Kiran
    Moderator
    Post count: 7069

    Glad to hear that it worked 🙂

    Kiran

    in reply to: Preview Listing – Not Found #526117

    Kiran
    Moderator
    Post count: 7069

    Hi Dale,

    Issue has been fixed and it will be in next release.

    Provide us FTP credentials to apply patch to check on your site.
    or
    Apply this patch from your side: https://github.com/AyeCode/geodirectory/commit/4c556c6eece5589057e7ff5faa47904ad567bfd5

    Let us know.

    Thanks,
    Kiran

    in reply to: Wrong GD Archive header #526116

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Search for opening hours #526103

    Kiran
    Moderator
    Post count: 7069

    Hi Michael,

    How can i change the preselected days and opening hours?

    Try following PHP snippet to use custom default values for opening hours.

    
    
    /**
     * Custom default values for opening hours.
     */
    function gd_snippet_200127_default_opening_hours( $default_hours = array() ) {
    	$default_hours = array();
    	// Monday
    	$default_hours[ 'Mo' ] = array( 
    		array(
    			'opens' => '09:00',
    			'closes' => '17:00'
    		)
    	);
    	// Tuesday
    	$default_hours[ 'Tu' ] = array( 
    		array(
    			'opens' => '09:00',
    			'closes' => '17:00'
    		)
    	);
    	// Wednesday
    	$default_hours[ 'We' ] = array( 
    		array(
    			'opens' => '09:00',
    			'closes' => '17:00'
    		)
    	);
    	// Thursday
    	$default_hours[ 'Th' ] = array( 
    		array(
    			'opens' => '09:00',
    			'closes' => '17:00'
    		)
    	);
    	// Friday
    	$default_hours[ 'Fr' ] = array( 
    		array(
    			'opens' => '09:00',
    			'closes' => '17:00'
    		)
    	);
    	// Saturday
    	/*$default_hours[ 'Sa' ] = array( 
    		array(
    			'opens' => '09:00',
    			'closes' => '17:00'
    		)
    	);
    	// Sunday
    	$default_hours[ 'Su' ] = array( 
    		array(
    			'opens' => '09:00',
    			'closes' => '17:00'
    		)
    	);*/
    
    	return $default_hours;
    }
    add_filter( 'geodir_bh_default_values', 'gd_snippet_200127_default_opening_hours', 20, 1 );

    More info about how to use PHP snippet at here https://wpgeodirectory.com/docs-v2/faq/customizing/#snippets

    is it possible to remove the option “open 24 hours”?

    You can remove “open 24 hours” option by using css.
    Try following css:

    
    
    .gd-bh-items .gd-bh-24hours {
    	display: none;
    }

    Regards,
    Kiran

    in reply to: Ajax not working? #525991

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
Viewing 15 posts - 676 through 690 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount