atdaustin
Forum Replies Created
-
Forum: Plugins
In reply to: [WooPrice Calculator] Plugin is not updatingHey,
Just checking in, I would like to get my site up and running with this plugin if it is fully compatible. Any news?
Thanks,
AustinForum: Plugins
In reply to: [WooPrice Calculator] Plugin is not updatingHey @sefin,
1. Yes, the price displays correctly with the plugin deactivated.
2. I am only working with product by length. If I am selling rope of a custom length, I have a base price of $1.00 for any length of rope and then .1 per foot of rope. So I need it to show for the user that the cost of 1 foot of rope is $1.00 + (1 * .1) = $1.10, or for 100 feet of rope $1.00 + (100 * .1) = $11.
It seems like your plugin is perfect for this, BUT there are also two important things that I need to integrate with this.
- A. I price shipping by weight, so if my rope weighs .05lbs per foot, then I need to make sure the weight is being updated properly so that 1 foot of rope is (1 * .05) = .05lbs or 100 feet of rope is (100 * .05) = 5lbs. This dynamically generated weight needs to be used by the shipping calculator to calculate the price for shipping.
- B. I have different types of rope, each with their own price per foot, their own base price and their own weight per foot….From looking through the free version it seems I would have to create unique fields for each of these products. Is that the case, or is there a simple way to store the price per foot & weight per foot so that the formula is as simple as $total_price = $price + (LENGTH * $price_per_foot). $total_weight = (LENGTH * $weight_per_foot).
3. Yes, I have looked into that, I have followed a pattern that is unique to my theme but it still isn’t working. I think maybe one issue could be that a class is used twice at the deepest level of nesting (woocommerce-Price-amount) is used and then nested within that is the exact same class again. Any suggestions?
Thanks for all of your help!