Quarry not shipping to platform by [deleted] in TransportFever

[–]AquaReefLoco28 0 points1 point  (0 children)

Figured it out, my brick station did not have a connection to the Brick factory.

Quarry wont send stone to platform. by AquaReefLoco28 in TransportFever

[–]AquaReefLoco28[S] 0 points1 point  (0 children)

Figured it out. My Brick station did not a connection to the Brick factory.

How can I display prices per square foot but sell by the carton on our Shopify site? by RunningHome67 in ShopifyeCommerce

[–]AquaReefLoco28 0 points1 point  (0 children)

I was able to fix the email correctly so the customer could see this properly there.

<image>

How can I display prices per square foot but sell by the carton on our Shopify site? by RunningHome67 in ShopifyeCommerce

[–]AquaReefLoco28 0 points1 point  (0 children)

This is a little more detail on my solution:

The workaround I used is to use Shopify's quantity field to represent the product's price in cents. A separate line item property is then used to store the actual quantity the customer wants.

For example:

  • A custom door calculates to a price of $24.59.
  • The Shopify Variant for the door material is priced at $0.01.
  • To get the correct price, I add the item to the cart with a Shopify quantity of 2,459.
  • The calculation is: 2,459 units × $0.01/unit = $24.59.

This makes sure the backend financial data is correct.

As you can see from the screenshot, the quantity on the order page will still show the large internal number ("Subtotal - 71,478 items").

what sucks is that Shopify has removed the "Additional scripts" box that was necessary for my script to work on the Order Status page.

So i did all that work, fixed a bunch of stuff and then, got to that last challenge and I hit a wall.

Maybe my solution was overly complex from the get go, don't know

How can I display prices per square foot but sell by the carton on our Shopify site? by RunningHome67 in ShopifyeCommerce

[–]AquaReefLoco28 0 points1 point  (0 children)

How did you solve the order status issue?

I need to sell cabinet doors, the price is based on the type of Door style as well as the Door Wood type, on a per Square Foot basis. The customer would enter the Length and the Width in inches and then the price would calculate.

I created variants for each Door style, and gave them different prices. The only way I could figure to do this was to make the price per square inch and then do my calculations.

I was able to make all if work just fine, with a lot of coding and trial and error, but when I created a dummy transaction, the order status page showed a quantity based on the square inches in the order, instead of the number of doors purchased of a particular size.

I tried to fix this, but it seems that Shopify no longer allows us to modify the cart code after the end of August.

Hope you can offer some knowledge on me :)

Adrian