Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

multimixer

Members
  • Posts

    4,733
  • Joined

  • Last visited

  • Days Won

    72

Everything posted by multimixer

  1. Did you look here? --> Short description for featured products v1.6.3
  2. Look at the query, it is taking just the language with id=1, I guess it's english $query="SELECT * FROM categories c, categories_description d WHERE c.categories_id=d.categories_id AND c.parent_id='0' AND d.language_id='1' ORDER BY c.sort_order"; Try to change it to $query="SELECT * FROM categories c, categories_description d WHERE c.categories_id=d.categories_id AND c.parent_id='0' AND d.language_id='" . (int)$languages_id ."' ORDER BY c.sort_order";
  3. One option you have is to install something like "individual product shipping cost" exist in the addons Other option, much easier, is to have 3 "weights" 1, 2, and 3 and to add a "weight" to products according to the shipping cost you want to apply. Then do a shipping per weight, ie 1 = 9,2 2 = 15 3 = 25
  4. I have this and no problem at all. Where exactly is your problem?
  5. Something like additional images for example? There are many, there is a "images" section in the addons, did you look there?
  6. Did you got any money from paypal or not?
  7. Of course you had to reinstall the language, this code is getting "activated" in the moment of a new language installation, nothing to do with old languages. It looks like osCmax also didn't had a solution for this
  8. I had a similar issue and posted a solution that worked for me to the article manager support forum.
  9. I found this issue here posted somewhere in the forum I had the same (similar) issue: When adding a new language, after article manager was installed, the existing topics and articles were not showing up in the new language, and did not got "prefilled" with the content of the old language like it is done for categoties and products. This was causing also various errors, I don't remember them anymore. Anyway, what I did is following: In file admin/languages.php after // create additional manufacturers_info records $manufacturers_query = tep_db_query("select m.manufacturers_id, mi.manufacturers_url from " . TABLE_MANUFACTURERS . " m left join " . TABLE_MANUFACTURERS_INFO . " mi on m.manufacturers_id = mi.manufacturers_id where mi.languages_id = '" . (int)$languages_id . "'"); while ($manufacturers = tep_db_fetch_array($manufacturers_query)) { tep_db_query("insert into " . TABLE_MANUFACTURERS_INFO . " (manufacturers_id, languages_id, manufacturers_url) values ('" . $manufacturers['manufacturers_id'] . "', '" . (int)$insert_id . "', '" . tep_db_input($manufacturers['manufacturers_url']) . "')"); } I added // BOF multimixer 5 1 2010 article manager adition // create additional topics_description records $topics_query = tep_db_query("select t.topics_id, td.topics_name from " . TABLE_TOPICS . " t left join " . TABLE_TOPICS_DESCRIPTION . " td on t.topics_id = td.topics_id where td.language_id = '" . (int)$languages_id . "'"); while ($topics = tep_db_fetch_array($topics_query)) { tep_db_query("insert into " . TABLE_TOPICS_DESCRIPTION . " (topics_id, language_id, topics_name) values ('" . (int)$topics['topics_id'] . "', '" . (int)$insert_id . "', '" . tep_db_input($topics['topics_name']) . "')"); } // create additional articles_description records $articles_query = tep_db_query("select a.articles_id, ad.articles_name, ad.articles_description, ad.articles_url from " . TABLE_ARTICLES . " a left join " . TABLE_ARTICLES_DESCRIPTION . " ad on a.articles_id = ad.articles_id where ad.language_id = '" . (int)$languages_id . "'"); while ($articles = tep_db_fetch_array($articles_query)) { tep_db_query("insert into " . TABLE_ARTICLES_DESCRIPTION . " (articles_id, language_id, articles_name, articles_description, articles_url) values ('" . (int)$articles['articles_id'] . "', '" . (int)$insert_id . "', '" . tep_db_input($articles['articles_name']) . "', '" . tep_db_input($articles['articles_description']) . "', '" . tep_db_input($articles['articles_url']) . "')"); } // create additional authors_info records $authors_query = tep_db_query("select au.authors_id, ai.authors_url from " . TABLE_AUTHORS . " au left join " . TABLE_AUTHORS_INFO . " ai on au.authors_id = ai.authors_id where ai.languages_id = '" . (int)$languages_id . "'"); while ($authors = tep_db_fetch_array($authors_query)) { tep_db_query("insert into " . TABLE_AUTHORS_INFO . " (authors_id, languages_id, authors_url) values ('" . $authors['authors_id'] . "', '" . (int)$insert_id . "', '" . tep_db_input($authors['authors_url']) . "')"); } // EOF multimixer 5 1 2010 article manager adition This works fine for me, well, I don't know if anybody else faced this problem
  10. This file is "including" different boxes into the "subfile" (file that will be included somewhere else) includes/column_left.php. It's making a "group" of those boxes, so that you can easily include them with just one line to any file you want, ie into index.php. This file is the "groupmaker", so, not much to design here. You need to decide what exactly you want to design. 1) If you want to add more boxes, or to remove boxes etc, then you do it here 2) If you want to change the positioning of the complete column, or to put border around etc, then you do it in the actual file it is getting displayed, ie ligin.php or you could do it here either 3) If you want to change something in the boxes themselves, then you go to the actual box file ie includes/boxes/information.php This all refers to html changes (structural changes) For changes of colors etc, you go to your stylesheet.css file. You can of course add more css definitions to the files and stylesheet to refine the design as you need
  11. Did you notice that this is a forum and not the customer service? Do you know that there is a support forum for this contribution? It's mentioned at the place where you got the addon. --> "Dynamenu" for osCommerce suppert forum
  12. Can you post exactly what you was trying to do and what the results are? Will be easier for somebody else to jump in
  13. About IP address there are 2 addons this and this
  14. The if is already done in index.php Near the bottom of the file you'll find this <?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 echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="main"><?php echo tep_customer_greeting(); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_MAIN; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> </table></td> </tr> </table></td> <?php } ?> This refers to the "last" case (after all other if's are not valid) and this last case is the "startpage", no categories, no nothing. Right now it displays the TEXT_MAIN and the new products module. You can change this section as you like
  15. You are missing a language definition. You didn't made the changes in the language files as per instructions. There is maybe just english mentioned, you need to do it for your language. Review again the installation instructions wherever it says something about languages
  16. Even it's not that specific person, Sam, there are other people who installed this contribution and maybe faced the same issue in the past. They could help or advise too. It is still the truth that Sam is the one who offers regular support for this contribution. PS Thank you for the minus, whoever it was, there is probably somebody who think that posts should be spread all over the forum or that it is bad to advice a new user about how to post correctly in order to get faster and better responses helping in the main time the one who could answer.
  17. Hope you will post the results here :)
  18. I think there is a contribution support forum and a very good one too. Sam is like all day long online helping people. You could at least post this into the right topic so that he can find it. Do you expect that he'll be searching around to find your issue?
  19. I don't have this contribution installed, so I can not say much. Taking a quick look, I found in file pdfinvoice.php following line $pdf->MultiCell(70, 3.3, tep_html_entity_decode(tep_address_format($order->customer['format_id'], $order->customer, '', '', "\n")),0,'L'); like for everything that is getting printed. I can not tell you how to solve this, but this is causing the error
  20. There is a thread dedicated to STS questions like this one --> The STSv4 forum Post all your STS related issues to there. Before posting, read this --> Content template for new page In case you'll post finally, use the code tags (look like this <> in your reply menu) to post the code into there. Here I place any code into You need also to say what exactly is not working. So you'll get a faster and better answer
  21. Did you notice that this here is the STS forum? It's not the column listing forum. And that since you posted there too (as you say) you don't need to post here again? This here is the place where people discuss their STS issues and they will just get confused by your column issues. But probably you don't care.......
  22. Try to change this td class="main"><?phpecho tep_draw_separator('pixel_trans.gif', '24', '15') . ' '?><select name="page_type" size=1> to this td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' '?><select name="page_type" size=1> If in the future you have similar errors remember to post the lines BEFORE the error line and just some lines after
  23. You are trying all the time with your own email. Did ever you try to create a customer with an email that is NOT the administrator email? Would me more productive. As for how the contribution work exactly, I would post in the contribution support forum
×
×
  • Create New...