Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Stealth1

Pioneers
  • Posts

    335
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Stealth1

  1. Is the "description" that I input in the admin side supposed to be displayed on the page under the section heading? Did I do something wrong? http://tougetuning.com/testsite/index.php/dvd-movies-action-c-3_10
  2. Thanks for straightening me out promptly, installed and appears to be working great! Now I just have to get time to figure out how to use it properly.
  3. I am trying to add the Categories and Manufacturers Descriptions but I am stuck at the following. I have 4 instances of the code your saying to look for. I found the first within the nested categories but the other one I can't determine from your description. Find ... There are three of these we only want to change the first two. One in nested categories the other in products/manufacturers listings </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> Replace with ... </table> <?php KissMT_Desc_Extn::init()->output(); ?> </td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> The second Instance is here // needed for the new products module shown below $new_products_category_id = $current_category_id; ?> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> The third is here <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> The fourth is here <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  4. I am getting the following errors after submitting my sitemaps to google. Invalid tag value This XML tag has an invalid value. Please fix it and resubmit. Parent tag: url Tag: changefreq Value: Problem detected on: Jan 27, 2010
  5. Thanks for the link, so I went through and changed everything and now its working properly. For those who may run into this problem in the future here is what I had to do. I have All Products SEO V1.2 for reference Changed the following files from all-products.php to all_products.php in Catalog/ Catalog/includes/functions/ Catalog/includes/boxes/ Catalog/includes/languages/english/ Catalog/includes/modules/ Catalog/admin/ Catalog/admin/includes/languages/english/ Changed all-products.php to all_products.php inside the following files Catalog/includes/filenames.php Catalog/includes/column_left.php Catalog/admin/includes/english/english.php Catalog/admin/includes/filenames.php
  6. I've tried searching but it comes up with 7 pages of stuff that doesn't relate to all products SEO regardless of what I search. If I change all-products.php to all_products.php what else will I have to change?
  7. Does this work with All Products SEO? I am getting the following errors when I click "view all products" Warning: USU5 could not find a valid base filename, please inform the developer. in /home/trplscom/public_html/tougetuning/testsite/includes/application_top.php on line 69 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/trplscom/public_html/tougetuning/testsite/includes/application_top.php:69) in /home/trplscom/public_html/tougetuning/testsite/includes/functions/sessions.php on line 102 Warning: USU5 could not find a valid base filename, please inform the developer. in /home/trplscom/public_html/tougetuning/testsite/includes/application_top.php on line 69
  8. Ok that makes sense, is this the correct command? wget -q http://www.tougetuning.com/testsite/googlesitemap/index.php >/dev/null 2>&1
  9. Fixed the date, still need to know how to get Tax, Shipping, Subtotal and Total onto the emailed invoice?
  10. What correct values? My original command is php ......................./tougetuning/testsite/googlesitemap/index.php What values are you referring to as using for *****? Also for the new command I am guessing I would change the second part to the below? * * * * * * wget -q http://www.tougetuning.com/testsite/googlesitemap/index.php >/dev/null 2>&1
  11. Just installed this and want to complete the install. I have Google XML Sitemap and I understand I have to upload 2 files but I am unsure of the last part of the instructions. Could you possibly explain this to me or what I need to do.
  12. I just installed this and I have an issue, the sub-total is not showing nor is the taxes. Sub-Total is always displaying $0.00 and then somehow the Total: ends up at some random number which I can't seem to find a reason for as it is not just the shipping. There is also no line for taxes it simply has sub-total, shipping, total. Another issue is it doesn't display any of the payment details, I use money order as a method of payment yet it doesn't tell the customer where or who to send the Money Order to.
  13. For those having issues with the price entered being multiplied make sure you look at the following admin area. Under Admin -> Config -> Shipping/Packaging there is an option for multiplying the rate if the zone is not the one for your country. It is likely set to 3 and your home country probably isn't set either. For those who are having the issue where the entered price isn't staying when you edit and update a product and then is showing $0.00 no matter what I found this was caused by the instructions being unclear. In /catalog/admin/categories.php Where it says find: (There are multiple instances of this code in this file and I believe people are placing the code in the wrong space because of this) if (USE_CACHE == 'true') { tep_reset_cache_block('categories'); tep_reset_cache_block('also_purchased'); } Add Before: // start indvship $sql_shipping_array = array('products_ship_zip' => tep_db_prepare_input($_POST['products_ship_zip']), 'products_ship_methods_id' => tep_db_prepare_input($_POST['products_ship_methods_id']), 'products_ship_price' => round(tep_db_prepare_input($_POST['products_ship_price']),4), 'products_ship_price_two' => round(tep_db_prepare_input($_POST['products_ship_price_two']),4)); $sql_shipping_id_array = array('products_id' => (int)$products_id); $products_ship_query = tep_db_query("SELECT * FROM " . TABLE_PRODUCTS_SHIPPING . " WHERE products_id = " . (int)$products_id); if(tep_db_num_rows($products_ship_query) >0) { if (($_POST['products_ship_zip'] == '')&&($_POST['products_ship_methods_id'] == '')&&($_POST['products_ship_price'] == '')&&($_POST['products_ship_price_two'] == '')){ tep_db_query("DELETE FROM " . TABLE_PRODUCTS_SHIPPING . " where products_id = '" . (int)$products_id . "'"); } else { tep_db_perform(TABLE_PRODUCTS_SHIPPING, $sql_shipping_array, 'update', "products_id = '" . (int)$products_id . "'"); } } else { if (($_POST['products_ship_zip'] != '')||($_POST['products_ship_methods_id'] != '')||($_POST['products_ship_price'] != '')||($_POST['products_ship_price_two'] != '')){ $sql_ship_array = array_merge($sql_shipping_array, $sql_shipping_id_array); tep_db_perform(TABLE_PRODUCTS_SHIPPING, $sql_ship_array, 'insert'); } } // end indvship It Should say Find: if (USE_CACHE == 'true') { tep_reset_cache_block('categories'); tep_reset_cache_block('also_purchased'); } tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id)); } break; case 'copy_to_confirm':
  14. Under Admin -> Config -> Shipping/Packaging there is an option for multiplying the rate if the zone is not the one for your country. It is likely set to 3 and your home country probaby isn't set either.
  15. Just installed this and there appears to be a BIG bug which may have been caused by a previous revision. If you have an item set at an individual shipping price and another that is set to use your normal shipping module (say UPS). If the 2 items are in the cart together the customer can checkout with only paying the shipping for the individual shipping. It should work as follows -Item with Individual Shipping Price only in cart - Display all options (UPS, Individual shipping price etc) -Item with No Individual shipping price, normal weight/dimensions setup (Display UPS only, do not display Individual Shipping Price) -1 Item with Individual shipping Price set and 1 with the normal weight/dimensions (Display UPS only, do not display Individual Shipping Price) I suck at code so I probably won't be able to fix this myself but hoping someone else can
  16. Is Step 15 correct for the install instructions? 15) In catalog/includes/boxes/categories.php, FIND: new infoBox($info_box_contents); ADD BEFORE: $info_box_contents[] = array('align' => 'center', 'text' => '<a class="allproductsBox" href="' . tep_href_link(FILENAME_PRODUCTS_NEW) . '" title="' . BOX_INFORMATION_ALLPRODS_SEO_WHATSNEW . '">' . BOX_INFORMATION_ALLPRODS_SEO_WHATSNEW .'</a>');
  17. What do I need to add to get the Tax, Shipping etc to show up on the emailed invoice like the invoice available on the site? Also on the Account History section it lists the date as "Friday 15 January, 2010" but I want it to be "Friday January 15, 2010"
  18. I just installed CKeditor on V2.2 RC2 without any hicups using the instructions from this contribution http://addons.oscommerce.com/info/7112 I haven't tested all the features but had no problems editing an existing product and adding a new one.
  19. Just installed this mod and it works 99% correct so far from what I have tested. The only problem I came across was when I click the "New Order Email" button I get the following error. 1146 - Table 'trplscom_osc3.eorder_text' doesn't exist SELECT * FROM eorder_text where eorder_text_id = '1' and language_id = '1' [TEP STOP]
  20. I figured out YOUR error which is in the instructions in states "In includes/languages/english.php (or other language)" where it should say admin/includes/languages/english.php Maybe you should take a look at your work before you blame others!
  21. That's amazing, thanks for the fixed, I guess the module is based on actually working with a store and uploading images. I just had all the stock photos on there. Any idea on the resizing of the button for remove from cart? Can I just copy over the code for the lightbox portions to the review pages to get them to work for images displayed on those pages aswell? I know on one I have to change $product_info to $review but other than that I believe they are similar for those sections but wanted to check in advance.
  22. My site ONLY uses english, all others have been removed. The file reviews.php is in the admin/ directory. I completely followed the instructions as I mentioned before. This only happens when I click the little image for preview after installing your update for the admin side review section. Otherwise the contribution works perfect except using this "shortcut" button to preview a review.
  23. I followed the instructions exactly, this line is added into includes/languagres/english.php // return a dbase formatted date for ddmmyyyy format adjust if you use the mmddyyyy format function tep_store_date ($date) { return substr($date, 6, 4) . '-' . substr($date, 3, 2) . '-' . substr($date, 0, 2) . ' ' . date('H:i:s'); }
  24. The site is www.tougetuning.com/testsite, you can add a product and view the cart to see what I mean. I went completely through the oscThumb install and removed all added code. There is also nothing left from it in the shopping_cart.php file so I can't figure out why it is so small. Also the Lightbox is still not working it just keeps showing the loading thing but never actually displays the image when clicked.
×
×
  • Create New...