Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dinopacha

Pioneers
  • Posts

    204
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by dinopacha

  1. @@kymation Thank you I will look for that.
  2. @@kymation What to do if the get 1 free product has more colors and sizes to pick???? Now you can't choose different colors or sizes.
  3. @@kymation, Hi Jim, I mean when you sell lingerie. You have an bra in the categorie/products. Now you have an short you put in in the product attribute. The bra will cost €???, (The short will cost €??? Only In combination with the bra). So you can not buy the short without buying the bra. (Because the short is not in the categorie/products itself) Now my question is when you put the bra in (get 1 free) I want to put in the short as the one you get free. I hope I explained it well.
  4. Hi, I want to know if it is possible to put in a product attribute?
  5. @@kymation Thank you, tonight I'm gonna give it a try.
  6. @@kymation If I update admin/categories.php do I need to update my database?? If so, please can you tell me how to do the sql update because I'm a noob. So help will be appreciated. Thank you,
  7. @auzStar Can you tell me what do I need to update?? The whole bootstrap version or some files??
  8. @kymation ​I have installed Categories Images Content Module (Bootstrap). but now I got the following error in the index. b.t.w. I use headertags from @Jack_mcs could this be the problem? 1054 - Unknown column 'cd.categories_description' in 'field list' select c.categories_id, c.categories_image, cd.categories_description, cd.categories_name from categories_description cd join categories c on (c.categories_id = cd.categories_id) where c.parent_id = '0' and cd.language_id = '1' order by c.sort_order [TEP STOP]
  9. Hi Dominic, The addon is easy to install, and looks real nice. Thank you.
  10. Hi, first of all I have bootstrap 2.3.4 I installed the product tabs but it does not work quite well. admin works perfectly, only in the shop itself, I do not see the tabs. I only see the following: Description extra info Tab 2 Tab 3 etc.. and my images he put also under each other. when I don't put the following file in, the images are ok. but the tabs are whole gone. product_info.php <?php include_once (DIR_WS_MODULES . FILENAME_PRODUCTS_TABS); ?>
  11. @Jack_mcs I found the fault why headertags not see the sitemap. in includes/header_tags.php I had the following. // sitemap.php case (basename($_SERVER['SCRIPT_FILENAME']) === FILENAME_SITEMAP): if (! ReadCacheHeaderTags($header_tags_array, basename($_SERVER['SCRIPT_FILENAME']), '')) { $header_tags_array = tep_header_tag_page(FILENAME_SITEMAP); WriteCacheHeaderTags($header_tags_array, basename($_SERVER['SCRIPT_FILENAME']), ''); } break; and it has to be: // sitemap.php case (basename($_SERVER['SCRIPT_FILENAME']) === FILENAME_SITEMAP_SEO): if (! ReadCacheHeaderTags($header_tags_array, basename($_SERVER['SCRIPT_FILENAME']), '')) { $header_tags_array = tep_header_tag_page(FILENAME_SITEMAP_SEO); WriteCacheHeaderTags($header_tags_array, basename($_SERVER['SCRIPT_FILENAME']), ''); } break; Now it works all correctly. :thumbsup:
  12. Hi Jack, Sitemap.php is standing in the root but it has no header tag seo (head code). I have a bootstrap version. You said (The main file, in the root, has to have the Header Tags SEO <head> code. If this is a 2.3 shop then that will automatically be done.) Do I have to put it in manually? And what do I have to put in?
  13. @Jack_mcs I don't get it, so I hope you can re-explain it to me with the sitemap.php. This sitemap is yours. b.t.w the sitemap does not work either in header tags seo. In page control When I look at the dropdown the sitemap will show up. when I click in the dropdow on sitemap.php and type the title, description and keywords it will not showing up on the webpage code. beneath I have the following in my webpage. in index.php I have the following scripts.(from sitemaps) <!-- Begin Sitemap SEO--> <script type='text/javascript' src='javascript/sitemap_seo.js'></script> <?php require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SITEMAP_SEO); include(DIR_WS_MODULES . FILENAME_SITEMAP_SEO_CATEGORY); ?> <!-- End Sitemap SEO --> <!-- Begin Sitemap SEO--> <script type='text/javascript' src='javascript/sitemap_seo.js'></script> <?php require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SITEMAP_SEO); $mapMod = (isset($_GET['manufacturers_id']) ? FILENAME_SITEMAP_SEO_MANUFACTURERS : FILENAME_SITEMAP_SEO_CATEGORY); include(DIR_WS_MODULES . $mapMod); ?> <!-- End Sitemap SEO --> in includes/filenames.php I have the following entry. /***** Begin Sitemap_SEO *****/ define('FILENAME_SITEMAP_SEO', 'sitemap.php'); define('FILENAME_SITEMAP_SEO_CATEGORY', 'sitemap_category.php'); define('FILENAME_SITEMAP_SEO_PRODUCT', 'sitemap_product.php'); define('FILENAME_SITEMAP_SEO_MANUFACTURERS', 'sitemap_manufacturers.php'); /***** End Sitemap_SEO *****/ in languages/english I have sitemap.php <?php /* $Id: sitemap_seo.php 2008-12-20 by Jack_mcs osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE', 'Sitemap'); define('HEADING_TITLE', 'Sitemap'); define('TEXT_CATEGORY_NAME', 'Other products in the <b>%s</b> category'); define('TEXT_MANUFACTURERS_NAME', 'Products by Manufacturer: <b>%s</b>'); define('TEXT_INFORMATION', '<p>Please contact us if you experience any problems finding what you need:</p> ' . nl2br(STORE_ADDRESS) . '<br>' . 'Phone: '. STORE_PHONE . '<br>' . '<a mailto:' . STORE_OWNER_EMAIL_ADDRESS . '>' . STORE_OWNER_EMAIL_ADDRESS . '</a>' ); define('TEXT_SITEMAP_RELATED_PRODUCTS', 'Related Products'); define('TEXT_SITEMAP_RELATED_CATEGORIES', 'Related Categories'); define('TEXT_SITEMAP_RELATED_MANUFACTURERS', 'Related Manufacturers'); define('TEXT_NO_MANUFACTURERS_FOUND', 'No other products were found for this manufacturer.'); define('TEXT_HIDE_PRODUCTS', '(hide products)'); define('TEXT_SHOW_PRODUCTS', '(show products)'); ?>
  14. @@Jack_mcs I'm running 2.3.4 bootstrap In pagecontrol wishlist.php gives the next error. Page not added - file name is invalid - wishlist.php exclude When I look at the dropdown it will show up. When I click in the dropdow on wishlist and type the title, description and keywords it will not showing up on the webpage code. For your numbers above. 1. I have bootstrap 2. It is FILENAME_WISHLIST 3. It is also FILNAME_WISHLIST What else can be the problem Jack????
  15. @Jack_mcs I have a problem with files that not create in headertags page control. Page not added - file name is invalid - wishlist.php exclude I have a total of 7 different files that are not added. Please can you tell me how to add those files in headertags because I understand that not completely.
  16. @Jack_mcs I have found a fault in specials (keywords) After the last word appears a comma with a space between the last word and the comma. <meta name="Keywords" content="Specials, free, another ," / in includes/header_tags.php line 201 you have the following $sortOrder['keywords'][10] = $the_specials;; when I take the [10] and make it [0] then the comma is gonna. can I do that or will I damage other files with this.
  17. @Jack_mcs Hi Jack, I already know how to do it I have put the following in specials.php <div class="contentText"> <?php echo TEXT_MAIN; ?> </div> and the following in includes/languages/english/specials.php define('HEADING_TITLE', '<h2> here will come the text for specials</h2>'); :)
  18. hello jack, sorry to bother you but I'm not sure if I should ask my question here or into a new topic. I would like to put a description under specials, as in the categories is possible. but now I see that I only can fill in the title, description and keywords, but no text like (text visible on the webpage). I know that it is possible in categories with seo headertags. but not for the index, specials sitemap etc... I have looked in includes / languages / english / specials.php. Now I see: define('HEADING_TITLE', 'Specials!'); can I put an <h2> after it like beneath: define('HEADING_TITLE', 'specials! <br> <h2> here will come the text for specials</h2>'); or do I have to make an new define? :wacko:
  19. @@Jack_mcs Your right my mistake. Problem solved. Thank you Jack,
  20. Hi Jack, I have a little problem. When I type an title and description in manufacturer, then it will show up nothing in the source code only the Header Tags Manufacturer Description will show up and the manufacturers name. The title, description, url, title alt will not show up in the source code. I only see it in my admin pageundef the manufacterer. The stranges thing is that afer my url (.nl) 2 slashes standing (//) and then the manufacturer name.
  21. @Jack_mcs I had already seen the catalog in the path. I have it installed and I have to say that it works perfectly. I only changed the server_error.php with the one from @Tsimi I think this one looks nicer. ​ Thanks to all the good things you do Jack. :thumbsup: ​
  22. @Jack_mcs Hi Jack, do I have to put the .htaccess files beneath the rewrite rules or above it.
  23. @auzStar Nice addon but I have one problem. when I type 2 letters ill see 12 products found. now when I'm clicking on show all result nothing will show up. it says no product are found?? b.t.w. I'm testing it on localhost
  24. Hi Jack, I want to say that it really works great. Also install is easy. Thank you..
×
×
  • Create New...