Min and Max Quantity for WooCommerce plugin allow you to set up limits for the cost of products in orders and in groups and limits for the number of products, product variations, products in orders, and products in the group. You can add products and product variations to the group. An infinite amount of groups.… Continue reading How to limit min and max quantity for WooCommerce
Category: Plugins
How to create form for uploading external/affiliate type WooCommerce product
The process for creating a form to upload external/affiliate type product given here. 1) Add a hidden type field with meta key & value to your product form. The meta value should be external. Refer Screenshot: http://prntscr.com/egkcws 2) Add an URL & a text type custom field, insert _product_url & _button_text meta key for them… Continue reading How to create form for uploading external/affiliate type WooCommerce product
How to show all the posts submitted by all users in a page
To show all the posts submitted by all users in a page, follow the instructions given here. 1) Create a new page, insert [wpuf_dashboard] shortcode in that page & Publish it. Refer Screenshot: http://prntscr.com/egiu0w 2) Add the following code inside the theme’s functions.php file. Note: This is a Developer level doc. If you are unfamiliar… Continue reading How to show all the posts submitted by all users in a page
How to add user id as product SKU with WP User Frontend product form.
You can follow the instructions given below to insert user id as product SKU. 1) Add a hidden field to the product form you created & insert _sku meta key to that field. Refer Screenshot: http://prntscr.com/ef1e0f 2) Now, Add the following code inside the theme’s functions.php file. Note: This is a Developer… Continue reading How to add user id as product SKU with WP User Frontend product form.
How to create unique SKU with WP User Frontend custom field.
The unique SKU of the products is not being set when the products are created. To add unique SKU with products, then follow the instructions given below. 1) Add a custom text field with _sku to the product form. Screenshot: http://prntscr.com/eb2ext 2) Add the following code inside the theme’s functions.php file. Note: This is a… Continue reading How to create unique SKU with WP User Frontend custom field.
How to update WooCommerce sale price dates meta using WPUF date fields
If you are having an issue with updating the schedule dates of WooCommerce product using WPUF fields, you can follow the given instructions to solve this issue. 1) Add two date type field to WPUF form that you created to allow users for uploading products. 2) Insert _sale_price_dates_from & _sale_price_dates_to meta keys accordingly for these… Continue reading How to update WooCommerce sale price dates meta using WPUF date fields
How to charge different amount for different post type using WP User Frontend subscription pack
Here is the guideline for charging a different amount for different post types. 1) Navigate to wp-admin > User Frontend > Subscription. Click on Add New Subscription button to add new subscription. 2) Now, You can see the fields to enter the number for each post. 3) If you want to allow only one post… Continue reading How to charge different amount for different post type using WP User Frontend subscription pack
How can redirect to the “seller dashboard” instead of seller setup wizard
To define the seller dashboard page instead of setup wizard after registering as a new seller, you can add the following code to your theme’s functions.php file. Note: This is a Developer level doc. If you are unfamiliar with code/templates and resolving potential conflicts, contact me for assistance. // define the seller dashboard page instead… Continue reading How can redirect to the “seller dashboard” instead of seller setup wizard
How to display quantity input fields next to add to cart buttons.
To display quantity input fields for simple products within your shop archive pages, you can add the following code to your theme’s functions.php file. Note: This is a Developer level doc. If you are unfamiliar with code/templates and resolving potential conflicts, contact me for assistance. <!–?php /** * Code should be placed in your theme… Continue reading How to display quantity input fields next to add to cart buttons.