Kiran
Forum Replies Created
-
AuthorPosts
-
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,
KiranHi 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,
KiranHi 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,
KiranHi 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
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,
KiranNovember 15, 2017 at 4:50 am in reply to: Changing the Register link in the My Account dropdown #405289Hi 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,
KiranSorry 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,
KiranHi 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,
KiranHi 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,
KiranHi 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 overdueRecurring 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,
KiranNovember 13, 2017 at 11:03 am in reply to: Detail View Sidebar gets wrapped to bottom of page #405058Hello,
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,
KiranHi,
Clear the listing session by adding following lines at the start and after place created.
global $gd_session; $gd_session->un_set('listing');Kiran
November 13, 2017 at 10:41 am in reply to: Detail View Sidebar gets wrapped to bottom of page #405052Hi 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,
KiranHello,
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,
KiranHi Neil,
Please try after clearing your browser cache.
Let us know.
Thanks,
Kiran -
AuthorPosts