Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

modulate

Archived
  • Posts

    131
  • Joined

  • Last visited

Profile Information

  • Real Name
    LDM
  • Gender
    Male
  • Location
    UK
  • Website

modulate's Achievements

  1. Thanks Jack This is what I saw listed with install (I went over it from fresh in case there was a conflict within the file through upgrades) Index.php FIND (Around line 298) <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> REPLACE with <?php /*** Begin Header Tags SEO ***/ ?> <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, $htc['htc_title'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> <?php if (tep_not_null($htc['htc_description'])) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td colspan="2"><h2><?php echo $htc['htc_description']; ?></h2></td> </tr> <?php } /*** End Header Tags SEO ***/ ?> Now looking up the file slightly, it seems to appear twice, this is the last part of index.php <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, $category['categories_htc_title_tag'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> <?php if (tep_not_null($htc['htc_description'])) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td colspan="2"><h2><?php echo $htc['htc_description']; ?></h2></td> </tr> <?php } ?> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?></td> </tr> <!--- BEGIN Header Tags SEO Social Bookmarks --> <?php if (HEADER_TAGS_DISPLAY_SOCIAL_BOOKMARKS == 'true') include(DIR_WS_MODULES . 'header_tags_social_bookmarks.php'); ?> <!--- END Header Tags SEO Social Bookmarks --> </table></td> <?php } else { // default page ?> <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php /*** Begin Header Tags SEO ***/ ?> <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, $htc['htc_title'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> <?php if (tep_not_null($htc['htc_description'])) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td colspan="2"><h2><?php echo $htc['htc_description']; ?></h2></td> </tr> <?php } /*** End Header Tags SEO ***/ ?> </table></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="main"><?php echo TEXT_MAIN; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> </table></td> </tr> </table></td> <?php } ?> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> There is a conflict of code to be there twice, but when I remove the bottom Header tags block, it makes the description (actually on the page) empty on categories. It is definitely a conflict on both code, it's just what to change that is baffling me. Thanks for your help.
  2. I had a copy of the index saved from last year when the category text worked, so had a look through that and found this code in the earlier file <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, $category['categories_htc_title_tag'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> <?php if (tep_not_null($htc['htc_description'])) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td colspan="2"><h2><?php echo $htc['htc_description']; ?></h2></td> </tr> <?php } ?> After adding that the category descriptions work again, is that older code from an earlier version.
  3. Many thanks on the tep_hide issue, that is now running fine. Have sent site link and you will see what I mean re the home title on the index. I also noticed category text that appears on each category at the top no longer shows, so is definitely something along the lines of that part of each page. Probably something very simple that I've missed, though have checked all the upgrade edits and even compared it to new edits on the latest version and just can't find where it could be missing something. Thanks for your help.
  4. Wow thanks for your help Jack, really appreciate it. The missing tags were indeed down to unused languages within the store, the message has gone from the top, but now on 'test' it gives this error.. Also, re the missing title, I mean where it normally says the store title at the top on index page under the header.. The header tags work fine on index, its just a slight cosmetic change its made that I can find out how to alter. Many thanks for your help.
  5. Have just upgraded from a very early version of this, and have just two small issues I cannot seem to get to grips with. One is the index title (store name) It is now showing a blank space where it would be, yet the categories and product titles on those pages show fine. Thinking about it, I would rather remove the title on top of the index as opposed to placing it back on. With the changes within the file(s) that this contribution adds, I am finding it hard just to remove the index title at the top (store name) Is there an easy way of doing this Jack without affecting category titles and product titles on other pages? The other issue is, within admin/Header tags SEO it says at the top: Now that would be all products and categories, but yet within the site and checking products in 'View Source' they are all listed there perfect. I am a little dubious about tweaking settings too much (fill empty tags) as it would mean losing all product keywords. An easy solution? Thanks for your time!
  6. Is anyone getting an error where the customer "updates" a ticket? It works fine all round, but when a customer only "updates" they get sent to an error page, even though it has updated? Had a look around but cant see anything?
  7. Had the same thing on a store, and used an older version which sorted it.
  8. :thumbsup: Thanks, brilliant contribution, a breeze to install. :thumbsup:
  9. Tryed that Jack, with various files from that contribution, but all seem to do the same. Its chances that maybe its clashing with a contribution on there i have added, I dont know, very strange, as it all ran fine before. Luckily the keywords are getting added per product the same, and the index is holding some keywords added prior to errors. If I find any solution, I will post in case anybody gets the same.
  10. All of a sudden getting the same thing, after adding more products to the site. In a differnet browser, the page after generating gives a Memory exhausted error message, instead of the blank screen in IE7. So I tryed to up the memory to no avail. If anyone has the answers, would be appreciated, to save digging through all the files looking?
  11. Jack Seem to be suddenly getting new errors on Header Tags. When adding a new page, then hitting the update button, it seems to see the update button on the next table down, thus deleting a selected page too aswell as adding the new page? Also on the edit pages screen, after updating some pages there, some fields on pages are lost? For example - Viewing source on store index, it shows the info I added, but yet in tags it shows blank. Any ideas? It had been fine for ages since install. I first thought it was the server, but that hasnt changed either. Cheers Modulate
  12. You need to change permissions on the files listed in install for that contribution, its in the readme. Change the permissions to 777 for the listed files by your FTP program, then you should be set.
  13. There is a seperate seo_class file in the contributions area, that fixes that problem, just overwrite the old one. Check the contributions for the mod, and its in there listing something alike in the description.
  14. I tryed that, and it threw errors, maybe my editing, but thought I deleted the right info in the page.
  15. Has anyone with this installed managed to get it running with PWA or Guest Account? Ive tryed twice, and it sends the pages everywhere full screen again, having to get rid of it everytime.
×
×
  • Create New...