Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

best-try

Pioneers
  • Posts

    11
  • Joined

  • Last visited

Everything posted by best-try

  1. No, it is not working. The example I sent to you in the last message is a cart on the same server and domain but another cart (that is working). The one I mentioned to you first is still not working. I just mentioned the one that is working because it is odd that one in the same server and domain is working and the other that is in a sub-folder but in the same domain is not showing the "see more" in recently viewed. www.thedomain.com/catalog has the "see more" working, but www.thedomain.com/othername/catalog haas not working the "see more" of recently viewed (all other features of the cart are fine) I thought it was the cookie path but it seems that not. Any idea? I am still with the problem, sorry :blush:
  2. Didn't manage yet, if I manage I let you know
  3. Thank you for taking the time :D Yes register globals is on
  4. Never mind, I managed. I just went to MyPhp, selected the database of the cart, dropped 'page type' from the table 'pages' and then executed (in sql): ALTER TABLE pages ADD `page_type` int(2) default NULL; INSERT INTO `pages` (`page_type`) VALUES ('1'), ('2'); The links show up now in any quantity I want. I also changed some code in catalog/admin/extra_info_pages.php and I found: --------------------------------- if ($action == 'insert') { if($page_type == "1" || $page_type == "2" || $page_type == "3" || $page_type == "4" || $page_type == "5" || $page_type == "6" || $page_type == "7" || $page_type == "8" || $page_type == "9") { ----------------------------------- and changed for --------------------------------- if ($action == 'insert') { if($page_type == "1" || $page_type == "2" || $page_type == "3" || $page_type == "4" || $page_type == "5" || $page_type == "6" || $page_type == "7" || $page_type == "8" || $page_type == "9"|| $page_type == "10" || $page_type == "11" || $page_type == "12" || $page_type == "13" || $page_type == "14" ) { -------------------------------------- You can add as many as you want as "$page_type == "xx" Also found --------------------------------- if ($action == 'update') { if($page_type == "1" || $page_type == "2" || $page_type == "3" || $page_type == "4" || $page_type == "5" || $page_type == "6" || $page_type == "7" || $page_type == "8" || $page_type == "9") { ----------------------------------- and changed for --------------------------------- if ($action == 'update') { if($page_type == "1" || $page_type == "2" || $page_type == "3" || $page_type == "4" || $page_type == "5" || $page_type == "6" || $page_type == "7" || $page_type == "8" || $page_type == "9"|| $page_type == "10" || $page_type == "11" || $page_type == "12" || $page_type == "13" || $page_type == "14" ) { -------------------------------------- and ------------------------------------------------------------------------------------------------------------- <option value="9" <? if($page_type == 9) { echo 'selected="selected"'; } ?>>9 - Old Page</option> -------------------------------------------------------------------------------------------------- And changed it for -------------------------------------------------------------------------------------------------------- <option value="9" <? if($page_type == 9) { echo 'selected="selected"'; } ?>>9 - Links</option> <option value="10" <? if($page_type == 10) { echo 'selected="selected"'; } ?>>10 - Links</option> <option value="11" <? if($page_type == 11) { echo 'selected="selected"'; } ?>>11 - Links</option> <option value="12" <? if($page_type == 12) { echo 'selected="selected"'; } ?>>12 - Links</option> <option value="13" <? if($page_type == 13) { echo 'selected="selected"'; } ?>>13 - Links</option> <option value="14" <? if($page_type == 14) { echo 'selected="selected"'; } ?>>14 - Old Page</option> ------------------------------------------------------------------------------------------------------------------- Can add as many page types as you want. I thought to add it to the contribution as an update but I am not that good at codes so just in case I made a mistake, I didn't add it as an update. If any of you more experienced guys see that all is fine, please add it as an update because many people is trying to get this contrib working with more than 9 pages. I have tried it only with external linked pages and it works, I don't know with internal pages.
  5. Thanks, I will give it a try :D
  6. This a really great contrib. Has anyone added more than 9 pages? I have manged to tweak the php to show (in admin) more than 9 page types but when I create a page and choose a page type over 9 it doesn't show in the box, the box shows only 8 lines. I must add 5 links more, can anyone help? Thanks :blink:
  7. Does anyone know how to integrate the Globill payment gateway. The integrastion guide says to use: either <a href="https://secure.globill.net/cardholder/pay.cfm?MEWid=1033&amount=399.95">Payment Checkout ...Powered by <em>Globill.net</em></a> or <form action="https://secure.globill.net/cardholder/pay.cfm" method="post"> <input type="hidden" name="MEWid" value="1033"> <input type="hidden" name="amount" value="414.17"> <input type="hidden" name="Cid" value="myCustomerNr1234"> <input type="hidden" name="fullname" value="Mrs. Sara Jones" /> <input type="hidden" name="email" value="[email protected]" /> <input type="hidden" name="item_desc_1" value="Organic Chicken Formula Dry Dog Food (size: 15kg bag, breed: large dogs)" /> <input type="hidden" name="item_price_1" value="29.95" /> <input type="hidden" name="item_qty_1" value="3" /> <input type="hidden" name="item_desc_2" value="SlimQuick Female Fat Burner (contents: 98 capsules)" /> <input type="hidden" name="item_price_2" value="149.95" /> <input type="hidden" name="item_qty_2" value="2" /> <input type="hidden" name="charge_desc_1" value="Shipping and handling" /> <input type="hidden" name="charge_price_1" value="4.00" /> <input type="hidden" name="charge_desc_2" value="(VAT charged at 14%)" /> <input type="hidden" name="charge_price_2" value="50.37" /> <input type="submit" value="Payment Checkout ...Powered by Globill.net"> </form> How to create a module for this or to rewrite i.e. Chronopay o epasssporte modules? I tried but failed. Any help? Thanks :blink:
  8. Hello to everyone! Does anyone know the code for integrating Antirobot Validation into the ticket_create.php of OSC Ticket V1.1a ? also into any file that needs it. I have the Antirobot Validation working good (great contribution) in contact_us and all other suitable files, now I installed OSC Ticket and cannot find out the code to add to ticket_create for making it work there as well. Anyone can help please? Thanks and all the best
  9. Hello to everyone! Does anyone know the code for integrating Antirobot Validation into the ticket_create.php of OSC Ticket V1.1a ? also into any file that needs it. I have the Antirobot Validation working good (great contribution) in contact_us and all other suitable files, now I installed OSC Ticket and cannot find out the code to add to ticket_create for making it work there as well. Anyone can help please? Thanks and all the best
  10. Hi there! I find this contribution very useful. I got a little problem though and cannot find where is the problem: After I installed CPV, when I go as admin to the customer details, the DOB doesn't show, it just appears the field empty. the same happens if the customer goes to change his/her account details, the DOB doesn't show. Before installung CPV it was showing ok... Anyone can assist me on this? Thanks for any help (probably is something obvious isn't it :rolleyes: )
×
×
  • Create New...