Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Flotec

Pioneers
  • Posts

    122
  • Joined

  • Last visited

About Flotec

  • Birthday 03/11/1952

Profile Information

  • Real Name
    Hakan
  • Gender
    Male
  • Location
    Stockholm

Recent Profile Visitors

7,941 profile views

Flotec's Achievements

  1. I did install this addon a year ago and it has worked perfectly until the web hotel changed server, Today I cannot see the different settings under Configuration/SEOURL 5. The SEO URL 5 page in admin is only a blank page with no parameters. What can be wrong? I have a OScommerce V.2.3.3 on now a PHP 5.2.9 server.
  2. The Mini Template is indeed a quite simple way to improve the look and feel of standard Oscommerce. It makes it easy to have a very proffesional look of the store without having to pay for someone to do it or buy a template. Ones installed and understood it's very easy to modify the store. The support I have got from George was also extremely helpful. I do recommend anyone to use it.
  3. I have not done the last update of header tags. Can that change anything?
  4. OK. Problem is I got it to work for the first topic but not the others. Don't ask me how I did that. All the rest of the topics will have the title "Articles - default title". I'm not able to change that however if I look in page control it's correct. Is there something else that overrides the header tags?
  5. Thank you for your help. Problem is I have SEO URL 5 installed also so it's difficult to see the name of the page. Is there a good way to see the old name of the topics and articles without having to switch SEO URL of and on again?
  6. Problem is I can't get this to work. I can find the articles in the page control so I should be able to change header tags there. However I have problems with that. The different topics I cannot find in page control so I suppose I cannot change that. It should be really good to be able to edit this in article manager instead. I managed to delete article=1 in page control. I thought I could only delete the header contents but the article=1 is now missing in the list of page control. Can I get it back somehow?
  7. When editing an article shouldn't I get a field for header tags also in the same way as when editing products? Shouldn't I get the same also when editing topics? What type of fault have I done if I cannot see those fields in admin?
  8. For anyone that wants to take away the "All topics" link in the box this is how I did it in bm_articles.php fileon line 255: /********************* BUILD TOPICS ********************/ if (ARTICLE_BOX_DISPLAY_TOPICS_SECTION == 'true') { // $articlesArray['all_topics']['sort_order'] = ARTICLE_BOX_DISPLAY_TOPICS_SECTION_SORT_ORDER; // $boldTags = GetBoldTags(FILENAME_ARTICLE_TOPICS); // $articlesArray['all_topics']['string'] = '<a href="' . tep_href_link(FILENAME_ARTICLE_TOPICS, '', 'NONSSL') . '">' . $boldTags['start'] . BOX_ARTICLE_TOPICS . $boldTags['stop'] . '</a><br />'; if (ARTICLE_BOX_DISPLAY_TOPICS_LINKS == 'true') $articlesArray['all_topics']['string'] .= $topics_string; // $articlesArray['all_topics']['string'] .= (SEPARATE_TOPICS == 'true' ? '<hr class="separatorArticle">' : '<br />'); } Just comment out the first three lines. The fourth one is to take away the separator also which is another issue.
  9. OK, I will try to do that. I suppose you mean in the bm_articles.php file, is that correct? But I suppose the way you intended it to work was that setting all topics to false should turn this off?
  10. "Display Box Articles - All Topics Section" set to false turns off everything "Display Box Articles - All Topics Links?" set to false turns off the topics but not the all topics link (the opposite of what I want)
  11. How do I remove the All Topics link in the Articles box? This places itself on the first position before the individual topics. When I press RSS feed and include that in for example Google Reader I get the link "RSS article Feed" in the reader. I should want to change that to the store name. Is that possible?
  12. When trying to use the search I got the following error: 1146 - Table 'xxxxxx.TABLE_HEADERTAGS_KEYWORDS' doesn't exist select 1 FROM TABLE_HEADERTAGS_KEYWORDS where keyword = 'samsung' and language_id = 2 [TEP STOP] So I had to add this line missing in the installation notes for includes/database_tables.php define('TABLE_HEADERTAGS_KEYWORDS', 'headertags_keywords');
  13. I think you can forget about this add-on. It is not working. There is a lot of add-on like this that is not working on this site.
  14. I changed the articles_pxsell to below to get the 2.3 box model. I know it's not 100% correct but it works for me. <?php /* $Id: articles_pxsell.php, v1.0 2006/03/11 12:00:00 Rigadin $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2006 osCommerce Released under the GNU General Public License */ if ($_GET['products_id']) { $xsell_query = tep_db_query("select distinct ax.articles_id, ad.articles_name, a.articles_last_modified from " . TABLE_ARTICLES_XSELL . " ax LEFT JOIN ".TABLE_ARTICLES." a USING(articles_id) LEFT JOIN " . TABLE_ARTICLES_DESCRIPTION . " ad USING(articles_id) where ax.xsell_id = '" . (int)$_GET['products_id'] . "' and ad.language_id = '" . (int)$languages_id . "' and a.articles_status = '1' order by a.articles_last_modified"); $num_products_xsell = tep_db_num_rows($xsell_query); if ($num_products_xsell >= MIN_DISPLAY_ARTICLES_XSELL) { ?> <!-- xsell_articles //--> <div class="ui-widget infoBoxContainer"> <div class="ui-widget-header ui-corner-top infoBoxHeading"> <span><?php echo TEXT_PXSELL_ARTICLES; ?></span> </div> <?php echo $info_box_contents; ?> </div> <?php $info_box_contents = array(); $row = 0; $col = 0; $info_box_contents = array(); while ($xsell = tep_db_fetch_array($xsell_query)) { $xsell['products_name'] = tep_get_products_name($xsell['products_id']); $info_box_contents[$row][$col] = array('align' => 'left', 'params' => 'class="smallText" width="33%" valign="top"', 'text' => tep_image(DIR_WS_IMAGES.'icons/article.gif').' <a href="' . tep_href_link(FILENAME_ARTICLE_INFO, 'articles_id=' . $xsell['articles_id']) . '">' . $xsell['articles_name'] . '</a><br>'); $col = 0; $row ++; } new contentBox($info_box_contents); ?> <!-- xsell_articles_eof //--> <?php } } ?>
  15. Forget the first issue about character replacement. Just a stupid mistake.
×
×
  • Create New...