I have a developer building a dynamic "build your product" website
program for a store I'm designing.
It works like this:
1. You see 3 styles of plates on the screen and you pick one.
2. The screen refreshes and you see an image of the plate you choose
with images of optional borders for the plate on the right.
3. You choose the border you like and on the next screen you see your
plate with this border and you can then choose something else to add
etc. etc...
So here is what the final information comes to me as (Example from my
developer):
The way that I have it programmed, on the last step, it will send all
of the selected info in the same format as an HTML form. In fact, if
it will work with Miva, we can have the final selection page just be a
<FORM> tag that calls the Miva cart. I'll have all the selected info
in hidden fields like this:
<FORM ACTION="http://the miva shopping cart" METHOD="POST"
TITLE="Customize">
<INPUT TYPE="HIDDEN" NAME="TEXT" VALUE="This is text to be overlaid">
<INPUT TYPE="HIDDEN" NAME="image" VALUE="2">
<INPUT TYPE="HIDDEN" NAME="session_ID"
VALUE="127.0.0.1.1098314738.1673889159">
<INPUT TYPE="HIDDEN" NAME="ceramics" VALUE="plate9_6">
<INPUT TYPE="HIDDEN" NAME="step" VALUE="text">
<INPUT TYPE="SUBMIT" VALUE="Proceed to next step">
</FORM>
SO THE QUESTION IS:
I need the miva cart to somehow import these variables that this pearl
app gives and display the text choices in checkout.
I don't need Miva to inventory or even have these products listed in
it's database, I just need it to import the data that is sent from this
app. for the checkout process. I would like for this to work with Miva
so we can track orders, hopefully use Miva features like Tinycart etc.
Thanks for any help on this...
Thanks,
Kevin
Comment