Page 1 of 1

Webshop Plus! v.3.2 problem

Posted: Sat Oct 01, 2016 7:33 pm
by landgraafzuid
Hello i just installed Webshop Plus! v.3.2.
It works perfect, but when i go in the admin menu and then go to the tab "script settings" and change the labels/messages the text, then the problem is when i look in the tab "orders" and open the latest order, some of the text in the order is gone.

How can i solve this problem?

Regard
Rob

Re: Webshop Plus! v.3.2 problem

Posted: Sun Oct 02, 2016 5:04 am
by Navaldesign
Please FIRST make the changes you need to do, and THEN test with a test order to see if all details are saved.

Re: Webshop Plus! v.3.2 problem

Posted: Sun Oct 02, 2016 5:39 pm
by landgraafzuid
Hello,

Thanks for your replay.

I first made the changes in the the tab "custom field settings" under customer page fields. I changed "firstname, First" name to "firstname, Voornaam" , and after it i test it with a test order from my website, and fill in the field "Voornaam" my name "Rob"
The receiver of the test mail and the administrator mail received the test mail correct, First name was changed to Voornaam and I see my name Rob
But when i go to the administrator pannel, log in and go to the Tab "Orders" & View order, and take a look at the latest order, then the field "First name" is gone and is not replaced to "Voornaam" and i cannot see my name "Rob". When i go to edit Order i can see that First name was changed to "Voornaam" but my name Rob is not showing up.

How can i solve this problem?

Regards
Rob

Re: Webshop Plus! v.3.2 problem

Posted: Sun Oct 02, 2016 8:22 pm
by Navaldesign
I'm sorry, I can't know what the exact problem is.
Can be an issue with your server file system not allowing file writing, or something else. Or, simply, the orders list file was already created, therefore you can't change the titles anymore. This would also explain why values are not saved.
Please delete the file orders_list.php from your server cart/admin folder, make all necessary changes in field names, then make a test order and check.

Re: Webshop Plus! v.3.2 problem

Posted: Mon Oct 03, 2016 11:28 am
by landgraafzuid
Hello,

Thanks, this problem is solved, i deleted, "orders_list.php" and make a new order, now is every thing working.

I have another question, in the "checkout" page when chose "paypal" i hit the button "order now", i go to the "thankyou" page. Is there a possibility that when i chose "paypal" and hit the button "order now" it go direct to the paypal website?


Regards
Rob

Re: Webshop Plus! v.3.2 problem

Posted: Mon Oct 03, 2016 2:48 pm
by Navaldesign
No, all internal processes take place in the last page, so you can't avoid it.

Re: Webshop Plus! v.3.2 problem

Posted: Tue Oct 04, 2016 9:09 am
by landgraafzuid
Hello,

Thanks, i understand that it isn't possible in this configuration.
But is it possible change the "papal" button to an "Ideal" button. I tried this button it works, but it not updates the cart total amount. What must i change to let it work? I am not familiar with html programming.
When it is not to much to ask, can you help me a bit, to let this "ideal" code button work with Webshop plus3


<!-- CODE_START -->
<script type="text/javascript">
<!-- Begin
var Amount = 123;
var PSPID = "TESTiDEALEASY";
var AM;
if (isNaN(Amount))
{
alert("Amount not a number: " + Amount + " !");
AM = ""
}
else
{
AM = Math.round(parseFloat(Amount)*100);
}
var orderID = "1";
mydate = new Date();
tv = mydate.getYear() % 10;
orderID = orderID + tv;
tv = (mydate.getMonth() * 31) + mydate.getDate();
orderID = orderID + ((tv < 10) ? '0' : '') + ((tv < 100) ? '0' : '') + tv;
tv = (mydate.getHours() * 3600) + (mydate.getMinutes() * 60) + mydate.getSeconds();
orderID = orderID + ((tv < 10) ? '0' : '') + ((tv < 100) ? '0' : '') + ((tv < 1000) ? '0' : '') + ((tv < 10000) ?
'0' : '') + tv;
tvplus = Math.round(Math.random() * 9);
// End -->
</script>
<style type="text/css">
label {width: 120px; text-align: left;}
button.iDEALeasy {background-color: #FFFFFF;}
</style>
<form method="post" action="https://internetkassa.abnamro.nl/ncol/p ... andard.asp"
id="form1" name="form1">
<script type="text/javascript">
document.write("<input type=\"hidden\" NAME=\"PSPID\" value=\"" + PSPID + "\" />");
document.write("<input type=\"hidden\" NAME=\"orderID\" value=\"" + (orderID + ((tvplus + 1) %
10)) + "\" />");
document.write("<input type=\"hidden\" NAME=\"amount\" value=\"" + AM + "\" />");
</script>
<input type="hidden" name="currency" value="EUR" />
<input type="hidden" name="language" value="NL_NL" />
<input type="hidden" name="PM" value="iDEAL" />
<button class="iDEALeasy" type="submit" name="submit1" value="submit">
Betalen met<br />
<img src="https://internetkassa.abnamro.nl/images/iDEAL_easy.gif" alt="iDEAL" />
</button>
</form>
<!-- CODE_END -->

Regards Rob

Re: Webshop Plus! v.3.2 problem

Posted: Wed Oct 05, 2016 8:38 am
by landgraafzuid
Hello, for the one that also want to change the fixed "amount" with you cart total amount of Wepshop Plus3
Change the part of the code from iDEALwith


var Amount = '<?php print $nettotal ?>';
var PSPID = "TESTiDEALEASY";
var COM = "AV <?php print $beschrijving ?>";
var AM;


Rob