Page 22 of 73 FirstFirst ... 1220212223243272 ... LastLast
Results 211 to 220 of 730
  1. #211
    Join Date
    Mar 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    Wow what a pain in the sss it was to do with world pays updating the password took ages to update. Ok quick question now its working , How can i add the small wp logo on the text on the check out ? where it says "Credit Card via WorldPay"
    Regards
    mark

  2. #212
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: WorldPay Module version 2.0 - Support thread

    Yes that is why it's normally unanswered, being British I always recommend going for a cup of tea, it's always the same way !!!IT'S NOT WORKING!!!, err, okay it is it just took a bit of time to update at worldpay's end....

    If you wish to change add an image then you should edit the file

    includes/languages/english/modules/payment/worldpay.php

    and add the image html to the constant MODULE_PAYMENT_WORLDPAY_TEXT_TITLE

    Thank you
    Philip.

  3. #213
    Join Date
    Mar 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    All done thanks and cup of tea does help, I edited the code and put in the wp logo ill post it just incase anyone els wants to see how its done.
    Regards
    Mark

    // $Id: worldpay.php 1.0 2004-09-04 05:01:15Z networkdad $
    //

    define('FILENAME_WORLDPAY', 'worldpay_response');

    define('TABLE_WORLDPAY_PAYMENTS', DB_PREFIX . 'worldpay_payments');
    define('MODULE_PAYMENT_WORLDPAY_TEXT_CATALOG_TITLE', 'Secure Credit Card Payment');
    define('MODULE_PAYMENT_WORLDPAY_TEXT_ADMIN_TITLE', 'WorldPay Payment Gateway');
    define('MODULE_PAYMENT_WORLDPAY_TEXT_ADMIN_DESCRIPTION', 'WorldPay Credit Card Payments');
    define('MODULE_PAYMENT_WORLDPAY_TEXT_DESCRIPTION', '<strong>Worldpay Payment Module</strong>');
    define('MODULE_PAYMENT_WORLDPAY_TEXT_ERROR_MESSAGE', 'Your transaction has been cancelled or declined. Please try again');
    define('MODULE_PAYMENT_WORLDPAY_TEXT_TITLE', '<img src="includes/templates/template_default/buttons/english/wplogo.gif" align="top" alt="Click to pay via World Pay">');
    define('MODULE_PAYMENT_WORLDPAY_TOTALS_MATCH', 'Totals Match');
    define('MODULE_PAYMENT_WORLDPAY_TOTALS_MISMATCH', 'Warning: Totals do not Match');
    define('MODULE_PAYMENT_WORLDPAY_COUNTRY_MATCH', 'Countries Match');
    define('MODULE_PAYMENT_WORLDPAY_COUNTRY_MISMATCH', 'Warning: Country Mismatch');
    define('MODULE_PAYMENT_WORLDPAY_ADDRESS_MATCH', 'Addresses Match');
    define('MODULE_PAYMENT_WORLDPAY_ADDRESS_MISMATCH', 'Warning: Address Mismatch');
    define('MODULE_PAYMENT_WORLDPAY_POSTCODE_MATCH', 'Postcodes Match');
    define('MODULE_PAYMENT_WORLDPAY_POSTCODE_MISMATCH', 'Warning: Postcode Mismatch');
    define('MODULE_PAYMENT_WORLDPAY_SUHOSIN_TEXT', 'Suhosin is a PHP module that can affect communication between WorldPay and ZenCart');
    define('MODULE_PAYMENT_WORLDPAY_CAUTION', 'WorldPay has issued a CAUTION for this transaction');
    define('MODULE_PAYMENT_WORLDPAY_WARNING', 'WorldPay has issued a WARNING for this transaction');

    ?>

  4. #214
    Join Date
    Jun 2009
    Location
    UK
    Posts
    10
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    Hi there,

    I hope you can help. I am currently working on updating my website and have decided on Zen Cart. I have installed the latest version on a local server and am working on making it look and work how I want. I have installed a free template fron zen-cart-power.com. I already have a worldpay account so have installed worldpay module 2.08, although I am not yet ready to try to connect to worldpay to test.

    In the box that the customer has the opportunity to select a payment card option, there is already a drop down box with Visa or Mastercard as the two choices. This remains when I select
    display accepted cards in admin. I then get a second set of choices, but this one shows the cards I accept as it should.

    Am I doing something wrong here? Apologies if I'm being a bit of an idiot.

    Thanks

  5. #215
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: WorldPay Module version 2.0 - Support thread

    It is likely that you have in Kahlili's (good) suggestions in zencart which was to put in a select box with applicable cards, except that I added it to the module code so that it was more suitable for an international audience and could be adjusted from admin rather than by editing the HTML.

    The solution is to take out Khalil's code as you have a inferior duplicate of functionality with the uptodate module.

    Thank you
    Philip.

  6. #216
    Join Date
    Jun 2009
    Location
    UK
    Posts
    10
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    Thank you for your help, Philip.

    I like the opportunity to make adjustments to the list of credit cards in admin, although not essential. Is it possible to retain Khalil's code and remove the original, or is that not the right way to do it? Do both lists work in the same way - i.e do they both reduce the pages necessary at worldpay by one?

    Thanks

    Brian

  7. #217
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: WorldPay Module version 2.0 - Support thread

    It does the same thing in that it skips one page, plus it has the option to be either a select box or list with radio buttons, also under the surface it stores the selected card as a session variable so that if the user changes their minds and wants to add something else to their cart, it remembers what they selected so they still get one less click. It's everything Khalil suggested and more.

    Thank you
    Philip.

  8. #218
    Join Date
    Jun 2009
    Location
    UK
    Posts
    10
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    OK, I would like to do as you suggest and remove the unnecessary code. If possible, could you please point me to the section(s) to remove?

    Thanks again.

    Brian

  9. #219
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: WorldPay Module version 2.0 - Support thread

    Search this thread for Khalil and then just overwrite the files with standard zencart files from the zip. I can't be any more precise than that because it wasn't me that put the code in. I adjusted the module afterwards and personally didn't try the code. but It's somewhere in this thread, it's probably something like tpl_checkout or similar.

    Philip.

  10. #220
    Join Date
    Jun 2009
    Location
    UK
    Posts
    10
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    Thank you, Philip. That's sorted.

    Brian

 

 
Page 22 of 73 FirstFirst ... 1220212223243272 ... LastLast

Similar Threads

  1. v154 WorldPay Module version 3.0 - Support thread
    By countrycharm in forum Addon Payment Modules
    Replies: 116
    Last Post: 31 Dec 2025, 11:36 AM
  2. MultiSite Module Support Thread
    By Gerome in forum All Other Contributions/Addons
    Replies: 2246
    Last Post: 29 Dec 2025, 10:13 AM
  3. v151 Codetrio Sphinx Search Version 1.0 Support Thread
    By imranulh in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 16 Jul 2014, 01:24 AM
  4. Simple SEO URL (OLD version) [support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 5053
    Last Post: 30 Jun 2014, 02:42 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg