Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

starynightskyz

Pioneers
  • Posts

    137
  • Joined

  • Last visited

Everything posted by starynightskyz

  1. What contribution did you add to get the extra information pages? I ask because I notice, Contribution "Information Pages Unlimited 2.07" uses CKeditor and not FCKeditor. I don't know if that could make a difference or not, But possibly. Yesterday, when I started to add the editor, I almost installed CKeditor instead of the FCKeditor I needed for my contrib, which was Extra Pages Manager.
  2. I installed fck editor today, It seemed to install without a hitch using the autoinstaller. I also installed extra pages manager using fckeditor. I can't seem to find anything in the administration area of the site that lets me edit the fckeditor settings. Shouldn't there be? Also, when I use the product to list a new product, it disapears in the admin area. I can't find it in the admin section under catalog products, but It does show up in the store. Why is it not sticking around in the admin area? Thanx in advance for your imput. Nancy :D
  3. Is there a way to have a second Products_new.php, place it in the header, customize rows and columns? I would like one row of 5 to 6 images. Also, rather than have it display the latest products added, I would like it to pick products at random, when clicked the viewer is taken to the product page. I have looked, and I know their are random image pics for header, but they don't seem to be what I am looking for. I have messed around with the header and do have a row of 5 images now but that's alot of editing to have it changed every day or hour. Thanx Nancy :D
  4. I just loaded wishlist for maybe the third time, same one, For what ever reason, this time I installed it, the list where you place your, and your friends email is not showing on the wishlist page. I get the instructions, and a message box but no email. in the admin section, all I am asked in the wishlist configuration is how many products per page(max wish list ). I am missing the following out of the admin section. Max Wish list Box Display emails and the wishlist redirct Any Ideas as to what the heck went wrong? Nancy :D
  5. I downloaded, and installed the osc affiliate module. Woohoo, works great. Easier to install than I expected. A couple of questions though, I would like to make some changes if I can. 1, The person I am installling it for, would prefer to give an in store credit, rather than pay out cash once their credit reaches a certain dollar value. Is it possible to add this function? 2, I would like to move the affiliate box off the front page. Perhaps put it on a seporate page So it can only be accessed by being given a special page link, after requesting information, or by applying. Would doing this cause problems? The concern is, that if to many people are able to sign up to fast, all at once if the orders start comming in, the store owner won't be able to meet the product demand. 3, Is it possible to make html frames for the affiliates and pull the store into the individualised frames? so the affiliate link can be www.thedomain.com/jesica 4,There are product images that do not show up when people generate their product codes,I just get the blank image box with the X Is there a fix for this? 5, Loging intot he affiliate programs works. I did have an error page when trying to access (my account) I searched around and changed some of the code. Now when I click on my account it brings me to the standard osc account log in page. This means affiliates have to log in twise, depending on weather they are shopping, or want to look at their affiliate information. Is my site running backward a**, or are these two logins integrated? If not is there a way to integrate them? Thanxs so much for help, Nancy:D
  6. In my product page, I would like to have additional images. 2, 3 or 4, I'm not fussy. I would like to just mouse over or click on the thumbnail images and have them show in the place of the larger product image. No popups. See example http://www.simpleviewer.net/simpleviewer/examples/small/ I have looked through the contribs, even installed one which did not work. I know that there is a contrib that has one combined with it, but in the example it shows at the bottom of the page, and selects images from entire categories. is there a product image contribution that is very similar to the example shown? Thanx, Nancy
  7. Thanx Germ, I did eventually get it... you were absolutly right it was the missing <div id= "CONTAINER"> While still searching for a fix for the problem, I ended up returning to the instructions for Virtical Center shop contrib. and there is was, Open /catalog/include/header.php Find the following code: if ($messageStack->size('header') > 0) { echo $messageStack->output('header'); } ?> Straight after add the following code: <div id="CONTAINER"> I took a look and sure enough it was MIA , It took a bit to catch on but it's fixed, Thanks to your help! Nancy :D
  8. Ahh Germ, I'm sorry ( embarassed ) to have to ask, where, in what folder, what page/s should I be looking for the <div id= "CONTAINER"> I'm not exactly sure what you mean by HTML Source. I know there is snippits everywhere through out the site. but I'm not sure of what I should be looking for exactly. Tanx
  9. This morning I added the wishlist contribution. And afterward my layout is all distorted. I have my page at 990 px using centercart and the container is (was) a solid grey. Now I have sections of grey it stretches accross the full page. The only thing I did different was to add the box to the left, rather than the right side of the page. Can anyone think of or see a snippit of the code that might conflict with center cart? Thank you for you help, View My Site below is the instructions for manual install. Product_info.php Find at around line 82 if (tep_not_null($product_info['products_model'])) { $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>'; } else { $products_name = $product_info['products_name']; } ADD BELOW //DISPLAY PRODUCT WAS ADDED TO WISHLIST IF WISHLIST REDIRECT IS ENABLED if(tep_session_is_registered('wishlist_id')) { ?> <tr> <td class="messageStackSuccess"><?php echo PRODUCT_ADDED_TO_WISHLIST; ?></td> </tr> <?php tep_session_unregister('wishlist_id'); } //DISPLAY PRODUCT WAS ADDED TO WISHLIST IF WISHLIST REDIRECT IS ENABLED AROUND LINE 221 FIND <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td> ADD UNDER THIS // WISHLIST <td align="center"><?php echo tep_image_submit('button_wishlist.gif', 'Add to Wishlist', 'name="wishlist" value="wishlist"'); ?></td> //WISHLIST END PRODUCT_INFO.PHP EDITS ***************************************************************************************** Edit catalog/checkout_process.php FIND THIS CODE AROUND LINE 291 // load the after_process function from the payment modules $payment_modules->after_process(); ADD AFTER // remove items from wishlist if customer purchased them $wishList->clear(); END CHECKOUT_PROCESS.PHP EDIT ****************************************************************************************** Edit catalog/logoff.php FIND AROUND LINE 26 $cart->reset(); ADD BELOW $wishList->reset(); END LOGOFF.PHP EDIT ***************************************************************************************** Edit catalog/login.php FIND AROUND LINE 57 // restore cart contents $cart->restore_contents(); ADD UNDER // restore wishlist to sesssion $wishList->restore_wishlist(); END LOGIN.PHP EDIT ****************************************************************************************** Edit catalog/create_account.php FIND AROUND LINE 229 // restore cart contents $cart->restore_contents() ADD UNDER // restore wishlist to sesssion $wishList->restore_wishlist(); END CREATE_ACCOUNT.PHP EDIT ******************************************************************************************** Edit catalog/includes/filenames.php ADD TO THE END BEFORE THE LAST ?> define('FILENAME_WISHLIST', 'wishlist.php'); define('FILENAME_WISHLIST_HELP', 'wishlist_help.php'); define('FILENAME_WISHLIST_PUBLIC', 'wishlist_public.php'); END FILENAMES.PHP EDIT ******************************************************************************************* Edit catalog/includes/database_tables.php ADD TO THE END BEFORE THE LAST ?> define('TABLE_WISHLIST', 'customers_wishlist'); define('TABLE_WISHLIST_ATTRIBUTES', 'customers_wishlist_attributes'); END DATABASE_TABLES.PHP EDIT ******************************************************************************************** Edit catalog/includes/colum_right.php FIND require(DIR_WS_BOXES . 'shopping_cart.php'); ADD BELOW if($wishList->count_wishlist() != '0') { require(DIR_WS_BOXES . 'wishlist.php'); } END COLUM_RIGHT.PHP EDIT ******************************************************************************************* Edit catalog/includes/application_top.php FIND AROUND LINE 24 // include shopping cart class require(DIR_WS_CLASSES . 'shopping_cart.php'); ADD BELOW // include wishlist class require(DIR_WS_CLASSES . 'wishlist.php'); FIND AROUND LINE 317 // Shopping cart actions Directly above that code ADD this: ADD THE FOLLOWING CODE SEE THE WARNING BELOW ALSO ****** ABOVE ******** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ NOTE @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IF YOU DO NOT ADD THIS THEN THE ADD TO WISHLIST BUTTON WILL ADD THE ITEM TO THE SHOPPING CART @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // wishlist data if(!tep_session_is_registered('wishList')) { tep_session_register('wishList'); $wishList = new wishlist; } //Wishlist actions (must be before shopping cart actions) if(isset($HTTP_POST_VARS['wishlist_x'])) { if(isset($HTTP_POST_VARS['products_id'])) { if(isset($HTTP_POST_VARS['id'])) { $attributes_id = $HTTP_POST_VARS['id']; tep_session_register('attributes_id'); } $wishlist_id = $HTTP_POST_VARS['products_id']; tep_session_register('wishlist_id'); } tep_redirect(tep_href_link(FILENAME_WISHLIST)); } @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ NOTE @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IF YOU DO NOT ADD THIS THEN THE ADD TO WISHLIST BUTTON WILL ADD THE ITEM TO THE SHOPPING CART @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ END APPLICATION_TOP.PHP EDIT ****************************************************************************************************** Edit catalog/includes/languages/english.php Find this code: // shopping_cart box text in includes/boxes/shopping_cart.php define('BOX_HEADING_SHOPPING_CART', 'Shopping Cart'); define('BOX_SHOPPING_CART_EMPTY', '0 items'); ADD BELOW // wishlist box text in includes/boxes/wishlist.php define('BOX_HEADING_CUSTOMER_WISHLIST', 'My Wishlist'); define('TEXT_WISHLIST_COUNT', 'Currently %s items are on your Wish List.'); ENGLISH.PHP END EDIT ***************************************************************************************************** Edit catalog/includes/languages/english/product_info.php Add at the very bottom before the ?> //WISHLIST ADDITION define('PRODUCT_ADDED_TO_WISHLIST', 'Product has been successfully added to your wishlist'); END PRODUCT_INFO.PHP EDIT ******************************************************************************************************* Add in a link to the wishlist wherever you want Place this code where you want the "My Wishlist" link to appear, whether it be on the account page or in the header. Your choice. Use this code: <a href="<?php echo tep_href_link(FILENAME_WISHLIST); ?>"><?php echo BOX_HEADING_CUSTOMER_WISHLIST; ?></a> ******************************************************************************************************** ################################################################## ################################################################## ################################################################## ADMIN INSTALLATION ################################################################## ################################################################## ################################################################## EDIT ADMIN/INCLUDES/BOXES/REPORTS.PHP ADD '<a href="' . tep_href_link(FILENAME_STATS_WISHLISTS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_REPORTS_WISHLISTS . '</a><br>' . END REPORTS.PHP ****************************************************************************************************** Edit catalog/admin/includes/database_tables.php Add at the very bottom before the ?> define('TABLE_WISHLIST', 'customers_wishlist'); define('TABLE_WISHLIST_ATTRIBUTES', 'customers_wishlist_attributes'); END DATABASE_TABLES.PHP EDIT ******************************************************************************************************** Edit catalog/admin/includes/functions/general.php FIND AROUND LINE 901 tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " where products_id = '" . (int)$product_id . "' or products_id like '" . (int)$product_id . "{%'"); ADD BELOW //Wishlist addition to delete products from the wishlist when deleted tep_db_query("delete from " . TABLE_WISHLIST . " where products_id = '" . (int)$product_id . "'"); tep_db_query("delete from " . TABLE_WISHLIST_ATTRIBUTES . " where products_id = '" . (int)$product_id . "'"); END GENERAL.PHP EDIT *********************************************************************************************************** BY UMAR ******************************************************************************************************** Edit catalog/admin/includes/filenames.php ADD before last ?> //Wishlist addition define('FILENAME_STATS_WISHLISTS', 'stats_wishlists.php'); END FILENAMES.PHP EDIT *********************************************************************************************************** Edit catalog/admin/includes/languages/english.php FIND AROUND LINE 96 define('BOX_REPORTS_PRODUCTS_PURCHASED', 'Products Purchased'); ADD BELOW //Wishlist addition define('BOX_REPORTS_WISHLISTS', 'Products Wishlisted'); END ENGLISH.PHP EDIT
  10. For what ever reason, (this is what I need to know ) the heading in the currency box is showing as black times roman size 12 font. this is what it is suposed to be, .CurrenciesBox { background: #7B8377; } TD.CurrenciesBoxHeading { font-family: Verdana, Arial, sans-serif; font-size: 10px; font-weight: bold; background: #FFFFFF; color: #ffffff; } .CurrenciesBoxContents { background: #7B8377; font-family: Verdana, Arial, sans-serif; font-size: 10px; I have individual box css installed on my cart. and this morning I added the replace drop down currency with flag images add on. However I'm pretty sure this problem was pre existing. I did an experiment to see if it was just the position in the column so I moved it down the left column but no change. Does anyone have any tips, clues, sugestions to where I might find the source of the problem. KR, Nancy
  11. I fixed the problem, and thought I would post how, just incase anyone else is daft like me. As it turns out in the moduals (order total ) section of the admin, I had two items showing their order of display at the same setting, both "points redemption and subtotal" were set to show 4th in line of the checkout. One was over riding the other. I set all the items in there to the proper show order, 1, 2, 3, 4 ,5, and now the points dollar value is properly being subtracted from the subtotal of the order. I hope this little tidbit is useful to someone else. KR Nancy :D
  12. I installed this contrib, an think it's great. Everything seems to be fine. It shows in customers account, it shows on the product page and during check out it asks if the customer would like to use their points, however when it comes to actually going through the cart, the points dollar value is not being subtracted from the end total. what do I have to do to fix this minor glitch :P Thanx kindest regards, Nancy
  13. This is a great contrib, easy instal etc. However, after adding it to my cart I notice all the text on the product info page, including all the boxes on the left) has the text aligned in the center. Can anyone tell me how to fix this? Thanx Nancy
  14. I like this contrib. But it's not working correctly for me, Yesterday I couldn't get the button to show at all. After reading all the posts I made some changes, corrected a few things and presto there it was. I tested it, and it worked, with a maximum of 20 percent off the listed retail price. I recieved emails both as customer and store owner. What I didn't realise until later is, It will only show for one product. Although I have it turned on for many other products. the button will only show for one. for all the others I get the imput box to make an offer, but the mao buttin is mia Does anyone have any idea why this would happen? and how I might fix it. Its just wierd. Thanx in advance, Nancy
  15. I like this contrib. But it's not working correctly for me, Yesterday I couldn't get the button to show at all. After eading all the posts I made some changes, and presto there it was. However the make offer button is only showing for one product, even though I turned it on for atleast ten others. Can anyone think of why this might be happening. I don't understand why it would work for one, and not the rest. Thanx in advance, Nancy :D
  16. Thanx Geoffrey! I think I might be in trouble. If it really is an SQL problem, I don't think the contribution files are complete, and here's why. For the City Delivery, It did not come with sql commands. It only says it's created based on Local Delivery versions 1.2 - with updates for 1.6 This folder doesn't come with SQL commands So I can only assume I would of had to installed them first from One of those two versions. For Local Delivery Mod, I started with the latest "complete" package. Version 3.0 This only came with an SQL update from Update Local Delivery v1.61 toLocal Delivery v1.7 The 3.0 update txt said it didn't require updates. it was this I tried to add to the SQL , through my php admin INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES ('', 'Sort Order', 'MODULE_SHIPPING_DLY_SORT_ORDER', '10', 'Sort order of display.', 6, 16, NULL, NULL, NULL, NULL), ('', 'rue du magasin', 'MODULE_SHIPPING_DLY_ADRESSE', '5 rue Saint Louis', 'Rue du magasin', 6, 17, NULL, NULL, NULL, NULL), ('', 'CP', 'MODULE_SHIPPING_DLY_CP', '62200', 'Code postal magasin', 6, 18, NULL, NULL, NULL, NULL), ('', 'Ville', 'MODULE_SHIPPING_DLY_VILLE', 'Boulogne sur mer', 'Ville magasin', 6, 19, NULL, NULL, NULL, NULL), ('', 'Pays', 'MODULE_SHIPPING_DLY_PAYS', 'FRANCE', 'Pays du magasin', 6, 20, NULL, NULL, NULL, NULL); However, both mods have differnt tages ( i guess youd call them ) one has DLYC the other DLY3 Is that the problem? with the SQL? Nancy :D
  17. Today I loaded the Local Delivery 3.0 I was getting an error, and to be honest , the zones were mind bogling and I had no clue how to set it up for Canada. So I loaded City Delivery Mod and it too has an error, I had to of missed a step somewhere... I've fumbled with what little I know all day to try to fix it, and nothing. I searched for exact spelling in the files downloaded and tried to upload some sql commands, they would not load properly. Can someone please point me in the right direction? Here's what I see in the admin Here's what I get in the cart Kindest Regards, Tanx Nancy :D
  18. HI, I live in Ontario and I am setting up a shopping cart for a shop located on a reserve. I just know that at some point someone is going to want to be tax exempt. And it would be nice if the shop owner didn't have to correct the taxes manually What I am looking for is a mod that allows the store owner to select the province they live in. In my case it's ontario. The ability to turn on, or off this option in the admin section. Also should include true/false for 1, email copy of status card, and 2, fax copy of status card. In the shopping cart check out, I would like the customer to be able to select tax exempt button, (only if they live in the same province as store owner)and imput their status card number. I would also like to add the following two options. 1, email copy of status card ( both sides ) 2, fax copy of status card ( both sides ) When these options are selected the provinvial tax would be removed from the order total. Would anyone care to tackle a project like this? there might be an easier way but thats how my noggin sees it. I think it would be very useful to canadian shop owners. Nancy :D
  19. HI, I added the customer add product to my site. Works wondeful, except for some buttons that are not showing properly. This is what they look like now, How do I get them to show properly either through using CSS or through including images? obviously something is missing somewhere. KR Nancy:D
  20. Could you open the catalog/includes/form_check.js and cut and paste line 140 with a couple of lines above and below it please. it could be something really simple. like a missing .') but it would help if we could see the line. Nancy :D
  21. I have installed a scrolling links box. It works well enough and I have added google adsense and some other links. The problem is, anytime there is a page refresh, the scroll begins at the begining. This too would be ok, except there is a long blank space when the scroll starts, and after the end of the scroll, it has to go through the blank space once again before getting back to the start. If that makes sense :blush:, Is there a way to get rid of the space at the begining or is it end of the scroll ? it doesn't seem to be in the top or bottom of the html code. Nancy :D
  22. wow that worked great!! Thanx !! define('BOX_INFORMATION_OUR_SPONSORS', '<img src="img/meetsponsors.gif" border="0">');
  23. I have droped an image in the english.php where the text would normaly go. Around the image I am getting a purple border. I would like to know where this colour is comming from so I can change it to match the background. (searched css, index.php and many other folders and can not find the colour. Any sugestions? Nancy :D
  24. Also I should say, in the regular admin section, (where you would use your regular login and password) when you go to the costomers profiles, Inside each profile you give permission for them to post on your site. Under their name and email it will ask if you, " approve customer Yes or No" select the one you want and save the changes to the profile. Your customers will not be able to load their products until you have given them permission. Nancy :D
×
×
  • Create New...