Shredhead Posted December 29, 2004 Posted December 29, 2004 how do i change the Shipping & Returns information...privacy...terms...etc....
Guest Posted December 29, 2004 Posted December 29, 2004 all text for language is contained in the appropriate includes/language/english/????.php file, thus if privacy on the front, it will be privacy.php in the english directory
Shredhead Posted December 29, 2004 Author Posted December 29, 2004 i keep getting an error message on line 27 i have no idea what is wrong can someone please look at this for me.......... <?php /* $Id: shipping.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2002 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE', 'Shipping & Returns'); define('HEADING_TITLE', 'Shipping & Returns'); define('TEXT_INFORMATION', 'Hours 9 am - 6 pm Monday - Friday<P> Closed weekends and UPS holidays.<P> Website Contents<P> EBR Performance believes the contents and specifications of its catalog and website are correct. We assume no liability for any errors in listings, specifications, part numbers, prices or model applications. We reserve the right to change specifications, product descriptions, product quality, pricing and application at any time without notice and without further obligation.<P> Availability<P> Not all products listed are guaranteed to be available at the time of order.<P> Shipping & Handling<P> The customer is responsible for all shipping charges. All orders are shipped via UPS-Ground unless customer makes other arrangements. All products are carefully picked, packed, inspected and in good condition when shipped. Responsibility for the product becomes the customer's when product is transferred to a common carrier. All shipments must be inspected upon receipt. All claims for damages and shortages are to be made with the carrier.<P> Shipments made only to USA addresses. For orders to be delivered to Alaska or Hawaii - please call.<P> To place case purchases, please call 281-326-6686 or email<P> Shipping charges are calculated based on your order subtotal.<P> Customer may, at their expense, request UPS-Red, UPS-Blue or UPS 3-Day service. Call EBR Performance or place your request in the comments box when ordering online. A representative will contact you with the additional shipping cost.<P> Delivery Times<P> UPS Ground - Please allow up to 10 working days from date of shipment on non<P> backordered items. Priority Shipping - Please allow up to 5 working days from date of shipment on non backordered items.<P> Payment<P> Orders may be prepaid by money order, cashiers check or wire transfer. Checks will be accepted from pre-authorized dealer accounts. We accept Visa & MasterCard. Any overpayment will be posted as a credit on account or refunded when requested in writing. Credits are valid for a period of one (1) year from issuance. Orders may be shipped COD (cash only) via UPS at the customers' expense. Returned Checks & Refused Shipments<P> A $25.00 processing fee will be charged for all returned checks. The fee charged for refused shipments is $25.00 or 20% restocking, whichever is greater, plus applicable freight charges. Payment is to be made in full immediately.<P> Returns & Exchanges<P> Merchandise may be returned or exchanged within a period of 15 days from receipt. Returned items must be in new, sellable condition with all originally included packaging. Refunds will be made to the original purchasing credit card number after inspection of returned items. <P> Return shipping fees are not refundable unless an error was made by EBR Performance.<P> All authorized returns must be accompanied by a return authorization number (RAN), a copy of the original invoice and a letter of explanation. Contact EBR Performance for the required RAN.'); ?>
boxtel Posted December 29, 2004 Posted December 29, 2004 i keep getting an error message on line 27 i have no idea what is wrong can someone please look at this for me..........<?php /* $Id: shipping.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright ? 2002 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE', 'Shipping & Returns'); define('HEADING_TITLE', 'Shipping & Returns'); define('TEXT_INFORMATION', 'Hours 9 am - 6 pm Monday - Friday<P> Closed weekends and UPS holidays.<P> Website Contents<P> EBR Performance believes the contents and specifications of its catalog and website are correct. We assume no liability for any errors in listings, specifications, part numbers, prices or model applications. We reserve the right to change specifications, product descriptions, product quality, pricing and application at any time without notice and without further obligation.<P> Availability<P> Not all products listed are guaranteed to be available at the time of order.<P> Shipping & Handling<P> The customer is responsible for all shipping charges. All orders are shipped via UPS-Ground unless customer makes other arrangements. All products are carefully picked, packed, inspected and in good condition when shipped. Responsibility for the product becomes the customer's when product is transferred to a common carrier. All shipments must be inspected upon receipt. All claims for damages and shortages are to be made with the carrier.<P> Shipments made only to USA addresses. For orders to be delivered to Alaska or Hawaii - please call.<P> To place case purchases, please call 281-326-6686 or email<P> Shipping charges are calculated based on your order subtotal.<P> Customer may, at their expense, request UPS-Red, UPS-Blue or UPS 3-Day service. Call EBR Performance or place your request in the comments box when ordering online. A representative will contact you with the additional shipping cost.<P> Delivery Times<P> UPS Ground - Please allow up to 10 working days from date of shipment on non<P> backordered items. Priority Shipping - Please allow up to 5 working days from date of shipment on non backordered items.<P> Payment<P> Orders may be prepaid by money order, cashiers check or wire transfer. Checks will be accepted from pre-authorized dealer accounts. We accept Visa & MasterCard. Any overpayment will be posted as a credit on account or refunded when requested in writing. Credits are valid for a period of one (1) year from issuance. Orders may be shipped COD (cash only) via UPS at the customers' expense. Returned Checks & Refused Shipments<P> A $25.00 processing fee will be charged for all returned checks. The fee charged for refused shipments is $25.00 or 20% restocking, whichever is greater, plus applicable freight charges. Payment is to be made in full immediately.<P> Returns & Exchanges<P> Merchandise may be returned or exchanged within a period of 15 days from receipt. Returned items must be in new, sellable condition with all originally included packaging. Refunds will be made to the original purchasing credit card number after inspection of returned items. <P> Return shipping fees are not refundable unless an error was made by EBR Performance.<P> All authorized returns must be accompanied by a return authorization number (RAN), a copy of the original invoice and a letter of explanation. Contact EBR Performance for the required RAN.'); ?> <{POST_SNAPBACK}> customers' expense. should be customers\' expense. Treasurer MFC
Guest Posted January 11, 2005 Posted January 11, 2005 Maybe you can put the html code you have there into a string, for example: $shipTEXT = "Hours 9 am - 6 pm Monday - Friday<P>Closed weekends and UPS holidays.<P> etc..." (I used $shipTEXT for shipping.php $privTEXT for privacy, etc..) Then put the string into the TEXT_INFORMATION code as follows: define('TEXT_INFORMATION', $shipTEXT); And as boxtel stated, make sure you have proper break characters in your code. Probably useless information I'm giving you but this is what I had to do to get my shipping.php and privacy.php pages to work. Hope this helped.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.