Forum Replies Created

Viewing 4 Topics - 1 through 4 (of 4 total)
Author Posts
Manuel Manuel

Hi Erica,

seems that the footer menu render the page menu if no menu is assigned to that position.
3 solutions:

1) If you don’t want nothing in that position you can hide it from css:
.footer-gateway > div { display:none; }

2) Change the file footer.php of your theme (hope you use a child theme).
find the footer menu and change it form:
[php]
wp_nav_menu( array(
‘theme_location’ => ‘footer’,
‘depth’ => 1,
‘container_class’ => ‘footer-menu-container clearfix’,
‘menu_class’ => ‘menu list-inline pull-right’,
) );

to

if ( has_nav_menu( ‘footer’ ) ) {
wp_nav_menu( array(
‘theme_location’ => ‘footer’,
‘depth’ => 1,
‘container_class’ => ‘footer-menu-container clearfix’,
‘menu_class’ => ‘menu list-inline pull-right’
) );
}
[/php]
3) Assign a menu to that position from admin

October 8, 2014 at 6:57 pm in reply to: Dokan and User/member plugins 28092
Manuel Manuel

Hi,

I use dokan subscription add-ons and had the same problem.

I found 2 solutions:
1) Create a new page subscription, you can insert the block with subscriptions to be purchased with the shortcode [dps_product_pack]

2) Create a “start subscription” page with the description of your service and a signup form for the role “seller”.
After registration, the new user can access the dashboard and the subscription page

I chose 2) because I prefer that subscriptions prices are only shown after registration

October 7, 2014 at 10:47 pm in reply to: Dokan adaptive payments (Parallel) BIG problem 28059
Manuel Manuel

Hi,

same problem here but the error occurs with any seller % (using sandbox). Any idea ??

– dokan plugin + theme last version
– adaptive payments and subscription dokan addons (price per product disabled due to other errors…)

Basically I’ve the same target, would like to realize a multivendor shop with subscription and adaptive payments.
I don’t want to charge fee in orders, just pay through subscriptions.

September 30, 2014 at 6:48 pm in reply to: Dokan Subscription addon – Page not found.. 27805
Manuel Manuel

Hello,

same problem here.
Fresh WP 4.0, dokan plugin+theme, dokan subscription addon.
Can see Product Subscription page.

Thanks.
Luca

Viewing 4 Topics - 1 through 4 (of 4 total)