Kiran

Forum Replies Created

Viewing 15 posts - 4,516 through 4,530 (of 6,022 total)
  • Author
    Posts
  • in reply to: Support for Genesis 1280 #405443

    Kiran
    Moderator
    Post count: 7069

    Hi Julian,

    Add following code snippet in your child theme functions.php file.

    
    
    function _gd_custom_remove_genesis_geo_1280_hook() {
        remove_action( 'genesis_after_header', 'geo1280_search_bar_fix', 4 );
        add_action( 'genesis_after_header', 'geo1280_search_bar', 4 ); // Adjust ordering of filter
    }
    add_action( 'after_setup_theme', '_gd_custom_remove_genesis_geo_1280_hook', 12 );

    Now you can adjust “before” and “after” elements in geo1280_search_bar() function in same functions.php file.

    Thanks,
    Kiran

    in reply to: Alive days double at renewal #405360

    Kiran
    Moderator
    Post count: 7069

    Hi Mark,

    This happened when tried to renew active listing with free package. Normally active listing should not be renewed with free package, because it does not make sense to provide free renew.

    We are adding new option to enable/disable renew for free package. It will be available in next release.
    Let us know if you want me to update patch on your site.

    Thanks,
    Kiran

    in reply to: Support for Genesis 1280 #405359

    Kiran
    Moderator
    Post count: 7069

    Hi Julian,

    Please try this hook to add content before or after widget area. http://genesisdictionary.com/before-widget-area/

    Let us know how it goes.

    Thanks,
    Kiran

    in reply to: Review Rating Manager 1.4.0 #405321

    Kiran
    Moderator
    Post count: 7069

    Hi Neil,

    Thanks for letting us know. 🙂

    Normally WordPress comment submitted without AJAX request and in your case the comment submitting via AJAX request. You have to do something in the code that submits the comment via AJAX. Make comment field empty after comment submitted successfully via AJAX.

    Let us know.

    Kiran

    in reply to: Support for Genesis 1280 #405299

    Kiran
    Moderator
    Post count: 7069

    Hi Julian,

    The current function geo1280_search_bar from child theme is overridden by the GeoDirectory plugin. The GeoDirectory plugin overrides this search bar area when you are using Genesis + GeoDirectory + Geo 1280 Theme.

    See the code here https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/compatibility/Genesis.php#L331

    Let me know what you want to achieve, so we can assist you.

    Thanks,
    Kiran

    in reply to: Changing the Register link in the My Account dropdown #405289

    Kiran
    Moderator
    Post count: 7069

    Hi Dave,

    Please check now after clearing your browser cache.

    I have updated priority order to 100 and cleared GD Booster cache. Now it working fine for me.

    
    
    function _my_geodir_login_url( $login_url, $args, $gd_page_id ) {
        if ( !empty( $args['signup'] ) ) {
            // Change the url to whatever you want.
            $login_url = 'https://MYSITE.COM/wp-login.php?action=register';
        }
        return $login_url;
    }
    add_filter( 'geodir_login_url', '_my_geodir_login_url', 100, 3 );

    Let us know.

    Thanks,
    Kiran

    in reply to: Programaticly Add An Event #405153

    Kiran
    Moderator
    Post count: 7069

    Sorry Chris.
    Now we can’t help you more for your customization. This is beyond support.

    You have to hire a developer for more help.

    Thanks,
    Kiran

    in reply to: Alive days double at renewal #405082

    Kiran
    Moderator
    Post count: 7069

    Hi Mark,

    I have applied patch to fix the problem, can you check and confirm from your side it is working or not?

    Let us know.

    Thanks,
    Kiran

    in reply to: Alive days double at renewal #405071

    Kiran
    Moderator
    Post count: 7069

    Hi Mark,

    Sorry, i forgot this topic.
    I need to know when you renewed the listing? I mean how many days left when you renewed the listing? Let me know how steps, so i can replicate it from my side.

    Thanks,
    Kiran

    in reply to: Supreme Directory Issues #405062

    Kiran
    Moderator
    Post count: 7069

    Hi Scott,

    I think there is a misunderstanding here.

    I have done one test:
    – Created listing with Basic package for 30 days
    – Set manually expire date to 2017-11-10
    – Run GD Tools > Expire check
    – My listing is published and it has still same package and 3 days overdue

    Recurring package does not expires/downgrades until it gets the subscription cancel or subscription delete IPN request from gateway (PayPal or Stripe etc). This is applied to recurring packages only to fix delays in IPN request from gateway on the subscription payment received.

    If i do same above steps for assuming Basic package is non-recurring then in last step the listing expired and downgraded to Free package.

    Let us know.

    Thanks,
    Kiran

    in reply to: Detail View Sidebar gets wrapped to bottom of page #405058

    Kiran
    Moderator
    Post count: 7069

    Hello,

    Thanks for letting us know.

    You can find patch here: https://github.com/GeoDirectory/geodirectory/pull/451/commits/721ebe91ef87f6f7a182d00e97ea16ac5a70bf91#diff-1e1624131bf2a50f2998224891d8db11R25

    In file \geodirectory\geodirectory-functions\compatibility\Divi.php update line no. 25-27 from patch.

    Thanks,
    Kiran

    in reply to: Programaticly Add An Event #405053

    Kiran
    Moderator
    Post count: 7069

    Hi,

    Clear the listing session by adding following lines at the start and after place created.

    
    
    global $gd_session;
    $gd_session->un_set('listing');

    Kiran

    in reply to: Detail View Sidebar gets wrapped to bottom of page #405052

    Kiran
    Moderator
    Post count: 7069

    Hi Pedstone,

    The problem has been fixed. In recent version v3.0.87 Divi theme has updated the function that apply the sidebar class to detail page.
    The fix will be available in next release, i have applied patch on your site too fix it right now.

    Please check and let us know.

    Thanks,
    Kiran

    in reply to: Renewal Emails #405042

    Kiran
    Moderator
    Post count: 7069

    Hello,

    As currently it is not possible via hooks or settings, you have to do some core code customization.
    If you have knowledge about PHP coding and WordPress then you can write code to disable renew notification for particular post type. You can write code in file plugins\geodir_payment_manager\geodir_payment_functions.php around line no 1552.
    Here you will find following lines which sending renew notifications.

    
    
    geodir_payment_clientEmail($post_id, $auther_id, 'payment_renew');
    geodir_payment_adminEmail($post_id, $auther_id, 'payment_renew');

    Note: We do not recommend the core file customization.

    Thanks,
    Kiran

    in reply to: Review Rating Manager 1.4.0 #405041

    Kiran
    Moderator
    Post count: 7069

    Hi Neil,

    Please try after clearing your browser cache.

    Let us know.

    Thanks,
    Kiran

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