Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

PrettyWolfie

Pioneers
  • Posts

    40
  • Joined

  • Last visited

Everything posted by PrettyWolfie

  1. Hey Smalto... Had that problem before and it was due of having customers with no zone_id. If the client has to type in the name of the state instead of choosing from the dropdown, they will not be displayed on All Customers Report. Sucks, I know... <_< I used the solution on post#64, where Azer sugests to forget the zone_ids... You loose the states but all the rest shows fine. :thumbsup:
  2. The links work perfectly... Only the images don't show...
  3. Hi, I installed the osCAffiliate 2.6 Having problem on the Build a Link for Categories. The links work fine but the Categories Images do not display. :'( Build a product link is working fine... Any suggestions? Thanks! :thumbsup:
  4. Found out where the problem was... <_< Paypal IPN, has the Transaction Type option to Send individual items to PayPal or aggregate all as one total item. The discount just works if one chooses the aggregate. For obvious reasons... because the discount is on the order total, not in each product. :D Thanks Amanda! :lol:
  5. I build website for others, that's why I wanted them to have a way of changing the infobox without having me going thru the code... :blush: Can't a code be created, like, if there is no box, show no code? :-" That would be way too good...
  6. Hi, Boxtel... I installed your contribution. Very good! But for whatever reason the discount is not being passed to Paypal (IPN). Any suggestions? :o
  7. Hellous... I am trying to have the column controller working with STS v4. I actually manage to make it work, but... (of course) I hit a wall. For example, when I disable the category box on the left column, I get the "$categorybox" written there... >_< Is there a way to fix the code to prevent the disabled boxes to be substituted by their variables? :( Thanks for any help! :wub:
  8. I am having this problem as well... the reorder don't recognize the text atributes... :huh: Did anyone got lucky with that?
  9. Ok... I just rolled back to the previous version I was using, and moved only the code on the checkout_shipping.php related to the shipping things... to just under the 2 first statements require('includes/application_top.php'); require('includes/classes/http_client.php'); // if no shipping destination address was selected, use the customers own address as default if (!tep_session_is_registered('sendto')) { tep_session_register('sendto'); $sendto = $customer_default_address_id; } else { // verify the selected shipping address $check_address_query = tep_db_query("select count(*) as total from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$customer_id . "' and address_book_id = '" . (int)$sendto . "'"); $check_address = tep_db_fetch_array($check_address_query); if ($check_address['total'] != '1') { $sendto = $customer_default_address_id; if (tep_session_is_registered('shipping')) tep_session_unregister('shipping'); } } // if no billing destination address was selected, use the customers own address as default if (!tep_session_is_registered('billto')) { tep_session_register('billto'); $billto = $customer_default_address_id; } else { // verify the selected billing address $check_address_query = tep_db_query("select count(*) as total from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$customer_id . "' and address_book_id = '" . (int)$billto . "'"); $check_address = tep_db_fetch_array($check_address_query); if ($check_address['total'] != '1') { $billto = $customer_default_address_id; if (tep_session_is_registered('payment')) tep_session_unregister('payment'); } } Working beautifully. B)
  10. Frank I get those... I marked the differences in red. On first attempt cart => Object - shoppingcart Object ( [contents] => Array ( [143] => Array ( [qty] => 1 ) ) [total] => 70 [weight] => 100 [cartID] => [content_type] => physical [total_virtual] => 70 [weight_virtual] => 600 ) language => english - english languages_id => 1 - 1 currency => GBP - GBP navigation => Object - navigationhistory Object ( [path] => Array ( [0] => Array ( => index.php [mode] => NONSSL [get] => Array ( ) => Array ( ) ) [1] => Array ( => Array ( [action] => process [comments] => [shipping] => mzmt_table1 [gv_redeem_code] => [payment] => worldpay [preview_x] => 26 [preview_y] => 7 ) ) [2] => Array ( => Array ( ) ) ) [snapshot] => Array ( ) ) => checkout_shipping.php [mode] => NONSSL [get] => Array ( [n] => 1 ) => checkout_confirmation.php [mode] => NONSSL [get] => Array ( [paynow] => 5 ) sendto => 4 - 4 billto => 4 - 4 credit_covers => 1 - 1 customer_id => 4 - 4 customer_default_address_id => 4 - 4 customer_first_name => Alessandra - Alessandra customer_country_id => 222 - 222 customer_zone_id => 0 - 0 cartID => - action => process - process comments => - shipping => Array - Array ( [id] => mzmt_table1 [title] => Shipping to UK (Royal Mail Recorded (+2 days)) [cost] => 10 ) gv_redeem_code => - payment => worldpay - worldpay preview_x => 26 - 26 preview_y => 7 - 7 Hitting back from the worldpay page cart => Object - shoppingcart Object ( [contents] => Array ( [143] => Array ( [qty] => 1 ) ) [total] => 70 [weight] => 100 [cartID] => [content_type] => physical [total_virtual] => 70 [weight_virtual] => 800 ) language => english - english languages_id => 1 - 1 currency => GBP - GBP navigation => Object - navigationhistory Object ( [path] => Array ( [0] => Array ( => index.php [mode] => NONSSL [get] => Array ( ) => Array ( ) ) [1] => Array ( => checkout_shipping.php [mode] => NONSSL [get] => Array ( [n] => 1 ) => Array ( [action] => process [comments] => [shipping] => mzmt_table1 [gv_redeem_code] => [payment] => worldpay [preview_x] => 26 [preview_y] => 7 ) ) [2] => Array ( => checkout_confirmation.php [mode] => NONSSL [get] => Array ( [paynow] => 5 ) => Array ( ) ) ) [snapshot] => Array ( ) ) sendto => 4 - 4 billto => 4 - 4 customer_id => 4 - 4 customer_default_address_id => 4 - 4 customer_first_name => Alessandra - Alessandra customer_country_id => 222 - 222 customer_zone_id => 0 - 0 cartID => - action => process - process comments => - shipping => Array - Array ( [id] => mzmt_table1 [title] => Shipping to UK (Royal Mail Recorded (+2 days)) [cost] => 10 ) payment => worldpay - worldpay preview_x => 26 - 26 preview_y => 7 - 7 the lines for for ccgv are unquoted tep_session_unregister('gv_redeem_code'); tep_session_unregister('credit_covers'); If I upload the file as it is on the contribution, is jumps worldpay completely and goes straight to checkout_success.php :x I am feeling sick... The version I was using before was working except for the shipping bug.
  11. Installed the latest fastcheckout... perfect! vouchers work, shipping that wasn't showing the right options unles you refreshed the page works nicely now... The one small problem is... I am using WorldPay, and I think there is something on the passing the info to worldpay, it shows a page error. If you hit back and go in again it works... http://www.usbmemory.com/shop/ Can someone please please help me? :sweating:
  12. nana, I found out why my CCVG was not working. A deep case of DUMB ASS Flu I must have caught. Forgot to habilitate them on the configuration page on admin. duh :blink:
  13. great! Can you tell me which version of the CCGV did you use? Thanks Alessandra
  14. Did anyone made the CCGV contribution actually work with the fast easy checkout? I tried tweaking here and there, but the damn thing always go to ../checkout_payment.php?payment_error=ot_gv&error=You+did+not+enter+a+redeem+code. Totally annoying! >_< It should be going to checkout_confirmation.php but it never gets there. It actually recognise the coupon. It shows on the shopping cart box and it shows nicely on the checkout_shipping.php page as well (I am using the module shipping as well)... So why oh why? :blink: Alessandra Bastin
  15. :huh: I was wondering if you can change the code to have more than 2 products. Did anyone tried that yet?
  16. I''l take alook and see if I can adapt it for the articles... Thanks! :)
  17. Did anyone manage to make a full list of articles separated by topics? Kind of like the box articles-topic.php but with the articles listed and linked as well... With the articles names linked to the articles? :blush: That would save tons of clicks till the users gets to the article itself.
  18. Hi, Iwik... I have to be ashamed now... I managed to fix that problem a while ago, but I can't remember how I did it. :-" (too much php makes the brain mushy I guess). But thanks for the tip! I will probably need it on the next store. :thumbsup:
  19. Hello, I made the same question on another topic, but here it goes... I am building up a book store. I found the manufacturers pop up great, because I am just using the manufacturers as authors. But what I really wanted was for the manufacturer/author information to show with the image when one clicks "other products", then one would see the author picture, a text about the author and bellow it the "other products/titles" for that author. How do I do that? :blink:
  20. ;) Accordingly to Sharkie a "dictionary/go-to-bed alarm" attached to EZfields! :D
  21. :wub: Love you both, Sharkie and Paulie! Loved the strike thru! Thanks for saving my neurones...
  22. ;) Everybody wants to know how to put the strike through!!!!
  23. :D Ok, I am not soooo dummie after all! Found it! :P
  24. Ok, I am feeling the most techno-dummie one can be! :blink: This is the Step 1 on the EZier manual: Where do I do this?!?!? <_< If someone save me from the the monster of Dumbness!!! :wub:
×
×
  • Create New...