Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Hotclutch

Members
  • Posts

    2,621
  • Joined

  • Last visited

  • Days Won

    40

Everything posted by Hotclutch

  1. How does a menu(s) like this respond across device breakpoints, or does the user have to keep that in mind when designing his menu ? Do brands (manufacturers) also go into menus ?
  2. The V4 SEO URLs are optional ? Out of the box install still has php URLs with query string parameters ? Will it be possible for a developer to adapt Chemo's Ultimate SEO URLs for the V4 osCommerce ?
  3. I will give you a break now and ask some more questions during the week 😁 Have a nice Sunday.
  4. Usually when there is no width="x" height="y" specified on the <img> tag it causes a problem. You can maybe check on a validator like gtmetrix or page speed to confirm what i am saying.
  5. Images to attributes - also very good.
  6. Great post. Watermark and the drag & drop as stock features sounds very good. BTW wrt to automatically resizing of images, in the HTML output will the resized width and height dimensions be specified, or will it just be left blank as in the current osCommerce ? This is important for SEO, otherwise the browser has to do the resizing.
  7. How will these work in the new osCommerce, how many pics per product, and what options are there wrt uploading of product images ?
  8. What does this mean - will there be a paid version of osCommerce also ?
  9. Sorry, i think you misunderstand. The default theme consists of a template set right ? I am referring to the number of templates in the template set.
  10. Is there a header and a footer template ? Or can the header and footer of each page be customised in their respective templates ? Can php conditions be used in templates ?
  11. Add-On or Plug-In. There are other free and opensource projects that use these names for extensions so i would call them that. Also "contribution" would be a fine description for the free extensions like in the past.
  12. That's invalid syntax. You cannot redirect query strings like that in htaccess. You can do more harm than good when experimenting with htaccess like this, my suggestion is not to make entries in htaccess until the code you put is fully tested by someone who knows htaccess rules (which are complex). Just do this for now.
  13. $optional_rel_prods_content .= ' <div class="card" itemprop="isRelatedTo" itemscope itemtype="http://schema.org/Product">'; $optional_rel_prods_content .= ' <meta itemprop="url" content="' . tep_href_link('product_info.php', 'products_id=' . $optional_rel_prods_values['pop_products_id_slave']) . '" />'; switch (MODULE_CONTENT_PRODUCT_INFO_RELATED_PRODUCTS_HEIGHT_MODE) { case 'Equal Height': $optional_rel_prods_content .= ' <div class="card-body text-center">'; break; case 'Fixed Height': $optional_rel_prods_content .= ' <div class="card" style = "height:' . MODULE_CONTENT_PRODUCT_INFO_RELATED_PRODUCTS_HEIGHT_VALUE . 'em;">'; break; case 'None': $optional_rel_prods_content .= ' <div class="card">'; break; } Can't be right. You already have: $optional_rel_prods_content .= ' <div class="card" itemprop="isRelatedTo" itemscope itemtype="http://schema.org/Product">'; then you have a case where; case 'None': $optional_rel_prods_content .= ' <div class="card">'; break; which means somewhere in your output you could end up with <div class="card" itemprop="isRelatedTo" itemscope itemtype="http://schema.org/Product"><div class="card">
  14. Someone posted a similar type problem just a few posts back from yours. You need to find where in your script it is generating these parameters and then fix it, by adding code possibly. Even if the problem is already fixed / removed, google will continue to crawl the URLs indefinitely, until you put a 301 redirect on URLs of that type. A quick fix for Google would be to ignore those parameters in webmaster tools, MSN also has an ignore parameter tool.
  15. If you are redirecting index,php to the root, then you don't want to be submitting that URL in a sitemap. You should be submitting the root URL. If it's not easily possible with code, then hopefully it will be possible just to remove that entry form the sitemap, Google will still index the root URL. Also webmaster tools will alert with an error if you do have index.php in a sitemap, whilst there is a 301 redirect on it. Any links in your script should be changed over to the root domain URL, otherwise you're linking to a perpetual redirect.
  16. does not make sense. Once you delete the product, there's nothing in the code that would cause that. Unless you have something else going on.
  17. The URL (product) you are trying to redirect has been deleted, or still exists in the database? What i gave should work for the former case, not sure what to suggest if you have the latter scenario.
  18. the syntax should be like this: Redirect 301 /old-product-p-23.html /new-product-p-24.html put it at the bottom of the rules.
  19. I think code was introduced (unknowingly) that used cpath instead of the proper cPath, and subsequently removed / deactivated, that's why a search reveals nothing. Could have been anything like a poorly coded HT module that caused this.
  20. i suggest that you don't add cpath as a parameter for google to ignore. It's better to let google crawl all those URLs and redirect to the proper format.
  21. The point i am trying to make is that you have both cpath and cPath in your indexed URLs, and this is not normal. Maybe you had it before you installed SEO URLs - i don't know - core osCommerce does not do that. Maybe you installed something else that introduced that paramter cpath.
  22. These are not garbage URLs if they are being crawled by googlebot or MSN. This is a serious problem that needs to be fixed, because it's a generator of duplicate content. And once it's there it takes forever to clean up. I don't use this addon, but i would advise not to install it if this is the case. If anyone is interested, they could throw a few of the versions onto a test store to try and determine when this behaviour was introduced.
×
×
  • Create New...