Forum for discussing general topics related to Couch.
9 posts Page 1 of 1
Hey there guys,

I was wondering if I can make radio buttons inside the cart.php to allow the customer to choose if they want shipping or if they want to pick up the product from the store.

Thanks.
Alin,

This can be potentially quite complex -
what happens if the customer chooses 'shipping' on some of the items in cart and 'pickup' on some others?
CouchCart, as you know, does not keep track of orders yet, so we'll have to find some way (email etc.) to remind the seller which items to ship and which to wait for pickup.

I think it'll require custom coding for implementing this feature.
I can't help but think of https://www.youtube.com/watch?v=xaPepCVepCg whenever I see your posts :P
cheesypoof wrote: I can't help but think of https://www.youtube.com/watch?v=xaPepCVepCg whenever I see your posts :P


Alin! Alin! Aliiiiin! :lol: :lol:
As soon as possible!

Touch me up : abada[dot]zulma[at]gmail[dot]com
KK wrote: Alin,

This can be potentially quite complex -
what happens if the customer chooses 'shipping' on some of the items in cart and 'pickup' on some others?
CouchCart, as you know, does not keep track of orders yet, so we'll have to find some way (email etc.) to remind the seller which items to ship and which to wait for pickup.

I think it'll require custom coding for implementing this feature.


Hmm, the thing is that I will not be using checkout through paypal, but through email. You did something like this in http://www.couchcms.com/forum/viewtopic.php?f=2&t=7413

Also, the option will apply to all products in the cart in that session and all the products in that store are going to need shipping.
cheesypoof wrote: I can't help but think of https://www.youtube.com/watch?v=xaPepCVepCg whenever I see your posts :P


You sir made my day :))
Hmm, the thing is that I will not be using checkout through paypal, but through email. You did something like this in viewtopic.php?f=2&t=7413

Also, the option will apply to all products in the cart in that session and all the products in that store are going to need shipping.

Alin, Ok so I suppose this could be done.
Can you please give me a day or two to create a working solution?

Thanks.
KK wrote:
Hmm, the thing is that I will not be using checkout through paypal, but through email. You did something like this in viewtopic.php?f=2&t=7413

Also, the option will apply to all products in the cart in that session and all the products in that store are going to need shipping.

Alin, Ok so I suppose this could be done.
Can you please give me a day or two to create a working solution?

Thanks.


Sure thing, no rush, I just wanted to know if this could be done somehow or if I had to find another way around it.

Have a great week!
@kk,
I have tried working with something like this:

Code: Select all
<cms:fieldset label='Shipping details'>
        <cms:input type='radio'
            name='pp_requires_shipping'
            label='Do you want us to ship it to the provided address?'
            opt_values='Yes, use the provided address=1 | No, I will be picking it up from the store=0'
            opt_selected = '1'
        />
</cms:fieldset>
9 posts Page 1 of 1