Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mouth56

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by mouth56

  1. hi, ok, my products begin to be on google, day after day (i was not enough patient) thx again for this contribution :)
  2. sorry for the double post thx for these advices Ken, i'll try it, :) greetz, NIco edit : i see "not a template if you see this ..." on the index at the top of ma page, that confirm what i was thinking, boximagethema i use is not recognized as a template. and with the : <title><?php echo ((strlen($categories['categories_name']) > 1) || (strlen($manufacturers['manufacturers_name']) > 1)) ? $header_tags['products_name'] . ' - ' . $breadcrumb_tags->trail_tags(' ') . ' - ' . TITLE : TITLE; ?> </title> i see the name of product and the name of the categorie on the index at the top of the page. what i don't understand is that my website name is "breizh-tekshop" when i write "tekshop" on google, i'm ranking on the first page. but if i write my website name + a product name, google gives no response, but if i write my website name + a manufacturer name, i have a response (but from my listing in my manufacturers boxe). All that would means, that google have index my website but not the product_info pages. <_< now i'm gonna try a sitemap, and google base data feed. after install that, no reason why the contribution don't work with my product_info ... tchuss ;)
  3. thx for these advices Ken, i'll try it, :) greetz, NIco
  4. i'm using the contribution boximagethema that let me use gif picture for my boxes, and this contribution change the stylesheet too, you think it could be the problem ? there's 2 other difference in my product_info.php between the source code of osc and the code with box image thema the first one: source code : <?php if ($product_check['total'] < 1) { ?> <tr> <td><?php new infoBox(array(array('text' => TEXT_PRODUCT_NOT_FOUND))); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> with boximagethema: <?php if ($product_check['total'] < 1) { ?> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => TEXT_PRODUCT_NOT_FOUND); // Nom des css pour l'intérieure de la boxe et le cadre // new infoBox($info_box_contents, nom_de_la_css_pour_l'intérieure, nom_de_la_css_pour_le_cadre); new infoBox($info_box_contents, infoBoxContentsProductInfo, infoBoxProductInfo); ?> </td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> the second one: source code: <?php if (tep_not_null($product_info['products_image'])) { ?> <table border="0" summary="" cellspacing="0" cellpadding="2" align="right"> <tr> <td align="center" class="smallText"> <script type="text/javascript"><!-- document.write('<?php echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '<\/a>'; ?>'); //--></script> <noscript> <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?> </noscript> </td> </tr> </table> <?php } ?> <p><?php echo ereg_replace('& ', '& ', stripslashes($product_info['products_description'])); ?></p> <!-- W3C --> <?php with boximagethema: <?php if (tep_not_null($product_info['products_image'])) { ?> <table border="0" cellspacing="0" cellpadding="2" align="right"> <tr> <td align="center" class="smallText"> <script language="javascript"><!-- document.write('<?php echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>'); //--></script> <noscript> <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?> </noscript> </td> </tr> </table> <?php } ?> <p><?php echo stripslashes($product_info['products_description']); ?></p> <?php do you think the problem could be here ??? i'm not good in php, and i'm affraid i will not be able to adapt the code. do you think i will have the same problem if i install another version of header tag ? i really need this solution because i sell a lot of different product (rare vynil records) and this would be perfect for me, i have no money for publicity. for the search on google, i have open my website on monday of this week, how many time after does it works usually ?(i have guess it would be quick to be on "google" but my knowledge on these are limited) :blush: big thx again, your help is very appreciated :) have a nice week-end ;) NIco
  5. thx for your quick response :) i'm not using template and for the code of the product_info, i have tried with the first, and the second code that are given in the installation explanation : ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo ((strlen($categories['categories_name']) > 1) || (strlen($manufacturers['manufacturers_name']) > 1)) ? $header_tags['products_name'] . ' - ' . $breadcrumb_tags->trail_tags(' ') . ' - ' . TITLE : TITLE; ?> </title> <meta name="description" content="<?php echo $header_tags['desc_tag']; ?>"> <meta name="keywords" content="<?php echo $header_tags[keywords_tag]; ?>"> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="<? echo THEMA_STYLE;?>"> i have leave the categorie meta tag( in the admin) empty, but if i have understood, it doesn't matter for what i'm looking for. i have an htaccess on my admin roots, does it make matter ? thx again, NIco
  6. hi, thx for this contribution :) i have had no problem for the installation, the title and the description for the home page works but the title, description and keyword for the product_info page did not. i have try with writing title, descriptions of my products, or try with let them blank (then it would take my default title and description if i have understand) but the both don't work, when i make a search of my products on google, i don't find them. :( can you help me ? thx, NIco ps : sorry, my english is not very good
×
×
  • Create New...