Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tikidiboo

Pioneers
  • Posts

    47
  • Joined

  • Last visited

Profile Information

  • Real Name
    andy

tikidiboo's Achievements

  1. Hi, i have also tried installing this contribution to 2.3.1. i am almost there. When you view the site map i get this error. Parse error: syntax error, unexpected $end in /home/blah/public_html/blah/dynamic_sitemap.php on line 340 I guess this is a missing ; or } i cant spot the culprit allthough there are many missing ones in for/if/else loops etc guessing php 5.3.8 dont like these missing ones. Any ideas anyone
  2. Hi ive installed wishlist 2.0 and stuggled to get it working. managed to get it to not add the product to the shopping cart. But now its not adding it to the wishlist. checked the database and nothing is going in there.. also added a product in the dtabase through phpmyadmin and it still doesnt show. Any help appreciated.
  3. Hi, I am looking for some sites with this addon, so i can see it working before i use it on my own site. Cheers
  4. Hi, I wish to alter Store Pickup Shipping Module so that i can pick and choose which products i allow for store pickup. I thought this would be quite easy such as adding a field to the product in database to set whether it can be picked up or not. If its the only item in the shoping basket allow store pickup. If there is more than one product in the shopping cart and anyone of those does not allow store pickup then diasable store pickup.... Or something along those lines. I could probably code it but i would have to add it to the SPU class and im not too hot on classes. Any help appreciated Ta andy
  5. Hi all , i have installed Store Pickup v1.5b works fine but i want to be able to select which products i want available for store pick up. Obviously i need to have a value in the database for each product which can be set ( 1 or 0 ) depending on whether the product can be picked up from store or not. easy... if there are more than one products in the cart store pickup is only available if both products can be picked up. otherwise might as well deliver both. something like this: <? $products = $cart->get_products(); for ($i=0, $n=sizeof($products); $i< $n; $i++) { Check if all products available for store pick up.. if not disable store pickup for this purchase. else checkout as normal. ?> 1) I dont know how i would disable store pickup, defined in the database then pulled out and passed to a constant MODULE_SHIPPING_SPU_STATUS could i just MODULE_SHIPPING_SPU_STATUS = false; 2) Im not sure were i wuold put this code... checkout_shipping.php im guessing. some where in this??? if (sizeof($quotes) > 1 && sizeof($quotes[0]) > 1) { } any help appreciated... Andy
  6. I tested links_submit.php again this time i deleted the http:// out of the image url field and it went through fine. what im saying is if they dont enter an image url and they dont delete the http:// in the text box there is an error. if they delete the http:// it goes through fine. so i need to??? .... remove the http:// and have a note next to it saying (including the http:// ) or ..... :'(
  7. Sorry posted in wrong place please remove.......doh!
  8. Hi Installed and got the following errors: when submitting a link Warning: parse_url(http://) [function.parse-url]: Unable to parse URL in /home/blah/public_html/includes/functions/links.php on line 182 Warning: Cannot modify header information - headers already sent by (output started at /home/blah/public_html/includes/functions/links.php:182) in /home/blah/public_html/includes/functions/general.php on line 29 Any help appreciated Andy
  9. Hi Installed and got the following errors: when submitting a link Warning: parse_url(http://) [function.parse-url]: Unable to parse URL in /home/blah/public_html/includes/functions/links.php on line 182 Warning: Cannot modify header information - headers already sent by (output started at /home/blah/public_html/includes/functions/links.php:182) in /home/blah/public_html/includes/functions/general.php on line 29 Any help appreciated Andy
  10. sorted this. BUT .. I need to edit the .fla file i have got flash 8 pro but i am guessing the source file is from cs3 and i cant open it. Could anyone with cs3 convert this file down for me so i can edit it? Thanks
  11. Hi Just installed flas carousel works a treat execpt under the carousel is an error which was not there before and dissapears if i turn the carousel off : Notice: Undefined variable: new_products_category_id in /home/******/public_html/includes/modules/featured.php on line 19. Any ideas how to solve this many thanks andy
  12. Hi, having problems getting cron job to work. How do i incorporate the email text into the php file? Best guess>>> // Get the message text $file_string = "Dear %%customer_name%% Thank you for your recent purchase from %%store_name%%. If you have any questions or concerns about your order, please let us know. We would like to invite you to help others make an informed decision about our products. Please take a moment to rate and review %%each%% %%products%% that you ordered. When composing your review you can now upload a picture of the product you have purchased. Please be as honest as possible when giving your comments, whether positive or negative. To review the %%products%% you ordered, please use the following %%link%%: %%product_list%% Thanks for shopping with us, and we hope to see you again soon. %%store_name%% Customer Service %%store_email%% %%store_url%% (c)1998-%%year%%, %%store_name%%"; $message = str_replace ($search_array, $replace_array, $file_string); // Replace the generic text with custom variables ??
  13. OK found solution found this define('EMAIL_TEXT_FOOTER', ''); in admin/includes/english/edit_orders.php change to define('EMAIL_TEXT_FOOTER', "Make Payable To: ". MODULE_PAYMENT_MONEYORDER_PAYTO . "\n\nSend To:\n" . STORE_NAME_ADDRESS . "\n\n" . 'Your order will not ship until we receive payment.'); JOB DONE THANKS MEE :-"
  14. Update: I looked at the order in the database and the text is cut short in there as well so im guessing is retrieved from the database then added to the email. Also noticed this in moneyorder.php define('MODULE_PAYMENT_MONEYORDER_TEXT_TITLE', 'Cheque / Money Order'); define('MODULE_PAYMENT_MONEYORDER_TEXT_DESCRIPTION', 'Make Payable To: ' . MODULE_PAYMENT_MONEYORDER_PAYTO . '<br><br>Send To:<br>' . nl2br(STORE_NAME_ADDRESS) . '<br><br>' . 'Your order will not ship until we receive payment.'); define('MODULE_PAYMENT_MONEYORDER_TEXT_EMAIL_FOOTER', "Make Payable To: ". MODULE_PAYMENT_MONEYORDER_PAYTO . "\n\nSend To:\n" . STORE_NAME_ADDRESS . "\n\n" . 'Your order will not ship until we receive payment.'); But in create_order_process it is just: define('HEADING_CREATE', 'Check Customer Details'); define('DEFAULT_PAYMENT_METHOD', "Cheque / Money Order."); define('TEXT_SUBTOTAL', "Subtotal :"); define('TEXT_DISCOUNT', "Discount :"); define('TEXT_DELIVERY', "Delivery :"); define('TEXT_TAX', "Tax :"); define('TEXT_TOTAL', "Total :"); I did try changing to define('HEADING_CREATE', 'Check Customer Details'); define('DEFAULT_PAYMENT_METHOD', "Cheque / Money Order." . 'Make Payable To: ' . MODULE_PAYMENT_MONEYORDER_PAYTO . '<br><br>Send To:<br>' . nl2br(STORE_NAME_ADDRESS) . '<br><br>' . 'Your order will not ship until we receive payment.'); define('TEXT_SUBTOTAL', "Subtotal :"); define('TEXT_DISCOUNT', "Discount :"); define('TEXT_DELIVERY', "Delivery :"); define('TEXT_TAX', "Tax :"); define('TEXT_TOTAL', "Total :"); Which was why its getting cut short - too big for database. i could change the size of the database field but dont really want to Any help on achieving this appreciated. Andy
  15. Hi All, posted this elsewhere but not getting any help. i have just installed Manual Order Maker v1.5.5 it all works fine except when i send a confirmation email( after manually creating the order ) There is some text missing from the email Like this: Payment Method ------------------------------------------------------ Cheque / Money Order. Mak When it should be: Payment Method ------------------------------------------------------ Cheque / Money Order Make Payable To: Impact Glazing Send To: Impact Glazing, 14 Riley Close, Royal Oak Industrial Estate, Daventry, Northants, NN11 8QT. Freephone: 0800 505 3384 Your order will not ship until we receive payment. Any ideas anyone?
×
×
  • Create New...