themegurututorials
Forum Replies Created
-
Excellent! I’m glad we were able to get that sorted out for you.
Hello @alexdex,
If you are using the shortcode to output custom fields data then the URL will not clickable, we are going to fix this issue, hopefully, the fix will release in the next update of this plugin.
In the meantime, you can show the custom fields data by enabling the Custom fields in post option instead of using the shortcode. Navigate to wp-admin > User Frontend < Settings > General Options, now enable that option.
Thank you
@utronamore, First of all, showing the edit link under the post is depend on theme functionality. That means the theme should have this functionality.
Also, if the user role is Subscriber then the edit link will not show, but the other user roles (e.g. Author/Editor/Administrator etc) can see the edit link to the post. It’s the default behavior of WordPress.
Please check the Roles and Capabilities of WordPress.
Thanks for your understanding.
Hello @utronamore, Showing edit link is depend on the theme functionality. Also, the users who have Subscriber role cannot see the edit link, but it will be available for other user roles (e.g. Author/Editor/Administrator etc0.
However, if you enable the Users can edit post option from the wp-admin > User Frontend > Settings > Dashboard settings then all the users can see the edit on the frontend dashboard page where the [wpuf_dashboard post_type=”post_type_here”] shortcode is located.
Refer Screenshot:
https://prntscr.com/ewohsvThank you
- This reply was modified 7 years, 7 months ago by themegurututorials.
Hello @im10er, Please navigate to wp-admin -> User Frontend -> Settings -> Login/Registration. Now, select the page which contains [wpuf-login] shortcode for Login Page option.
Refer Screenshot:
https://prntscr.com/evcyuzIt will generate login form for the users who are not logged in. Please check & let me know if you have any other issue.
Thank you
- This reply was modified 7 years, 7 months ago by themegurututorials.
@duchu, Click on Pre Sales tab, you can select the plugin then & submit a ticket.
Refer Screenshot:
https://prntscr.com/eukqsyThank you
@lamedo you can use the following code inside the theme’s functions.php file. The posts submitted by admin will be published directly.
/** * Set post status published when the user role is admin */ function wpuf_update_admin_post_status( $post_id ) { if ( current_user_can('administrator') ) { $current_post = array( 'ID' => $post_id, 'post_status' => 'publish', ); wp_update_post( $current_post ); } } add_action( 'wpuf_add_post_after_insert', 'wpuf_update_admin_post_status' ); add_action( 'wpuf_edit_post_after_update', 'wpuf_update_admin_post_status' );
Thank you
Post template is for creating a blog post (default post type) & WooCommerce Product form template is for creating products. When user submit a post, it will reflect the site blog articles. On the contrary, product will show on shop page along with other products area when user upload a new product.
To make the store name clickable & remove the seller’s name, follow the instructions given below.
1) Create a new directory named “dokan” inside the activated theme
your-theme > dokan >
2) Create another directory named “global” inside “dokan” directory
your-theme > dokan > global
3) Add the following code by creating a new file named “product-tab.php”
<?php /** * Dokan Seller Single product tab Template * * @since 2.4 * * @package dokan */ ?> <h2><?php _e( 'Seller Information', 'dokan' ); ?></h2> <ul class="list-unstyled"> <?php if ( !empty( $store_info['store_name'] ) ) { ?> <li class="store-name"> <span><?php _e( 'Store Name:', 'dokan' ); ?></span> <span class="details"> <?php printf( '<a href="%s">%s</a>', dokan_get_store_url( $author->ID ), $store_info['store_name'] ); ?> </span> </li> <?php } ?> <?php if ( !empty( $store_info['address'] ) ) { ?> <li class="store-address"> <span><b><?php _e( 'Address:', 'dokan' ); ?></b></span> <span class="details"> <?php echo dokan_get_seller_address( $author->ID ) ?> </span> </li> <?php } ?> <li class="clearfix"> <?php dokan_get_readable_seller_rating( $author->ID ); ?> </li> </ul>
Please check the product tab now, you can see the store name with the clickable link.
Thank you
You need to customize the dokan-invoice.php file of Dokan Invoice plugin. To get the value for the store phone you need to add the ‘phone’ key in $store_info variable.
$store_info['phone']
- This reply was modified 8 years, 1 month ago by themegurututorials.
- This reply was modified 8 years, 1 month ago by themegurututorials.
Can you switch to a default theme for checking purpose? Let me know after checking.
Make sure $store_info[‘billing_city’] return any data. Debug it in your code and check it first.
Have you updated the plugin? The issue has been fixed in last update.
Check the plugin or theme conflict. Also, check the console of your browser it there is any error while adding photo.
There is no option to make the product photo upload as regular upload, it you want to do so nees customization of the plugin functionality.