themegurututorials
Forum Replies Created
-
I have checked on my side. It works fine. Please make sure that you have added the code inside the activated theme’s style.css file.
Use the following CSS inside the theme’s style.css file. I think using CSS is the better option than overriding the files.
.dokan-panel-default.dokan-profile-completeness{
display : none;
}Dokan allows the vendors to upload videos as downloadable product and not possible to view videos.
Thank you for recognizing our efforts.
Yes, the user can renew the posts once expired. You need to create the subscription pack for the user ( it can be free or paid ) to allow their post on your site. The user will get the notification before expiring their validity or they will automatically renew if the recurring payment option enabled for the subscription pack.
Screenshot:
https://www.awesomescreenshot.com/image/1487840/2128decbd203881a6daa7cbe103b0d0fDo you want to create seller or customer as an admin? If yes, then you can do it by adding new user where the user role should be seller or customer and check user notification to send the user details to their email.
Screenshot:
https://www.awesomescreenshot.com/image/1487713/df8292a1fc707c402431d78058f2ad21Dokan requires the system URL to be configured in a specific format in order to the frontend templating system to work.
Navigate to wp-admin → Settings → Permalinks
Select “Post Name” for common posts
Select “Custom Base” for product permalinks and write /product on the box.
Click Save.I will be happy to inform our developer about that. Also, if you are unfamiliar with code/templates, contact a developer.
Please check the theme and plugin conflict issue. Let me know if you are unable to solve the issue.
You need some integration work. Please check the details on TinyMCE site.
Please check the console. Let me know if you see any error there. Also, check the plugin or theme conflict.
You can remove the dots by using the following CSS
ul.wpuf-form li{ list-style: none !important; }
There is no option to allow users to crop feature images. Currently the ratio is 1200×525
It seems the problem is happening because of the keyboard you are using. Please insert number into the field by using another keyboard. I can insert the number on my side successfully in the phone field that you have created.
If you have an image or file type custom field, then you can get the URL like this code below.
$files = get_post_meta( $post->ID, 'meta_key_name' ); if ( $files ) { foreach ( $files as $attachment_id ) { $file_url = wp_get_attachment_url( $attachment_id ); echo $file_url; } }