Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kaasif

Archived
  • Posts

    5
  • Joined

  • Last visited

Everything posted by kaasif

  1. I read a lot in this forum that, this contribution is very good for SEO, but I don't see any difference between this and products_new.php (comes with osc). They both have images, price, buy now button, etc. Can somebody tell me the difference between the 2 and do I still need to install this contribution even though I have a link to products_new.php from all my pages currently. Can somebody help me to decide (for Seo purposes only). Thanks
  2. I have v2.1d from stonebridgecomputing installed and everything is working fine. I also submitted to google base and google sitemap with the updated SEO URLS. Google even indexed lot of my pages, but since almost 3 weeks google dropped all my Ultimate SEO URLs, except the category pages, they even removed my sub category pages, google retained only my old indexed pages i.e "product_info.php?products_id=3503". I see google bot in my log files accessing the new URLs everyday, but none of it is showing up in search. Is anybody else having this problem? Please give me a possible fix to this problem. I am thinking to remove Ultimate SEO Urls if I cannot find a fix, Is there a easy removal documentation or script, as the install did some database changes too? Also, how do I stop Google bot to ignore my Ultimate SEO popup_image pages. I have already restricted popup_image.php, but with Ultimate SEO bot ignores it due to changes in URLs. Please Help with any possible suggestions
  3. I want the Master Description to be displayed in the Slave product_info page below the slave description, as my slave description is actually the slave product attributes and is only 1-2 lines. To achieve this with very limited knowledge of php and sql below this code in product_info <?php echo stripslashes($product_info['products_description']); ?> </td></tr> I included <tr><td> <?php $master_desc_query = tep_db_query("select pds.products_description from " . TABLE_PRODUCTS . " pr, " . TABLE_PRODUCTS_DESCRIPTION . " pds where pr.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . " ' and pr.products_master = pds.products_id "); $master_desc_results = tep_db_fetch_array($master_desc_query); if ($master_desc_results['products_description'] != null) { ?> <?php echo stripslashes($master_desc_results['products_description']); ?> </td></tr> <?php } ?> It seems to work fine in my store. I just want to know is there any better and more efficient to achieve this or if this code is correct and will not break anything else. Thanks Asif
×
×
  • Create New...