Page 3 of 5

Posted: Sun Nov 29, 2009 6:37 am
by Navaldesign
Most probably, when you imported the page in your project, the three buttons in the cart page "lost" their name (should be "action" for all three)

Check it.

Posted: Sun Nov 29, 2009 9:51 am
by uniformality
hi Naval

I checked the button names and changeed them to "action" but still it doesn't work. Thanks for your assisitance.
Regards

Paul

Posted: Sun Nov 29, 2009 10:08 am
by Navaldesign
Since I don't know what your product page( s ) URLs are, I can't test.

Remove the Onclick event that you added to the Continue Shopping button.

Posted: Sun Nov 29, 2009 10:21 am
by uniformality
Thanks Naval, that was the problem.
Is there a way to make the 'continue shopping' button take the customer back to the last page they were at?

EDIT ok i have put the button on another form and now the cart works and the 'continue shopping' function works to.

Regards

Paul

Posted: Sun Nov 29, 2009 2:55 pm
by uniformality
I have modified the Paypal button on the 'thank you' page so thatname and address gets passed to paypal so the customer doesnt have to re-enter it. The new code is

<?php
// display PayPal checkout?

$form = '
<form target="PayPal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_ext-enter">
<input type="hidden" name="redirect_cmd" value="_xclick">
<input type="hidden" name="business" value="'.$paypal_email.'">
<input type="hidden" name="item_name" value="'.$dbts_title.' Order '.$orderid.'">
<input type="hidden" name="item_number" value="'.$orderid.'">
<input type="hidden" name="amount" value="'.number_format($_SESSION['nettotal'], 2).'">
<input type="hidden" name="currency_code" value="'.$currency.'">
<input type="hidden" name="shipping" value="'.$_SESSION['shipping1'].'">
<input type="hidden" name="handling" value="'.$_SESSION['handling'].'">
<input type="hidden" name="return" value="'.$paypal_thankyoupage.'">
<input type="hidden" name="cancel_return" value="'.$paypal_cancelpage.'">
<input type="hidden" name="undefined_quantity" value="0">
<input type="hidden" name="receiver_email" value="'.$paypal_email.'">
<input type="hidden" name="no_shipping" value="'.$require_address.'">
<input type="hidden" name="no_note" value="'.$allow_message.'">
<input type="hidden" name="first_name" value="'.$_SESSION['firstname'].'">
<input type="hidden" name="last_name" value="'.$_SESSION['lastname'].'">
<input type="hidden" name="address1" value="'.$_SESSION['address'].'">
<input type="hidden" name="address2" value="'.$_SESSION['address2'].'">
<input type="hidden" name="city" value="'.$_SESSION['city'].'">
<input type="hidden" name="state" value="'.$_SESSION['state'].'">
<input type="hidden" name="zip" value="'.$_SESSION['zip'].'">
<input type="image" name="submit" src="http://images.paypal.com/images/x-click-but6.gif" alt="Make payments with PayPal, it\'s fast, free, and secure!">
</form>
';
echo $form;

?>

I found it better not to pass the email address as Paypal assumes your customer has a paypal account and doesn't dispay the name and address data but here it is incase anyone needs it

<input type="hidden" name="email" value="'.$_SESSION['email'].'">

Regards
Paul

Posted: Sat Dec 12, 2009 6:29 pm
by Navaldesign
Which Add ons ?

Posted: Mon Dec 14, 2009 6:09 pm
by Navaldesign
No, you aren't missing anything, but if you don't specify what you want, I can't know.

For such issues, you should contact me privately through my site (in my signature) contact form with your requirements.

Posted: Thu Jan 21, 2010 7:22 am
by Navaldesign
I'm not sure whay you are posting in this section of the forum, as the cart seems perfectly working.

For the images issues, seems like they ARE on the server, but they won't display (or, which I can't check, seems they 0 size). Try this:
1. Check images permissions: should be 644
2. Preview the page in FF. Right click the pics that don't show, and save them locally, then manually upload them on the server / cart/images folder.
Refresh the page to see if it appears.

Your popups also seem working fine.

Posted: Wed Jun 09, 2010 11:36 am
by radioboy74
So do I understand your post correctly, I can set a price through our Pay Pal feature let's say for $5.00 for product and it will calculate the shipping as per what I enter?

Posted: Wed Jun 09, 2010 11:59 am
by Navaldesign
Yes.

Posted: Fri Jun 11, 2010 10:34 pm
by radioboy74
I see you are talking about downloading something above, what is that? Also my client wants to use the paypal option or whatever works best, but wants to offer shipping options such as Post Office, Fedex, UPS, etc... are there ways to do the shipping options??

Posted: Sat Jun 12, 2010 5:38 am
by Navaldesign
Pls take the time to read the manual which contains all features descriptions and possibilities of the cart.

The cart support shipping fees but not all those options you mention. For those you will need a professional cart that can use the APIs of USP, Fedex etc to calculate shipping.

Posted: Sat Sep 11, 2010 12:04 am
by me.prosenjeet
Naval,
I am not sure where to post this, here or in the DBTS form extension.
My client has 18 products with about 15 varieties in each. What he is looking for is actually an order form and not online sales/payment.
He wants that the user selects the variety of product and the quantity and then submit so that the order form details reach the company to process the order.

Something like

Product A----------[Image]Varieties=(can be drop down or 'tick' from list)----------Quantity(drop down 1,2,3...)

Product B----------[Image]Varieties=(can be drop down or 'tick' from list)----------Quantity(drop down 1,2,3...)

Product will not have a select button but the variety will have the details of the product.

So we have 2 fields to be selected by the visitor for a product...
1) Variety
2) Quantity.

Further this will be a multipage order form so if the user doesn't like any of the products on page 1, he can click on a button to move to next page. That is if the form is of 15 pages, he can select several products from various pages and submit it.

How can this be done?

Posted: Sat Sep 11, 2010 7:02 am
by Navaldesign
It can be done both with the Webshop Plus (where of course you will need to change a bit the PayPal part, since this is an Order with No Payment options) or with a specifically made orderform

Posted: Sun Sep 19, 2010 5:49 am
by Navaldesign
If someone can enter your admin area to change your PayPal settings, he can also change the email address. So you will never know of the change, even if such an automated email routine is present.

Re: I cant install this exten?

Posted: Thu Sep 30, 2010 11:11 am
by madebyibloo
gp2727 wrote:
llauderes2185 wrote:where is the WBX file??
The download location is on the first post here: viewtopic.php?t=16668
This is not an extension you install, more like an application you upload to your web host and configure their.
Hi, I cannot see the download location anywere on the first post, can you point me in the right direction please?

all I see is this 'See example page “product1â€' at the bottom of the post.



Cheers,
Scott

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Thu Sep 30, 2010 11:43 am
by Navaldesign
Seems like the data migration to the new forum has cut off a part of my original post.

Here is the link: http://www.dbtechnosystems.com/wb6/webshop2.zip

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Thu Sep 30, 2010 11:48 am
by madebyibloo
Thanks naval, yeh i thought that too, appreciate it.

p.s I'm still gonna be intouch regarding the idc, am just sorting some stuff out.



Cheers,
Scott.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Thu Oct 21, 2010 6:29 pm
by Patrik iden
Hi, have you includedthe minicart in product page in your download yet?

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Wed Oct 27, 2010 3:18 pm
by Navaldesign
Hi,

This most probably means that the folder permissions don't allow file creation.

This might actually depend on the folder permissions, or it may be a restriction by your hosting company.

The folder permissions normally should be 755 and the folders within it should have permissions 644.

If the folder has 755 permissions and this issue is only relevant to installation of Webshop, you can try this:

Go in the page where you need to make changes in the settings.

Then before actually submitting, connect with FTP and change the permissions of the entire folder in 777.
Submit the form

Then turn again the folder permissions to 755 and see if everything works fine.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 15, 2010 9:25 pm
by kevinp
Hi Naval

The cart is briliant as usual but I've come accross a problem that seems confined to Australian websites. For all orders shipped within Australia a Sales Tax (GST) of 10% is charged but for orders outside Australia no tax is charged. Currently the cart can't do this but is there a way to maybe add a tickbox which would cancel out the tax on Recalculate with out a major code rebuild. Seems a daft question but before I start fiddling (and probably mess it all up) I just thought I'd see if I could get a few expert pointers.

Any pointers would be much appreciated.

Cheers

Kevinp

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 15, 2010 10:04 pm
by Navaldesign
Hi Kevin,

This is exactly the same issue as US residents: US sites apply taxes ONLY to residents of the same state where the company is.
Whay you can do:
Set the tax to be 0.

Ad these lines :

if($shiptocountry == $origin_country){
$taxes = $subtotal * 10/ 100;
}

just after


if ($tax_type == "unique") {
$taxes = $subtotal * $unique_tax_percent / 100;
}


where 10 (or whatever else) is the applicable tax percent.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 15, 2010 10:16 pm
by kevinp
Thanks for that Naval. I'll give it a try. Your a lifesaver as allways.

kevinp

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 15, 2010 10:22 pm
by Navaldesign
Since I can't really recall well, you might have to use

$ship_to_country

instead of $shiptocountry

Test as posted, if not working try the second.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 15, 2010 11:07 pm
by kevinp
It works brilliantly. Just had to remove the $ from the $10 as below:

if($shiptocountry == $origin_country){
$taxes = $subtotal * $10/ 100;
}

and it does the trick. Very handy to know for the future.

Thanks again, much appreciated.

kevinp

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Tue Nov 16, 2010 7:02 am
by Navaldesign
Sorry, too tired I suppose !!

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Sun Nov 21, 2010 10:31 pm
by jeff11214
Hi George, I have a question for ya.

I'm having a problem getting past the "Your shopping cart" page. If I have 1 product added to the cart and I click "Check out" I get an error message "Internet Explorer cannot display the webpage". If I have more then 1 product added to the cart and I click "Check out", then it will continue to the "Customer" page with no problem.

This part was working and I was able to get to the "Customer" page earlier, but I tried changing the "Recalculate" button label on the cart page to "Update" and saw it didn't work any longer so I changed it back to "Recalculate". Since then I can not get past the cart page with only 1 product in the cart. I have cleared my cache and republished my pages, but still no luck. Any ideas?

Thanks
Jeff

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 7:17 am
by Navaldesign
Iìm sorry but I have no explanation on why this is happening. I should see the page code, as it appears in WB when you go to View, Page HTML

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 2:19 pm
by jeff11214
I tried it on a different PC and it is working. I have no idea why this is happening... very strange.

Thanks

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 6:45 pm
by jeff11214
Now using Firefox browser and here are some issues I hope you can help with:

On the "Complete your order" page (checkout.php)
can the "Order Now!" button go directly to PayPal and skip the thank you page (thankyou.php)?
-If not, can I change the value/label "Order Now!" button to show "Continue".

On the "Order completed" page (thankyou.php)
it shows "Your order has been successfully placed! A confirmation email has been sent to your email address.
Please proceed to payment so we can process your Order."
-But the PayPal button form is not showing. (nothing is showing)

On the "Customer Information" page (customer.php)
It looks like the only required field is the E-mail field and I would like to make all fields required.
-Can I simply change this in the editbox properties validate tab?

When the Order is completed an e-mail is sent to the customer showing the order details.
-Can this include the Paypal link to pay for the item?

In Firefox, some things don't display properly:
on the Customer Information page (customer.php), the "Previous" button shows the word "Page" below it.

And then on the next page "Complete your order" (checkout.php) same problem with the buttons:
"Previous" button shows the word "Page" below the button and the "Cancel" button shows the word "Order!" below the button.

Thanks for your help.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 6:57 pm
by Navaldesign
jeff11214 wrote:Now using Firefox browser and here are some issues I hope you can help with:

On the Complete your order page (checkout.php)
can the "Order Now!" button go directly to PayPal and skip the thank you page (thankyou.php)?
-If not, can I change the value/label "Order Now!" button to show "Continue".
Not at the moment. I will upload an updated version in a few days, where normal submit buttons will be replaced by advanced buttons (and the internal php code modified) so it will be possible to change the buttons wording.
On the Order completed page (thankyou.php)
it shows "Your order has been successfully placed! A confirmation email has been sent to your email address.
Please proceed to payment so we can process your Order."
-But the PayPal button form is not showing. (nothing is showing)
Did you modify the code ?
Or
Did you remove the payment method dropdown from the previous page ? If yes, no payment method is passed to the "thankyou" page and therefore the script doesn't display the PayPal button.
You will need to use the specific PayPal only pages that come with the zip and rename them (removing the "1" from the end of the page name.
On the "Customer Information" page (customer.php)
It looks like the only required field is the E-mail field and I would like to make all fields required.
-Can I simply change this in the editbox properties validate tab?
Yes.
When the Order is completed an e-mail is sent to the customer showing the order details.
-Can this include the Paypal link to pay for the item?
No. You would need to recreate the email code, to send HTML email with the same code as the PayPal button, otherwise the PayPal details (email address, Order ID, Amount, etc) can NOT be passed over to PayPal.
In Firefox, some things don't display properly:
on the Customer Information page (customer.php), the "Previous" button shows the word "Page" below it.
Just make the button larger in WB and publish again.
And then on the next page "Checkout" (checkout.php) same problem with the buttons:
"Previous" button shows the word "Page" below the button and the "Cancel" button shows the word "Order!" below the button.
Same as above.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 8:14 pm
by jeff11214
On the Order completed page (thankyou.php)
it shows "Your order has been successfully placed! A confirmation email has been sent to your email address.
Please proceed to payment so we can process your Order."
-But the PayPal button form is not showing. (nothing is showing)
Did you modify the code ?
Or
Did you remove the payment method dropdown from the previous page ? If yes, no payment method is passed to the "thankyou" page and therefore the script doesn't display the PayPal button.
You will need to use the specific PayPal only pages that come with the zip and rename them (removing the "1" from the end of the page name.
On the previous page I did remove payment options which I see caused the problem. I'm now using the PayPal only pages that were included in the zip and that worked perfectly! Thank you!

Now when I click the "PayPal click here to pay" button:
-the PayPal page does not show an option to pay without a PayPal account. I don't want my customers to feel obligated to open a PayPal account.
-Am I missing something?

When the Order is completed an e-mail is sent to the customer showing the order details.
-Can this include the Paypal link to pay for the item?
No. You would need to recreate the email code, to send HTML email with the same code as the PayPal button, otherwise the PayPal details (email address, Order ID, Amount, etc) can NOT be passed over to PayPal.
Is this really difficult? Would you be able to give more information on how to do this? I think others on this site would have an interest in this as well.

Thanks for your quick response!

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 8:26 pm
by Navaldesign
Payment through credit card without a PayPal account is an option that you set in your PayPal account, not in the cart. Set the "PayPal account Optional?" to yes.

HTML email: yes, it is rather complicated, because this is not a static mail, it is created on the fly depending on customer info and order info. The php code loops among the products to create the order details. You need to heavily modify the code.

I have created such a routine for a paying customer and it has taken me hours to create, finetune and test.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 9:34 pm
by jeff11214
Thank you for your help. It's all coming together now.

May I make a suggestion: Can you include a 2nd error page?

On the Cart page, if an incorrect discount code is entered the Error page opens and you have a link to go back to the cart page which is perfect.

On the next screen, Customer information page, if you click continue and have an incorrect or missing E-mail then you can't go directly back to the Customer Information page. You have to first go to the cart page and continue from there.

I added a link on the error page to go back to the Customer Information page which works fine, but the problem is that link will also show if on the cart page an incorrect discount code is entered. Customer should not see the new link to go to Customer Information page at that point.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 10:03 pm
by Navaldesign
I understand your requests, however, this is a free script and as such it is delivered AS IS.

I can not afford the time or the efforts required to make such amendments. I will take all users comments into account when / if I make an update to the script.

All the issues you are mentioning are dealt with in my Pro cart, which, however, is a commercial (paid for) script.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Mon Nov 22, 2010 10:10 pm
by jeff11214
I understand and I do appreciate all you have done.

Thanks!

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Wed Nov 24, 2010 7:00 am
by Navaldesign
In the "cart" page.

Double click the HTML box that displays the cart, find the reference lines and add the new code after them.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 5:59 pm
by jeff11214
I'm in the final stages of going Live with my webshop2 cart. If I go through an order on my site I finally click the PayPal button and the next page displays "You cannot pay the seller through un-encrypted buttons".

I see my PayPal profile option to "Block Non-encrypted Website Payment:" is set to "On" which is why I'm getting that message. I do realize that it should work if I set this option to 'Off".

PayPal states:
Using encryption enhances the security of website payments by decreasing the possibility that a 3rd party could manipulate the data in your button code. If you plan on only using encrypted buttons you can block payments from non-encrypted ones.

My question is:
Should I be concerned that the PayPal button is not encrypted and can I change it so it is encrypted?

Thank you. And, I love the cart.. it's awesome!

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 6:21 pm
by Navaldesign
No, you should not be concerned at all, because the thing is really simple: If the payment is not as it should, you simply don't ship the goods.

There COULD BE a concern if you were selling downloadable products and IF your automatic download script didn't perform the necessary verifications before allowing download.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 6:43 pm
by jeff11214
But, can the customers information (name,address,phone number) be 'stolen' if sent via un-encrypted button?

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 6:55 pm
by Navaldesign
Eveything can be stolen, but it is HIGHLY improbable because comunication with PayPal is through SSL.
Please also note that:

1. Customer details can NOT be sent through an encrypted button created on PayPal's site.
2. Webshop plus sends the customer details to PayPal to avoid the customer needing to re-type them.
If you use an encrypted button, he will have to type his details again.
3. If you don't mind them doing so, simply modify the HTML box code so that the UN-encrypted button of Webshop Plus will not send them anyway.

PayPal's comments on unencrypted buttons do NOT regard the customer details security, but your own, as all product details are stored on PayPal' server (and thus they can not be altered).

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 7:37 pm
by jeff11214
Thanks for the detailed explanation on Security. I just wanted to make sure I setup my part as a merchant correctly.

Regarding the Order Number:
In the Scipt Details of the Admin login, I changed the Order Start Number, but the order when placed still shows the default incremented by 1 which started at 100. After reading the entire thread, I also changed the "thankyou.php" start of page code ($order_start = "100";) to what I want, but that didn't change anything. Still shows the incremental by 1 number from 100
-If I can't make this my own order start number it's not the end of the world.

After the PayPal button is clicked, the PayPal page shows the order summary.
The description shows the company name and order number (which looks good).
Below that shows "item number: 111", where 111 is actually the order number. I realize this is PayPal's terminology, but I figured I would ask if you think this can be changed to show the word "order" instead of 'item'. I don't want to confuse the customer.

I'll try not to ask any more question after this :)
Thanks for all your help!!!!

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 8:15 pm
by Navaldesign
If the Order nr doesn't change, probably the script can't write the order number to the file that keeps the numbering. This is most probably a permissions issue. Normally the file "order_nr.php" should have permissions set to 644, but you can also try 777.

I don't think that there is a way to change the wording in PayPal.

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 8:58 pm
by jeff11214
Permissions already set to 644 with the following checked:

Owner- Read and Write is checked (execute unchecked)
Group- Read is checked (write and execute unchecked)
Public- Read is checked (write and execute unchecked)

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Fri Nov 26, 2010 9:03 pm
by Navaldesign
It should work. If it doesn't, check with your hosting company. However, try also 777.

It might sound weird, but I have met cases where FTP displayed different permissions than the correct ones. If you have CPanel and File Manager, check it through those.

Re:

Posted: Sat Nov 27, 2010 9:56 pm
by jeff11214
I just tested out the code below. Only the first name and last name are passed to PayPal. The other fields like Address, City, State and Zip Code do not get passed to PayPal. Any idea why that is? It would be nice if all info is passed to PayPal.
uniformality wrote:I have modified the Paypal button on the 'thank you' page so thatname and address gets passed to paypal so the customer doesnt have to re-enter it. The new code is

<?php
// display PayPal checkout?

$form = '
<form target="PayPal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_ext-enter">
<input type="hidden" name="redirect_cmd" value="_xclick">
<input type="hidden" name="business" value="'.$paypal_email.'">
<input type="hidden" name="item_name" value="'.$dbts_title.' Order '.$orderid.'">
<input type="hidden" name="item_number" value="'.$orderid.'">
<input type="hidden" name="amount" value="'.number_format($_SESSION['nettotal'], 2).'">
<input type="hidden" name="currency_code" value="'.$currency.'">
<input type="hidden" name="shipping" value="'.$_SESSION['shipping1'].'">
<input type="hidden" name="handling" value="'.$_SESSION['handling'].'">
<input type="hidden" name="return" value="'.$paypal_thankyoupage.'">
<input type="hidden" name="cancel_return" value="'.$paypal_cancelpage.'">
<input type="hidden" name="undefined_quantity" value="0">
<input type="hidden" name="receiver_email" value="'.$paypal_email.'">
<input type="hidden" name="no_shipping" value="'.$require_address.'">
<input type="hidden" name="no_note" value="'.$allow_message.'">
<input type="hidden" name="first_name" value="'.$_SESSION['firstname'].'">
<input type="hidden" name="last_name" value="'.$_SESSION['lastname'].'">
<input type="hidden" name="address1" value="'.$_SESSION['address'].'">
<input type="hidden" name="address2" value="'.$_SESSION['address2'].'">
<input type="hidden" name="city" value="'.$_SESSION['city'].'">
<input type="hidden" name="state" value="'.$_SESSION['state'].'">
<input type="hidden" name="zip" value="'.$_SESSION['zip'].'">
<input type="image" name="submit" src="http://images.paypal.com/images/x-click-but6.gif" alt="Make payments with PayPal, it\'s fast, free, and secure!">
</form>
';
echo $form;

?>

I found it better not to pass the email address as Paypal assumes your customer has a paypal account and doesn't dispay the name and address data but here it is incase anyone needs it

<input type="hidden" name="email" value="'.$_SESSION['email'].'">

Regards
Paul

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Sat Nov 27, 2010 11:34 pm
by Navaldesign
It should work (works fine for me).

Have a look at https://www.paypal.com/cgi-bin/webscr?c ... te_outside

Re: Modified version of the WB6 Webshop!! Webshop_plus

Posted: Sun Nov 28, 2010 2:30 pm
by jeff11214
It does work for me. I'm having an issue with 1 of my PC's where the cart.php doesn't show in IE8 and when using FF the address wasn't getting passed on. I placed an order from a different PC and eveything is working like it should.

Any idea when you will be posting the update for the Advanced buttons?

Thanks George!