Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Helper

Members
  • Posts

    21
  • Joined

  • Last visited

Profile Information

  • Real Name
    Douglas Walker

Helper's Achievements

  1. Hello just wondered if any one has ha any luck with this module. It looks to me as if it should add the order before heading to westpac. Doug
  2. Hi I am using per item warm regards Doug
  3. Hi I am trying to include a popup and need some help with the coding I realise the problem is I have a " and a ' and need to define these differently. Can any one take a look at the code bekow an point me in the right direction. define('MODULE_PAYMENT_CC_TEXT_CREDIT_CARD_CVV2', 'CVV Security Code <A HREF="java script:popUp('http://www.mysite.net/test/catalog/help.php')"><FONT FACE='Tahoma' SIZE='1'>Whats This?</FONT></A> '); Warm regards Doug
  4. It resolved a number of issues for me. As the customer passed through paypals pages they got one screen which included postage and one which did not. They then got error messages. So it did resolve a 0.00 shipping issue. But possibly my issue was slightly different. I would give it a try and see what happens it is easy to switch back if it has no effect. Warm regards Doug
  5. Following these steps you should be able to change the value of no_shipping without updating the module: - Locate the following file in your OSC installation [installation Directory]\catalog\includes\modules\payment\paypal_ipn.php - Make a backup copy of the file - Open it up with a text editor - Search for the following string: "no_shipping" - You should find the following line: $parameters['no_shipping'] = '1'; - Change the "1" in "2" to read $parameters['no_shipping'] = '2'; This appears to have solved my PayPal problems Warm regards Douglas Walker
  6. Following these steps you should be able to change the value of no_shipping without updating the module: - Locate the following file in your OSC installation [installation Directory]\catalog\includes\modules\payment\paypal_ipn.php - Make a backup copy of the file - Open it up with a text editor - Search for the following string: "no_shipping" - You should find the following line: $parameters['no_shipping'] = '1'; - Change the "1" in "2" to read $parameters['no_shipping'] = '2'; This appears to have worked for me. I have had several orders today which went through no problems some with different billing addresses to shipping. let me know if it works for you and I will update paypal. Doug
  7. Hi I have also been having PayPal issues and have been working with tech support to resolve them this is what they suggested i do and it seems to be working I have set Force Shipping to 2 this is in the PayPal IPN file it seems there is a problem created around mid sept when PayPal changed something. I need to wait a bit for some international orders to really test it. (Iam In Australia) but PayPal is working now for me. PayPal realises there is a problem. Doug
  8. I was told by PayPal tech support to set force shipping to 2 within the PayPal IPN file this is a fix until they sort out whatever broke around the 16th of Sept Doug
  9. Hi I have not been able to solve this one. I had a really experienced coder look at it (I'm lucky he's a friend) it should be very simple but we couldn't get it to work. We changed the text but no button appeared. However the best solution for this problem is Pay Pal IPN it puts the order into your database before the sale is made and then auto verifies it once payment is made and updates in your database. But if the person doesn't complete and 70% wont hit the back to merchant. It wont send you an email so you wont know there is an order. But here is the solution and this has saved me a number of times pending_order_email_v1 This sits on your confirmation page and whenever someone visits that page it sends you details of what they are purchasing. You then just need to marry up the completed orders with the abandoned ones. The abandoned ones are useful too as you can follow them up with a friendly email just checking everything is ok. This little Mod has saved me many lost orders. I really recommended it. http://www.oscommerce.com/community/contri..._order_email_v1 hope this is helpful let me know how you go and congrats on your first order
  10. Hi, I run a store and as i have read many times here customers often don't return to your site after using PayPal. OK so I have IPN etc and it's great order gets saved and all. But if the customer doesnt return there is no order email etc, which is ok but I would really like this to happen it's just better. So I contacted PayPal about the size of the return to merchant link on the completed payment page. This is the main problem it is tiny and hidden at the bottom. This is what was sent to me. "I am happy to assist you today. There is no real way to control the size of this link. If you have the ability to edit the HTML form post that is made to PayPal, then you can change the link into a button with your own text. To achieve this goal you will need to pass the "cbt" variable with a value equal to the text you wish to appear on the button. An example is below. <input type="hidden" name="cbt" value="Click to Complete Transaction"> Thanks for choosing PayPal". This is great except I don't really understand it Does anyone have any ideas or suggestions. All help is much appreciated. Douglas Walker
  11. Hi, I run a store and as i have read many times here customers often don't return to your site after using PayPal. OK so I have IPN etc and it's great order gets saved and all. But if the customer doesnt return there is no order email etc, which is ok but I would really like this to happen it's just better. So I contacted PayPal about the size of the return to merchant link on the completed payment page. This is the main problem it is tiny and hidden at the bottom. This is what was sent to me. "I am happy to assist you today. There is no real way to control the size of this link. If you have the ability to edit the HTML form post that is made to PayPal, then you can change the link into a button with your own text. To achieve this goal you will need to pass the "cbt" variable with a value equal to the text you wish to appear on the button. An example is below. <input type="hidden" name="cbt" value="Click to Complete Transaction"> Thanks for choosing PayPal". This is great except I don't really understand it Does anyone have any ideas or suggestions. All help is much appreciated. Douglas Walker
  12. Hi I have header tags controller installed and want to install your mod categories descriptions but i run into a problem with admin/categories.php What I have to find $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id])); if ($action == 'insert_category') { What is in my file with header tags controller $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id]), 'categories_htc_title_tag' => (tep_not_null($categories_htc_title_array[$language_id]) ? tep_db_prepare_input($categories_htc_title_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_desc_tag' => (tep_not_null($categories_htc_desc_array[$language_id]) ? tep_db_prepare_input($categories_htc_desc_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_keywords_tag' => (tep_not_null($categories_htc_keywords_array[$language_id]) ? tep_db_prepare_input($categories_htc_keywords_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_description' => tep_db_prepare_input($categories_htc_description_array[$language_id])); //HTC EOC if ($action == 'insert_category') { What I have to replace that / integrate that with $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id])); // - START - Category Descriptions $categories_heading_title_array = $HTTP_POST_VARS['categories_heading_title']; $categories_description_array = $HTTP_POST_VARS['categories_description']; $sql_data_array['categories_heading_title'] = tep_db_prepare_input($categories_heading_title_array[$language_id]); $sql_data_array['categories_description'] = tep_db_prepare_input($categories_description_array[$language_id]); // --- END - Category Descriptions if ($action == 'insert_category') { Many Thanks Doug
  13. Very sorry i placed this in the wrong section my apologies it should be in http://www.oscommerce.com/forums/index.php?showtopic=251308
  14. Hi I have header tags controller installed and want to install your mod categories descriptions but i run into a problem with admin/categories.php What I have to find $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id])); if ($action == 'insert_category') { What is in my file with header tags Controller $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id]), 'categories_htc_title_tag' => (tep_not_null($categories_htc_title_array[$language_id]) ? tep_db_prepare_input($categories_htc_title_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_desc_tag' => (tep_not_null($categories_htc_desc_array[$language_id]) ? tep_db_prepare_input($categories_htc_desc_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_keywords_tag' => (tep_not_null($categories_htc_keywords_array[$language_id]) ? tep_db_prepare_input($categories_htc_keywords_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_description' => tep_db_prepare_input($categories_htc_description_array[$language_id])); //HTC EOC if ($action == 'insert_category') { What i have to replace that / integrate that with $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id])); // - START - Category Descriptions $categories_heading_title_array = $HTTP_POST_VARS['categories_heading_title']; $categories_description_array = $HTTP_POST_VARS['categories_description']; $sql_data_array['categories_heading_title'] = tep_db_prepare_input($categories_heading_title_array[$language_id]); $sql_data_array['categories_description'] = tep_db_prepare_input($categories_description_array[$language_id]); // --- END - Category Descriptions if ($action == 'insert_category') { many thanks for your help Doug
  15. Hi i have a curious problem. When I have more than one shipping module installed I get two change address buttons and text on the checkout_shipping page. any help appreciated i also have pwa installed Doug
×
×
  • Create New...