directory
Forum Replies Created
-
AuthorPosts
-
September 2, 2014 at 8:48 am in reply to: Stripe payment gateway for GD – BETA. Pls download and test #14017
Got it. I will wait for the official release then. BTW, I asked because the existing Paypal gateway limits free trial period to a maximum of 90 days.
Thanks again!
This reply has been marked as private.September 2, 2014 at 8:34 am in reply to: Stripe payment gateway for GD – BETA. Pls download and test #14013Great! Thanks, Daniele! Is it stable for a live site now? Where can I find instructions to properly install it?
September 2, 2014 at 2:54 am in reply to: Stripe payment gateway for GD – BETA. Pls download and test #14000Thank you, Daniele. Does it include free trial period without restrictions to the number of trial days?
Thanks, John. I haven’t used Genesis yet and is now inclined to try it. 🙂
I’m curious why Genesis instead of the GDF and child themes provided by the GD developers themselves.
Hi Brian,
Blog posts tags seems to be working on my site while GD is active.
Not yet. I am still waiting to have voting credits. I discovered it after I used up all my votes but I reported it on some threads.
Thank you, Paolo. Are there any plans to extend the Paypal free trial period beyond 90 days? If not, will the upcoming Stripe gateway allow beyond 90 days?
It seems to be working now. Thank you.
May I ask what changes were implemented?
Hi Paolo,
I am still getting the notice and version after updating still shows 1.0.4.
This reply has been marked as private.Please allow me to share what I did on my site using GDF and the first child theme provided by the GD developers. No guarantees it will work on yours but I hope this helps.
In theme’s functions.php:
/*
Add My Account Menu Dropdown
*/
function add_my_account_menu($items, $args){$location = $args->theme_location;
$geodir_theme_location = get_option(‘geodir_theme_location_nav’);if ( has_nav_menu( $location )==’1′ && is_array($geodir_theme_location) && in_array($location,$geodir_theme_location) ) {
$items .= ‘<li id=”custom-my-account” class=”menu-item”>
My Account
‘;
}
return $items;
}
add_filter(‘wp_nav_menu_items’,’add_my_account_menu’, 110, 2);Then in GDF Options – JS Code:
jQuery(document).ready(function(){
jQuery(“#custom-my-account”).append(“<ul class=’sub-menu’><li class=’menu-item’></item>“);
jQuery(“#geodir_loginbox-6”).appendTo(“#custom-my-account .menu-item”).show();
});What the code does is it moves the My Account loginbox from footer to the menu, so:
1) you have to add first the “GD Loginbox” widget to footer (GD Footer 4 in our case).
2) make sure that the ID (#geodir_loginbox-6)of the widget is correct.
3) you should create/modify its CSS too to match your theme. I put mine in GD – Quick Code – CSS Code.See attached screenshot.
Thank you, purpleedge. I will try it and explore other options as well. I will share it if I end up having something better.:)
Thank you, John.
For some reason, the marker bubbles on my site are too small.
-
AuthorPosts