electra Posted August 14, 2006 Share Posted August 14, 2006 hello i can not find how to edit my privacy.php, conditions.php, or shipping.php when i go to the actual file that says shipping.php for example on oscommerce i do not see any of the content in the file thats displayed on my site so where do i got to edit it?, thanks alot Link to comment Share on other sites More sharing options...
Guest Posted August 14, 2006 Share Posted August 14, 2006 In catalog/includes/languages/english/privacy.php shipping.php conditions.php The_Bear Link to comment Share on other sites More sharing options...
electra Posted August 14, 2006 Author Share Posted August 14, 2006 see that didnt work i have no idea how the coder did this site but that doesnt edit the pages.. In catalog/includes/languages/english/privacy.php shipping.php conditions.php The_Bear Link to comment Share on other sites More sharing options...
warleb Posted August 14, 2006 Share Posted August 14, 2006 hello i can not find how to edit my privacy.php, conditions.php, or shipping.php when i go to the actual file that says shipping.php for example on oscommerce i do not see any of the content in the file thats displayed on my site so where do i got to edit it?, thanks alot Exactly what do you want to edit. Like me I was a complete noob with oscommerce but you need to spend some time finding out how it fits together. Once you know this then you will know which php files you need to edit. You need to know this if you are going to open a web shop because if it goes tits up there may not be a person on here that can help you so you need to know what you change and where you changed it. If you want to update your privacy.php file with your own text then the_bear is right. If you open up the privacy.php and look for your some text 'enter your privacy information here' or something like that then you just replace that with your own text. other than that I don't see what the problem is. Unless you give more info. I don't bother doing backups. I love the thrill of screwing it all up! Link to comment Share on other sites More sharing options...
electra Posted August 14, 2006 Author Share Posted August 14, 2006 yeah, i see thatbut what im saying is when i edit that its not doing anything, however the guy coded the site obviously didnt do it the right way he did it some other way... Exactly what do you want to edit. Like me I was a complete noob with oscommerce but you need to spend some time finding out how it fits together. Once you know this then you will know which php files you need to edit. You need to know this if you are going to open a web shop because if it goes tits up there may not be a person on here that can help you so you need to know what you change and where you changed it. If you want to update your privacy.php file with your own text then the_bear is right. If you open up the privacy.php and look for your some text 'enter your privacy information here' or something like that then you just replace that with your own text. other than that I don't see what the problem is. Unless you give more info. Link to comment Share on other sites More sharing options...
electra Posted August 14, 2006 Author Share Posted August 14, 2006 ok heres how the file looks <?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', ' dfadaf.'); ?> and here is how the page looks www.shoecreations.com/shipping.php see what i mean?, its the same for the other pages as well.. yeah, i see thatbut what im saying is when i edit that its not doing anything, however the guy coded the site obviously didnt do it the right way he did it some other way... Link to comment Share on other sites More sharing options...
richardcrowe Posted August 17, 2006 Share Posted August 17, 2006 In catalog/includes/languages/english/privacy.php shipping.php conditions.php The_Bear Thanks for posting this answer Bear, it was a big help to me. Link to comment Share on other sites More sharing options...
pinklep Posted March 14, 2007 Share Posted March 14, 2007 Did the shipping.php, etc get moved or changed? I cant find it under the path listed in this thread. :'( I am a Jedi, like my father before me! Link to comment Share on other sites More sharing options...
jonquil Posted March 14, 2007 Share Posted March 14, 2007 When entering content into a defined area, be sure to use \ (backslash) before an ' (apostrophe or single quote). This is wrong: What's New? This is right: What\'s New? (catalog)/includes/languages/english/shipping.php <?php /* $Id: shipping.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url] Copyright © 2002 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE', 'Shipping & Returns'); define('HEADING_TITLE', 'Shipping & Returns'); define('TEXT_INFORMATION', '[b]Put here your Shipping & Returns information.[/b]'); ?> (catalog)/includes/languages/english/privacy.php <?php /* $Id: privacy.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url] Copyright © 2002 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE', 'Privacy Notice'); define('HEADING_TITLE', 'Privacy Notice'); define('TEXT_INFORMATION', '[b]Put here your Privacy Notice information.[/b]'); ?> (catalog)/includes/languages/english/conditions.php <?php /* $Id: conditions.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url] Copyright © 2002 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE', 'Conditions of Use'); define('HEADING_TITLE', 'Conditions of Use'); define('TEXT_INFORMATION', '[b]Put here your Conditions of Use information.[/b]'); ?> jon It's all just ones and zeros.... Link to comment Share on other sites More sharing options...
triktoys Posted April 15, 2007 Share Posted April 15, 2007 Also this might help- If you are just editing text from the "place your shipping terms here" etc or whatever it says, you can edit the raw HTML. If you click to edit that file, and you get an empty, blank field, that means your HTML editor is enabled. You need to disable it to edit the raw HTML. All you need to do is unclick the box that says" "use HTML editor - turns on HTML editor for editing web pages through the file manager. Disable this to edit with a regular text editor." then you will see where it says "add your shipping terms here" and you can just change that text. Hope that helps. Eric Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.