Woocommerce Pricing Rules & Dynamic Pricing for Free

Поділитися
Вставка
  • Опубліковано 13 жов 2024

КОМЕНТАРІ • 154

  • @pantonio70
    @pantonio70 3 роки тому +2

    There are many videos of this plugin, but you are the only one I found that explained all the possible options. thanks!

  • @alperenozkan
    @alperenozkan 3 роки тому +4

    I can also suggest creating new roles with the User Role Editor plugin via copying the capabilities of customers. Thus, we can create some specific customer roles like Gold, Silver, and Platinium and create specific discounts for these customers. Anyway, thank you very much for this helpful recording and I am subscribed and will be waiting for new videos regularly.

  • @Rena_Phil
    @Rena_Phil Рік тому

    Thank you so much for the detailed and to the point video. 👍

  • @pixelgap
    @pixelgap 2 роки тому

    A lot of features in the free version. Amazing. Thank you

  • @andrenexo9366
    @andrenexo9366 2 роки тому

    Thanks for sharing your knowledge and your tip. A really super useful plugin for us developers. I'm from Brazil, thank you very much.

  • @chhandanachakravarthy9533
    @chhandanachakravarthy9533 3 роки тому +2

    Hi there! Great video! This is perfect for someone without a lot of coding knowledge. However, I’d like to know how to set up quantity based discounts for subscription products. Would be great if you can help. Thanks :)

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Plugin support site is here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @one7724
    @one7724 3 роки тому +9

    This guy deserves more subscribers

  • @fabiomaciel2207
    @fabiomaciel2207 2 роки тому

    Thank you very much for the information. Could be possible to create a first purchase with percetage discount?

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      It would be wise to ask this from the plugin support team here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/
      Also, take a look at the sample rules on their website here docs.algolplus.com/algol_pricing/product-discounts-help/

  • @wckalkulator9828
    @wckalkulator9828 2 роки тому

    I’d recommend „WC Kalkulator” plugin as a free alternative. Plugin has more features and is absolutely free to use. Available at WP respository.

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому +1

      It seems to me that you’re comparing different features. For example: this video is about dynamic pricing. That is "Buy one product and get one product for free" rule and "Add 20% discount for category Accessories" rul eor "Add 10% discount for member group "Gold".
      Whereas WC Kalkulator allows us to add custom product fields with pricing option. Your plugin description says "WC Kalkulator (WCK) is a WordPress plugin which extends the WooCommerce to use custom extra fields with products and orders. Extra product fields can be used to calculate product price and save information in order details."
      As I have tested both of these plugins I can say that they are not the same thing :)

  • @labsantechnology9267
    @labsantechnology9267 Рік тому

    Awesome bro, thanks for video tutorial 😊

  • @saracammi5922
    @saracammi5922 Рік тому

    Hi there! Thanks for the awesome plugin! The free version is already perfect. I have just one question for you... Is it possible not to apply the discount automatically and have to use a promo code?

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      Maybe this video helps you out:
      "23 Different Ways How to Improve Woocommerce Coupon System". ua-cam.com/video/gT2aFrPE2fU/v-deo.html

    • @saracammi5922
      @saracammi5922 Рік тому

      @@wpsimplehacks thanks a lot for your answer 🙏🏻 i will check your video

    • @saracammi5922
      @saracammi5922 Рік тому

      @@wpsimplehacks Isn't there any way to do this in your plugin? I do not want to auto apply a bulk discount.

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      It's not my plugin and I just made a video about it a while ago 🙂 Woocommerce has a built-in coupon system which works in a way that if coupon is added in cart or checkout page then discount is applied. Doesn't that work for you? See here woocommerce.com/document/coupon-management/

    • @saracammi5922
      @saracammi5922 Рік тому

      @@wpsimplehacks Oh my bad! I thought it was your plugin 😅So sorry about it!
      What I want to achieve is not doable from the built-in functionality with WooCommerce unfortunately. I will contact the owner of the plugin. No worries about it ☺

  • @Suriprofz
    @Suriprofz 10 місяців тому

    great will discount also be shown on checkout/invoice etc? i have different usecase. if booking has more than 3 people and max 5 the price per person is higher. because we need special bus/van instead of regular car.

    • @wpsimplehacks
      @wpsimplehacks  10 місяців тому

      I’m not sure whether it works with booking plugins like that. It would be wise to ask about it from the plugin support team.

  • @makc1
    @makc1 2 роки тому

    Hi Yanek! Perfect video as always!
    Is there any chance to add unit of measure to Woo without Plugin - €/m, €/piece, €/package? So need (1)to add a field in back-end to select unit for each product and then (2) display string next to price on all Shop Pages. Do you have any video that shows how to add similar feature so I could adapt it?

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому +1

      See whether this helps you out wpsimplehacks.com/how-to-add-a-suffix-or-prefix-to-woocommerce-product-prices/

    • @makc1
      @makc1 2 роки тому

      @@wpsimplehacks Thanks! Just combined 2 things in suffix. Seems like it works!
      add_filter( 'woocommerce_get_price_suffix', 'bbloomer_add_price_suffix_price_inc_tax', 99, 4 );
      function bbloomer_add_price_suffix_price_inc_tax( $suffix, $product, $price, $qty ){
      if (function_exists( 'falang__' )){
      $post_id = get_the_ID();
      $post = get_post( $post_id );
      $unit_of_measure = get_post_meta( $post->ID, 'unit_of_measure' ); // Dropdown selection field
      $suffix = '/' .$unit_of_measure[0] . ' ' . falang__( 'bez PVN', 'Custom Strings' );
      }
      return $suffix;
      }

  • @thepuldarshana9056
    @thepuldarshana9056 3 роки тому

    wow this has everything i need to set up the products. thanks

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Glad it was helpful! Pro version has even more options and it has a very reasonable price. See here wpsimplehacks.com/dynamic-pricing-yt

  • @hinakotanamoto7479
    @hinakotanamoto7479 3 роки тому

    Thank you, very helpful!
    I'm wondering if there is a way to set percentage discount based on total weight?

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому +1

      Probably the fastest way to get the answer to that question is to ask from the plugin support here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

    • @celestejohns681
      @celestejohns681 2 роки тому

      Thanks for checking. We must be a plugin conflict. Tried it again and the sale price comes off. Blessings!

  • @SaUrEs79
    @SaUrEs79 3 роки тому

    Hi
    Thanks for your valuable videos
    I am a beginner in woocomerce
    Is there a way to manage the inventory based on weight instead of quantities
    Cuz my product based on weight not on pieces

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому +1

      Probably the fastest way to get the answer to that question is to ask from the plugin support here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @SheikhNAhmed
    @SheikhNAhmed 6 місяців тому

    Hey bro, is there a chance we could incorporate three distinct prices for a single product? Similar to how it's done in WooCommerce, where we input the regular price and then the sale price, and when the product is on sale, it displays the slashed regular price and highlights the sale price. So, my question is, is there a way to add another price option, like a clearance price, where upon display, it slashes both the regular and sale prices, and highlights the clearance price instead?

    • @wpsimplehacks
      @wpsimplehacks  6 місяців тому +1

      Not that I know of, but it would be wise to ask about it from the plugin support team though

  • @raghadredwan9162
    @raghadredwan9162 3 роки тому

    thank you for the video! very helpful!
    i have a variable product with a discount, and i'm using the blocksy theme, the problem is that the striked prices don't appear, only the new price, what's the problem? i want the striked price to appear, is it a pro feature?

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      You’ll probably get the best answer if you send this question directly to the plugin support here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @isntlifebetter
    @isntlifebetter 2 роки тому

    Thank youuuu! This helped a lot!!!

  • @kloudytics
    @kloudytics 3 роки тому

    Very helpful, thank you.

  • @celestejohns681
    @celestejohns681 2 роки тому

    Loved the video, but I couldn't get the date range to work. I had a 40% sale scheduled to start today 11-24 and end 11-30-2021, but nothing changed this AM. When I delete the date range, it works fine. Any ideas?

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      I just tested with these settings and seems to be working well nimb.ws/Uy6Ikj

  • @MrRickWorth
    @MrRickWorth 2 роки тому

    hi there! thanks for your video! Is it possible with this plugin to display a certain quantity X sizes of products? For example 5, 10, 50, 100, 500, 1000 units, and 5x5cm 10x10cm sizes, and have a discount for the final prices? Thanks for you help!

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому +1

      I would suggest you to ask this question directly to the plugin support here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @JasonValenzuela
    @JasonValenzuela Рік тому

    Is there a way to make the dynamic pricing specific? Instead of a 10% rule the price is 12.97 for one user and 11.62 for another?

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      As I remember for customer specific pricing you need a pro version. It would be wise to ask about it from the plugin support team though.

  • @whitecity6345
    @whitecity6345 3 роки тому

    Hello, is there any solution to manually determine pricing for individual customers based on their account and their buying history?

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Not that I know of but you can ask this from the plugin support team here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/
      Maybe they know whether it can be done.

    • @aseelasadabdulla5890
      @aseelasadabdulla5890 2 роки тому

      dear friend have you got any answer fot his?

  • @Oleksandrafenenko
    @Oleksandrafenenko 2 роки тому

    This is the best! thank you!

  • @shaileshp7379
    @shaileshp7379 3 роки тому

    Thanks a lot!..You solved my problem

  • @MannyNieves
    @MannyNieves 2 роки тому

    Is there a way to upload via Excel bulk prices and quantities?

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      It would be wise to ask this question in the plugin support forum here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @PaulMrPKcom
    @PaulMrPKcom Рік тому

    Great, thanks. But how to add product cost and see profits ? That is a basic need to every webshop I think...

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      Sorry, but I don't understand the question 😊Can you clarify it a bit abd explain how this plugin should solve this? Because, as I understand, if you sell something then you should already know how much you'll profit from every purchase...

    • @PaulMrPKcom
      @PaulMrPKcom Рік тому

      @@wpsimplehacks I would need to see both product cost and sell price when having few thousand product or more. And cost owill be needed to generate sales and profit reports and ithin Woocommerce.

  • @indisguise01
    @indisguise01 3 місяці тому

    do you have a pricing rule that can create a pricing zone base on city/location and will use the geolocation using maxmind

    • @wpsimplehacks
      @wpsimplehacks  3 місяці тому

      No I don’t. It would be wise to ask about it from the plugin support team.

  • @jayprakashray671
    @jayprakashray671 Рік тому

    Hi, I want to set up product pricing based on order quantity for which I used "Dynamic pricing" plugin but it is only showing different prices when I click on that product. I want to show it for all the products in front page itself so that customer doesn't need to click on every product to see the different pricing.
    Can you please guide on this which plugin I should use?

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      It would be wise to ask about it from the plugin support team

  • @solastasoftgoodsmfg6763
    @solastasoftgoodsmfg6763 3 роки тому

    Thanks for sharing this.
    I am trying to set this up for bulk orders or tiered orders with quantities 1-25, 25-50, 50-100, 100-200, 200-500 units, however, in the product page I can't enter more than "9" units in the quantity field. Is there something I need to do so that the quantity field will accept higher quantities?

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Hi,
      I just tested and there was no issues with the quantities. Do you use "Bulk rules" conditions? See the documentation here docs.algolplus.com/algol_pricing/bulk-tier-discount/
      Also, you’ll get the best answers regarding the plugin itself here (plugin support page): wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Hi,
      I just tested and there was no issues with the quantities. Do you use "Bulk rules" conditions? See the documentation here docs.algolplus.com/algol_pricing/bulk-tier-discount/
      Also, you’ll get the best answers regarding the plugin itself here (plugin support page): wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @markl2804
    @markl2804 2 роки тому

    Is there a way to make a rule where there is a discount applied if the cart has a given number of separate products? Ie If they put a shirt and a hat in their cart then both are reduced by 50%?

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      Use cart conditions docs.algolplus.com/algol_pricing/cart-conditions-free/

  • @anthoservais3351
    @anthoservais3351 Рік тому

    I work with Kadence Shop Kit with the [ Variation Option > Variation Price Output > Show lowest price only ] and with this Advanced Dynamic Pricing plugin (and all the other discount plugins I tried) I have a problem with my variable products.
    When the discount is activate, the price of the variable product is again display in range, and even if i activate the Variation Option in Kadence Shop Skit or if i activate the snippet you showed in one of your videos for variation price.
    Do you have any idea what the problem is? Thank

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      It would be wise to ask about it direclty from the plugin support team.

  • @kashfulbangladesh
    @kashfulbangladesh 3 роки тому

    Hello! sir at first would like to say thank you so much, my problem has been solved. sir, i make QTY Based discount Rules. now i want to make discount after select first product then discount will be start from second products, but i can't do that. My question is - Q. How to make qty based discount after select the first product, but no need to discount Selected 1st product, Discount will be start from 2nd product. maybe you will understand my problem sir. Best Regards!

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому +1

      See the documentation here docs.algolplus.com/algol_pricing/qty-based-on-all-items-in-the-cart-bulk/

    • @kashfulbangladesh
      @kashfulbangladesh 3 роки тому

      @@wpsimplehacks thank you so so much sir!

  • @lawaladedoyinafeez1104
    @lawaladedoyinafeez1104 Рік тому

    thanks, but the pricing rules are not been applied to the POS on wordpress , it only apply to the website only. any solution to that?

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      It would be wise to ask about it from the plugin support team

  • @ntombifuthihlangu774
    @ntombifuthihlangu774 11 місяців тому

    This is a great plug in, but it has created ''Empty cart '' issues , items are added on the cart but when you click to vies its empty

    • @wpsimplehacks
      @wpsimplehacks  11 місяців тому

      Did you ask about it from the plugin support team?

  • @michaamuller1924
    @michaamuller1924 2 роки тому

    Its possible to hide the price and bulktable for non logged in User ???

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому +1

      It would be wist to post this question in the plugin support forum here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @itzhaknadavlevi7330
    @itzhaknadavlevi7330 2 роки тому

    I set a regular price and a sale price for all the products on my website, can I make the plugin apply the rule that I created on the discount price that already exists in the product?
    tnx!

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому +1

      It would be wise to ask this question here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

    • @itzhaknadavlevi7330
      @itzhaknadavlevi7330 2 роки тому

      @@wpsimplehacks big tnx

  • @kashfulbangladesh
    @kashfulbangladesh 3 роки тому

    thank you so so much sir!

  • @sergeyshmuelov8219
    @sergeyshmuelov8219 Рік тому

    Hello
    How can I set rule:
    Buy 1, Second product will be 50% discount
    +
    Buy 3, Forth product will be 50% discount
    +
    Buy 5, Sixth product will be 50% discount
    Thank you

    • @wpsimplehacks
      @wpsimplehacks  Рік тому

      It would be wise to ask it directly from the plugin support team. Also, see demo rules from the docs here docs.algolplus.com/algol_pricing/bogo-free-help/
      There's a Rules >> Frequently created rules menu that contains a bunch of those.

  • @itzhaknadavlevi7330
    @itzhaknadavlevi7330 2 роки тому

    big tnx!

  • @nadiaparapanova1854
    @nadiaparapanova1854 3 роки тому

    Hi there. This video is very helpful, so thank you for that. However, I am trying to set up a bulk discount for artwork prints that are the same size and printed on the same material and I am a big confused as how to do that. I've tried a lot of different variants, but it's still not working. Your help would be greatly appreciated.

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      What kind of pricing rule you’re looking for? Also, see whether these example rules help you out docs.algolplus.com/algol_pricing/sample-discount/

    • @nadiaparapanova1854
      @nadiaparapanova1854 3 роки тому

      @@wpsimplehacks Thank you for your quick response. I had a look at the link, but still can't find the right solution. If you have a look at the below link perhaps it will make more sense. So what I want to do is have a discount for 3 or more art prints that are the same size and printed on the same material. nparapanovart.com/product/baby-kingfisher-print/?attribute_pa_size=150x150mm&attribute_pa_print-on=canvas

    • @nadiaparapanova1854
      @nadiaparapanova1854 3 роки тому

      Actually, it will be fine if the discount is set for 3 or more products in the same category but for each different material(paper or canvas) Is that possible?

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      I’m a bit confused :) Are those materials variations for the specific product? Or are they different products, that is Paper XXX is one product, Canvas XXX is another one?

    • @nadiaparapanova1854
      @nadiaparapanova1854 3 роки тому

      @@wpsimplehacks Hi. Yes, so it will be 1 print/product that one can choose the size and material to print on. So the discount would be for 3 or more images printed on paper, or 3 or more images printed on canvas. Any size of 3 prints in that material.

  • @cherylf5609
    @cherylf5609 2 роки тому

    I need to set up multiple rules for 1 product. Here is an example of a current product:
    I have an "Imagine Rotary" magnetic lapel pin that I want to offer for sale as follows:
    1. Purchase between 1-24 the pricing is $2.50 each
    2. Purchase between 25-49 the pricing is $2.25 each
    3. Purchase 50-99 the pricing is $1.80 each
    4. Purchase 100 + the pricing is $1.50 each
    5. Bag of 25 the pricing is $56.25
    6. Bag of 50 the pricing is $90.00
    7. Bag of 100 the pricing is $150.00
    So, there are 7 options for this 1 lapel pin. /So, when the customer chooses a quantity of 10, the pricing is set to #1; when they choose 34, the pricing is set to #2; or they can choose one of the 5-7 options.

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      Here is a plugin support forum you can use for these kind of questions wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @naryacreation9404
    @naryacreation9404 3 роки тому

    How to create discount like - 25% off up to Rs. 250 on your first order in woocommerce? Please help

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      The fastest way to get support is to ask it directly from the plugin team here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/
      Also, take a look at the rule examples here docs.algolplus.com/algol_pricing/sample-discount/

  • @allboutnaruto3432
    @allboutnaruto3432 3 роки тому

    hey there, please help solve this following problem
    If i want to sell a t-shirt for $10 each but if the customer adds three in cart he gets a discount and cost of three t-shirt will not be $30 but (as $10 dollar each) the price will $25 same way if he adds 4 t-shirt the price wont be $40 it will be $35 in the cart
    please help me solve my problem with suggestion of any plugin or can u make one video on it .

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Hi,
      Unfortunately I am not providing this kind of support for the third party plugins. I just make a tutorial how to use them. So, the wisest thing is to ask this question directly from the plugin support here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/
      Also, see the plugin documentation here docs.algolplus.com/algol_pricing/bulk-tier-discount/
      I hope you understand :)

  • @off___billy
    @off___billy 3 роки тому

    Hi! Very useful video, thank you in Advance.
    I need that a client, after buying a specific product (membership plan managed with Paid Membership Pro plugin), will have a new user role (i already set up the code to change the user role after the order completed with that specific product) in order to restrict the usage of a coupon. That i created a coupon, with the plugin in the video, and added that user role restriction. I also added a category product restriction but i also need that the discount (100%) will be applied MAXIMUM to 20 products. No matter if the client create 20 carts with 1 product, 1 cart with 20 products or 5 carts. I need that the client can buy 20 products (that he can select in that specific category) for free.
    I'm trying to achieve this goal with this plugin but something goes wrong, can you help me?
    P.S. i can't make this thing work with gifts plugin because i want to let users select the 20 products (all virtual, by the way) by a specific category of WooCommerce (around 500 products in total) and than let them buy for free. They get access to the Membership plan by buying a product, linked with the PM Pro addon for WooCommerce).

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому +1

      It would be wise to send this question directly to the plugin support team here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

    • @off___billy
      @off___billy 3 роки тому

      You don't have an idea to make It work? I tried with the Usage Limits condition and than with the First field in the condition fields (don't remember the specific field) in which you can select between once, Unlimited, 1-10.

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Hi,
      Sorry, I haven’t tried to make this type of rule with these kind of conditions and therefore it is hard for me to figure out how to make it work.

  • @AMITROY-uc7dd
    @AMITROY-uc7dd 2 роки тому

    For Buy 2 Get 1 Free rules do I need the pro version?

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      See whether this helps you out docs.algolplus.com/algol_pricing/bogo/#b1

  • @Daraz-ob8eg
    @Daraz-ob8eg 3 роки тому

    Very Helpful

  • @educateyourself2599
    @educateyourself2599 3 роки тому

    How can I implement buy one get one free so that I receive a 100% discount on the second product added to the cart?

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому +1

      @EDUCATE YOURSELF
      See whether these examples are any use to you docs.algolplus.com/algol_pricing/sample-discount/
      If there are any additional questions then feel free to ask them in the plugin support site here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @user-sq1jd7nd8n
    @user-sq1jd7nd8n 3 роки тому

    hi is there any way to do "any 2 for £1.50" and the customer can choose from 3 different products? pls help

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Sorry, but I did not understand the question :)
      Also, see the documentation here docs.algolplus.com/algol_pricing/overview-rules-free/
      If this doesn’t provide you an answer then please ask this question to the plugin support team here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

    • @user-sq1jd7nd8n
      @user-sq1jd7nd8n 3 роки тому

      @@wpsimplehacks what im trying to do is have three products a,b,c and do the offer "any 2 of these products for £1.50"
      It can be 2 of the same or 2 different from a,b,c

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Take a look at the docs and example rules. Probably there is something that points you in right direction.

  • @wpsimplehacks
    @wpsimplehacks  3 роки тому

    There is also an Advanced Dynamic Pricing Pro version available. Grab it here with 20% discount wpsimplehacks.com/dynamic-pricing-yt (COUPON WPSH20)

  • @peter-zc6gw
    @peter-zc6gw 2 роки тому

    Hey, how can I add a text like ^^you save xx$^^ under each item?

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      This is a question for plugin suport team here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/

  • @bryandelacruz9066
    @bryandelacruz9066 3 роки тому

    Hi, I get this error "If you add many lines to this section - you will create a product bundle
    " how do I fix this?

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      It's not an error message but just a notification. You can ignore it.

    • @bryandelacruz9066
      @bryandelacruz9066 3 роки тому

      @@wpsimplehacks Ok thanks, I thought it was an error seems like when you save plugin has no notification so i thought it didn't save the settings 😅

    • @bryandelacruz9066
      @bryandelacruz9066 3 роки тому

      @@wpsimplehacks Ok that's good, One more question is there a way to set a discount for a specific user? not just only by role. Thank you.

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому +1

      Not with the free version. Ask their support whether it can be done with the Pro version. Support site docs.algolplus.com/support/

    • @matiassabag1326
      @matiassabag1326 2 роки тому

      Hi! Thank you very much! But my web get to slow with this plug in :/ anyone can help me?

  • @roppor2194
    @roppor2194 3 роки тому

    I find your video useful

  • @ockanakupuje4143
    @ockanakupuje4143 2 роки тому

    Hello,
    how abbout buy 3 get 1 for free?
    Can I do this?
    Thank you

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      See documentation here docs.algolplus.com/algol_pricing/bogo/
      If it’s not in the free version then you’ll need a Pro version. Discoun copuon is in the video description.

  • @webtricks4716
    @webtricks4716 3 роки тому +1

    Your are simple cool...

  • @heinojuurikas8493
    @heinojuurikas8493 3 роки тому

    For information: Pricing Rules and Dynamic Pricing does not work with the LiteSeed Cashe plugin, and the owner of the plugin does not make any changes.

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      @Heino Juurikas
      It seems that you have asked this question in the plugin support page and there is answer from the plugin author says that this will be fixed. wordpress.org/support/topic/litespeed-cashe/

    • @heinojuurikas8493
      @heinojuurikas8493 3 роки тому

      @@wpsimplehacks This is an old problem that did not really solve the problem. Now it's back on the agenda, which unfortunately the author of the plugin no longer wants to solve. That is how they answered me today.

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      OK, good to know :)

    • @heinojuurikas8493
      @heinojuurikas8493 3 роки тому

      @@wpsimplehacks Can you suggest a good alternative to this price plugin?

  • @vladoks112
    @vladoks112 3 роки тому

    Tänud kasuliku juhendi eest! :)

  • @refiloeloves
    @refiloeloves 2 роки тому

    I’m selling oils and want to have olive oil 500g $12 1kg $18 how can I go about this

    • @wpsimplehacks
      @wpsimplehacks  2 роки тому

      It would be wise to ask this from the plugin support team here wordpress.org/support/plugin/advanced-dynamic-pricing-for-woocommerce/
      Also, take a look at the sample rules on their website here docs.algolplus.com/algol_pricing/product-discounts-help/

  • @Alsterino
    @Alsterino 3 роки тому

    I need a discount per payment method :(

    • @wpsimplehacks
      @wpsimplehacks  3 роки тому

      Try this one here wordpress.org/plugins/woo-payment-discounts/