Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mrhandley

Archived
  • Posts

    34
  • Joined

  • Last visited

Profile Information

  • Real Name
    Mattias Handley

mrhandley's Achievements

  1. Jack, I just downloaded PostIt V1.2 and in the install instructions it is stated: I think it was this that got the previous poster confused regarding of which file to edit.
  2. Great contrib. Installed it and everything seems to work like a charm. Really nice way to do some inpage seo and to give the visitors more info. Thanks a bunch!
  3. I´ll send you an email with some more expanations. Regarding #2 "would it be possible to add a configuration so that it utilizes "bought products" or "viewed products" instead of search words?" I think the benefit is that the tag cloud would show popular products in the shop, and not just searched products.
  4. Great contrib! This is truly a sales driving function. Thanks a bunch. Some ideas for next release though: - Admin config instead of editing the php file Quite obvious, better to do changes in admin. Pls see below - Multilingual You have a specific language file but then you add text to the box building php? 1. define('RECENTLY_VIEWED_BOX_HEADING',' Du har tittat på:'); // box heading 2. define('RECENTLY_VIEWED_BOX_SEE_MORE_BUTTON',' Hela listan ' ); // see more button text 3. $recently_viewed_box_max_lines = 10; // maximum number of lines in recently viewed box 4. $recently_viewed_box_max_characters_per_line = 30; // maximum number of characters per line in recently viewed box #1 and #2 should be moved to the language file, #3 and #4 should be moved to admin. - Let the user reset the recently viewed I think it would be nice if the visitor could reset the list by themselves - Make it easy to change the layout of the recently viewed page. As it is now, it seems as the page is built with three columns. The first column contains product picture, the second contains descriptive text and the third contains price/manufacturer/add to cart etc. Column 1 is set to show the content in the left top corner. Column 2 is set to show the content in the left top corner. Column 3 is set to show the content in the left middle Wouldn´t be better to display column three in the same way as the others? If you have long product texts it doesnt look good and the user has to search for the "add to cart" button.
  5. I´ve been using it for a couple of days now, and the installation was a breeze :) I do understand that it is version 1.0 basically, but I have some questions: 1. Is it possible to configure how many tags of each I wan´t to display? (ie 10 really big, 10 medium and 10 small). Check out spastugan.se, a Swedish shop that I´m maintaining. I got the tag cloud in the footer but it doesn´t look really good when almost all the search words are the same size if you know what I mean? 2. would it be possible to add a configuration so that it utilizes "bought products" or "viewed products" instead of search words? 3. Would it be possible to add an admin config so that one could choose to display the search terms in random/alphabetical order? 4. Is there some way to get it to reset the search results so that it starts counting new search word popularity? (ie reset the stats once a day/week etc) It is a great contrib, and it can get even better with some configurable variables! For me, the tag for bad (wich is swedish for bath), agno (a manufacturer) and tvål (swedish word for soap) are all the same size in the tag cloud. - bad occurs 26 times in the search index - agno occurs 12 times in the search index - tvål occurs 6 times in the search index Something seems to not be working the way it should? There are other words between them in the search index also...
  6. Could you be more specific? What is it that makes Innova so much better, and what is it that isn´t up to par with TinyMCE?
  7. I use the contrib "Switch between Displaying Prices Inc./Ex. VAT http://www.oscommerce.com/community/contri...ch,switch" I get duplicate content from the shoppingcart when using it in a STS enabled shop. Using it in a non-sts shop doesn´t pose any problems. Here´s how it looks: the second "i din varukorg" ("in your shopping cart") shouldn't be there. But it works fine if I dont use STS? Here is the code from sopping_cart.php: <?php /* $Id: shopping_cart.php,v 1.18 2003/02/10 22:31:06 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ ?> <!-- shopping_cart //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_SHOPPING_CART); new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_SHOPPING_CART)); $cart_contents_string = ''; if ($cart->count_contents() > 0) { $cart_contents_string = '<table border="0" width="100%" cellspacing="0" cellpadding="0">'; $products = $cart->get_products(); for ($i=0, $n=sizeof($products); $i<$n; $i++) { $cart_contents_string .= '<tr><td align="right" valign="top" class="infoBoxContents">'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { $cart_contents_string .= '<span class="newItemInCart">'; } else { $cart_contents_string .= '<span class="infoBoxContents">'; } $cart_contents_string .= $products[$i]['quantity'] . ' x </span></td><td valign="top" class="infoBoxContents"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { $cart_contents_string .= '<span class="newItemInCart">'; } else { $cart_contents_string .= '<span class="infoBoxContents">'; } $cart_contents_string .= $products[$i]['name'] . '</span></a></td></tr>'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { tep_session_unregister('new_products_id_in_cart'); } } $cart_contents_string .= '</table>'; } else { $cart_contents_string .= BOX_SHOPPING_CART_EMPTY; } $info_box_contents = array(); $info_box_contents[] = array('text' => $cart_contents_string); if ($cart->count_contents() > 0) { $info_box_contents[] = array('text' => tep_draw_separator()); $info_box_contents[] = array('align' => 'right', 'text' => $currencies->format($cart->show_total())); } new infoBox($info_box_contents); // ==== START CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" $info_box_contents = array(); if ($vat_disp == '1') { $info_box_contents[] = array('align' => 'left', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_INC . '</b><br>frakt 35 kr tillkommer' ); } else { $info_box_contents[] = array('align' => 'left', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_EX . '</b><br>frakt tillkommer'); } if ($vat_disp == '1') { $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=0') . '">' . tep_image_button('button_inc_ex_vat.gif', SWITCHING_VAT_CHANGE_TO_EX) . '</a>'); } else { $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=1') . '">' . tep_image_button('button_inc_ex_vat.gif', SWITCHING_VAT_CHANGE_TO_INC) . '</a>'); } new infoBox($info_box_contents); // ==== FINISH CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" ?> </td> </tr> <!-- shopping_cart_eof //--> When I remove the stuff in the "// ==== START CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT"" it works. But then the contrib doesnt show... Any help is appreciated! /Mattias
  8. Should the silence be taken as: STS and Switch tax doesn´t work, or is so that most shop owners don´t use them together?
  9. Haven´t tried to put the article box in the main content, but it shouldn´t be too much trouble. But I don´t understand what you are writing about "looking for an RSS that can be be placed on my main page". Article Manager isn´t rss enabled, or have I missed something?
  10. Is it possible to get Dynamic Meta Tags working with STS? I´ve been reading old posts for a while now but I can't seem to find any solutions. /Mattias
  11. Im using the contrib Switch between Displaying Prices Inc./Ex. VAT http://www.oscommerce.com/community/contri...l/search,switch in a shop that I just installed STS on. It "kinda" works but I´m getting duplicate content from the shoppingcart when using it in a STS enabled shop. Here´s how it looks: the second "i din varukorg" ("in your shopping cart") shouldnt be there. But it works fine if I dont use STS? Here is the code from shopping_cart.php: <?php /* $Id: shopping_cart.php,v 1.18 2003/02/10 22:31:06 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ ?> <!-- shopping_cart //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_SHOPPING_CART); new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_SHOPPING_CART)); $cart_contents_string = ''; if ($cart->count_contents() > 0) { $cart_contents_string = '<table border="0" width="100%" cellspacing="0" cellpadding="0">'; $products = $cart->get_products(); for ($i=0, $n=sizeof($products); $i<$n; $i++) { $cart_contents_string .= '<tr><td align="right" valign="top" class="infoBoxContents">'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { $cart_contents_string .= '<span class="newItemInCart">'; } else { $cart_contents_string .= '<span class="infoBoxContents">'; } $cart_contents_string .= $products[$i]['quantity'] . ' x </span></td><td valign="top" class="infoBoxContents"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { $cart_contents_string .= '<span class="newItemInCart">'; } else { $cart_contents_string .= '<span class="infoBoxContents">'; } $cart_contents_string .= $products[$i]['name'] . '</span></a></td></tr>'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { tep_session_unregister('new_products_id_in_cart'); } } $cart_contents_string .= '</table>'; } else { $cart_contents_string .= BOX_SHOPPING_CART_EMPTY; } $info_box_contents = array(); $info_box_contents[] = array('text' => $cart_contents_string); if ($cart->count_contents() > 0) { $info_box_contents[] = array('text' => tep_draw_separator()); $info_box_contents[] = array('align' => 'right', 'text' => $currencies->format($cart->show_total())); } new infoBox($info_box_contents); // ==== START CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" $info_box_contents = array(); if ($vat_disp == '1') { $info_box_contents[] = array('align' => 'left', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_INC . '</b><br>frakt 35 kr tillkommer' ); } else { $info_box_contents[] = array('align' => 'left', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_EX . '</b><br>frakt tillkommer'); } if ($vat_disp == '1') { $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=0') . '">' . tep_image_button('button_inc_ex_vat.gif', SWITCHING_VAT_CHANGE_TO_EX) . '</a>'); } else { $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=1') . '">' . tep_image_button('button_inc_ex_vat.gif', SWITCHING_VAT_CHANGE_TO_INC) . '</a>'); } new infoBox($info_box_contents); // ==== FINISH CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" ?> </td> </tr> <!-- shopping_cart_eof //--> When I remove the stuff in the "// ==== START CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT"" it works. But then the contrib doesnt show... Any help is appreciated! /Mattias
  12. Its a great contrib, used it in a shop for a while now and everuthing is working fine. One thing though: Is it incompatible with STS? I get duplicate content from the shoppingcart when using it in a STS enabled shop. Here´s how it looks: the second "i din varukorg" ("in your shopping cart") shouldnt be there. But it works fine if I dont use STS? Here is the code from sopping_cart.php: <?php /* $Id: shopping_cart.php,v 1.18 2003/02/10 22:31:06 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ ?> <!-- shopping_cart //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_SHOPPING_CART); new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_SHOPPING_CART)); $cart_contents_string = ''; if ($cart->count_contents() > 0) { $cart_contents_string = '<table border="0" width="100%" cellspacing="0" cellpadding="0">'; $products = $cart->get_products(); for ($i=0, $n=sizeof($products); $i<$n; $i++) { $cart_contents_string .= '<tr><td align="right" valign="top" class="infoBoxContents">'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { $cart_contents_string .= '<span class="newItemInCart">'; } else { $cart_contents_string .= '<span class="infoBoxContents">'; } $cart_contents_string .= $products[$i]['quantity'] . ' x </span></td><td valign="top" class="infoBoxContents"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { $cart_contents_string .= '<span class="newItemInCart">'; } else { $cart_contents_string .= '<span class="infoBoxContents">'; } $cart_contents_string .= $products[$i]['name'] . '</span></a></td></tr>'; if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) { tep_session_unregister('new_products_id_in_cart'); } } $cart_contents_string .= '</table>'; } else { $cart_contents_string .= BOX_SHOPPING_CART_EMPTY; } $info_box_contents = array(); $info_box_contents[] = array('text' => $cart_contents_string); if ($cart->count_contents() > 0) { $info_box_contents[] = array('text' => tep_draw_separator()); $info_box_contents[] = array('align' => 'right', 'text' => $currencies->format($cart->show_total())); } new infoBox($info_box_contents); // ==== START CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" $info_box_contents = array(); if ($vat_disp == '1') { $info_box_contents[] = array('align' => 'left', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_INC . '</b><br>frakt 35 kr tillkommer' ); } else { $info_box_contents[] = array('align' => 'left', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_EX . '</b><br>frakt tillkommer'); } if ($vat_disp == '1') { $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=0') . '">' . tep_image_button('button_inc_ex_vat.gif', SWITCHING_VAT_CHANGE_TO_EX) . '</a>'); } else { $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=1') . '">' . tep_image_button('button_inc_ex_vat.gif', SWITCHING_VAT_CHANGE_TO_INC) . '</a>'); } new infoBox($info_box_contents); // ==== FINISH CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" ?> </td> </tr> <!-- shopping_cart_eof //--> When I remove the stuff in the "// ==== START CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT"" it works. But then the contrib doesnt show... Any help is appreciated! /Mattias
  13. Thanks for the contrib. Just installed it and it seems to work pretty good. We are a couople of admins and this will surely help in our communication with eachother :)
  14. I´ve been slowly but surly starting to suspect User tracking for not showing all customers and not quite beeing up to par. The reasons is that: 1. Customers that have placed orders can't be seen in user tracking 2. When comparing user tracking visitor numbers (page views and visitors / 24h period) it doesn´t even come close to the user numbers as reported by awstat (and I do trust awstat). As it is now, User tracking reports about ten times less visitors than awstats. Anyone else has this problem? Or have seen it in te past?
×
×
  • Create New...