Viewing 15 Topics - 16 through 30 (of 37 total)
Author Posts
August 21, 2015 at 6:27 am 68374
Scott Scott

Actually, When I sign up as a seller it has the terms&conditions checkbox but not when I register as a customer. I was also logged in as a customer and went to My Account page and clicked on Become a Seller button at the bottom of page but there was no terms&condition checkbox when becoming a seller from there.

I want all members, both sellers and customers to have to agree to terms&conditions when signing up.

Thanks

August 21, 2015 at 3:33 pm 68398
Nayem Nayem

Hello,

To insert terms and condition in the migration page you have to insert that code also in the seller-migration page.

Thanks.

August 22, 2015 at 8:54 am 68499
Scott Scott

I added the terms&conditions code to the seller-migration page but it added the terms&conditions check box on the same sign up page where the the terms&conditions checkbox already is so now I have 2 check boxes on signup. I checked the become a seller option from the customer’s My Account page but the terms&conditions are not displayed on the sign up page from there. How should I proceed so I can add the terms&conditions for customers and sellers throughout the site?

August 22, 2015 at 12:53 pm 68553
Nayem Nayem

Hello,

When you will add terms and condition filed in the registration form it should also show in the become a seller form. Please make sure that you have putted those codes correctly.

Thanks.

August 26, 2015 at 1:54 am 69056
Scott Scott

Hello, could you give me a path to add the terms&conditions to the registration field? And can you also give me the path to locate the seller-migration page in the Dokan files on my server?

Thanks

August 26, 2015 at 10:52 am 69080
Nayem Nayem

Hello,

Please open dokan/templates/global/seller-registration.php file. In this file you have to add those codes-

<p class="form-row form-group form-row-wide">
<label><input name="terms" required="" type="checkbox" value="checked" />
I agree to the <a href="#">terms and conditions</a><span class="required">*</span></label>
</p>

Seller migration page-

You have to open dokan/templates/global/update-account.php file.

Thanks.

August 30, 2015 at 6:40 am 69614
Scott Scott

Hello,

I’m using a dokan-child functions.php file so I won’t lose these added codes when Dokan updates, I’ve added this code you gave me to the child functions.php:

However, I’m not seeing the terms and conditions. What should I do when using a dokan-child theme to customize?

I’d also like to add two registration fields for different type users, could you give me instructions to create & modify different user registration fields?

Thanks

August 30, 2015 at 10:52 am 69625
Nayem Nayem

Hello,

If you have inserted only those line in your child theme function then it will not work. You have to override the entire registration form through child theme function. There is a filteradd_action( 'register_form', 'dokan_seller_reg_form_fields' ) in registration form you have to use that to override from child theme.

If you are looking for changing or modifying your registration form then you have to hire a developer because we do not provide support for customization.

Thanks.

September 1, 2015 at 7:33 am 69865
Scott Scott

Hello Nayem,

I don’t understand your instruction for the use of the filter. I added the filter you recommended; add_action( ‘register_form’, ‘dokan_seller_reg_form_fields’ ) to the functions.php so I wasn’t making changes directly to the Dokan theme before the code you gave me to add the terms and conditions to the seller sign up on the site;

But after adding these to the functions.php my site wouldn’t function (white screen), am I adding these correctly?
Thanks

September 1, 2015 at 12:24 pm 69953
Nayem Nayem

Add those codes in your child theme function.php file-

add_action( 'dokan_seller_registration_field_after','terms_condition' ); 

function terms_condition(){
?>
<p class="form-row form-group form-row-wide">
<label><input name="terms" required="" type="checkbox" value="checked" />
I agree to the <a href="#">terms and conditions</a><span class="required">*</span></label>
</p>

<?php
}
September 16, 2015 at 2:22 am 71966
Scott Scott

Hello Nayem,

I added this code to the functions.php file and I got a Corrupt file error that brought the white screen (site crashed). So I removed the Dokan theme and plugin from wp-admin and downloaded the latest versions from your site
dokan-plugin-2.3.zip and dokan-plugin-v2.4.5.zip (I believe this is theme zip file). I tried to add new theme, dokan-plugin.v2.4.5.zip to my wordpress installation but I’m getting this Error when uploading: The package could not be installed. The theme is missing the style.css stylesheet.

Theme install failed.

If this is the new theme zip file then it’s missing the style.css and I’m wondering if Dokan has a conflict with the plugin WP Spamshield?

September 16, 2015 at 11:09 am 71987
Nayem Nayem

Hello,

Please delete your previous installation of Dokan plugin and theme. Then upload and install the latest plugin and after installing the plugin, you have to install the theme. It should not show any error. You can disable all plugin before installing the plugin and theme.

September 17, 2015 at 1:41 am 72128
Scott Scott

I disabled all the plugins and uploaded the new Dokan plugin and then uploaded the new theme but still received this error message: The package could not be installed. The theme is missing the style.css stylesheet.

Theme install failed.

September 17, 2015 at 11:02 am 72150
Nayem Nayem

Please provide your login and FTP details by using this form: http://wedevs.com/provide-login-details/. I will install the theme and plugin. If there is any custom changes in the theme or plugin then you will loose everything.

Thank you 🙂

September 18, 2015 at 3:42 am 72342
Scott Scott

I entered the required login info in all fields and when I click submit, I keep getting the “Please enter URL” in the website name field where I’ve already entered http://www.artlov.com. What should I do now?
I hope that the updated versions of the plugin and terms will add the terms and conditions to both the signup field and Become a Seller field.

Viewing 15 Topics - 16 through 30 (of 37 total)