Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

garnet

Pioneers
  • Posts

    122
  • Joined

  • Last visited

Profile Information

garnet's Achievements

  1. Hi thanks for the nice contrib. I have installed it and it works fine. The only problem is that when scrolling option is used only one same testimonial is shown. There are 2 in the DB now but only one of them is shown. "Minimum number of testimonials before scrolling customer testimonials 2" <--- this is in admin Help appreciated.
  2. Hi How can I change the text color of the text on the carousel? I tried to change it in ...includes/modules/rotator.php but it still stays black, and I need it white The problem is here: www.kupuvalnik.com Help appreciated.
  3. Hi is there a way that when a product is sold and it is not available anymore the entry in the RSS feed is also removed for the same product. How can I modify the contrib to do that? Thanks
  4. Hi all, when I resized the flash area form 200 to 150 in height the text describing the items became very unlegible/small. Where do I change the text size. I am using version 2.0d Thanks.
  5. Could anybody give me some directions, please.
  6. Hi i tried myself to copy bits of code, but it doesnt work as expected. this is what i have: <table border="0" width="790" cellspacing="1" cellpadding="2" class="infoBox" align="center"> <tr class="infoBoxContents"> <?php echo tep_draw_form('advanced_search', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get', 'OnChange="return check_form(this);"') . tep_hide_session_id(); ?> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <?php // ******************************************************************************** ******** // ******************************************************************************** ******** // This code has been added in order to make the attributes on products searchable by selecting // the attribute through a drop down list box, if you notice on your advanced_search.php page // that a select box is empty it means there are no option values for that option // Please leave these commented lines in this file. This contribution was built by Adam, // If it helps you, then you can help me by donating through paypal, my email address is: [email protected] $attributes_query = tep_db_query("select * from " . TABLE_PRODUCTS_OPTIONS . " where language_id = '" . (int)$languages_id . "'"); while ($attributes = tep_db_fetch_array($attributes_query)) {?> <tr> <td class="fieldKey"><?php echo $attributes["products_options_name"]; ?></td> <?php $option_values_query = tep_db_query('select pv.products_options_values_id as id, pv.products_options_values_name as text from ('. TABLE_PRODUCTS_OPTIONS_VALUES . ' pv, '. TABLE_PRODUCTS_OPTIONS .' po) join ' . TABLE_PRODUCTS_OPTIONS_VALUES_TO_PRODUCTS_OPTIONS . ' popv on (pv.products_options_values_id = popv.products_options_values_id) where popv.products_options_id = po.products_options_id and popv.products_options_id =' . $attributes['products_options_id'] . ' and po.language_id ='. (int)$languages_id . ' group by pv.products_options_values_id, products_options_values_name'); $option_values_list = array(); // MySQL5 Fix echo '<td class="fieldValue">'; $count = 0; $option_values_list[$count] = array('id' => '', 'text' => ''); while ($option_values = tep_db_fetch_array($option_values_query)) { $option_values_list[++$count] = $option_values; } echo tep_draw_pull_down_menu($attributes['products_options_name'], $option_values_list); ?> </td> </tr><?php } //// End of code added to advanced_search.php ///////////////////////////////////////////// // ******************************************************************************** ******** // ******************************************************************************** ******** ?> </table></td> </tr> </table></td> if you copy this to header or the 'search by price' box in the left column it shows the attribute fields, but there are some problems 1. I am not sure how to add the 'search' button. I can select values, but cant do anything with them. 2. ideally I'd like to have multiple selection - e.g. price above 50 and size 42 - this will require some small mods but I am stuck with it. It wold be super if the search by price box is updated with the attributes and a 'search' button is added to execute the query. 3. the size of the table of the above code doesnt fit with my site design - or if if it is in the left column it screws it up. PS. I have removed it from the site now, but if you want I can post it again to header. www.kupuvalnik.com/index.php
  7. Hi all can anybody help me with this please, can someone combine these two contribs in one. Much appreciated.
  8. Hi all Just a quick question why my date of the rss feed is in 1979. See below http://beta.feedvalidator.org/check.cgi?ur...3Flanguage%3Dbg How can I fix this? Thanks.
  9. so can it be re-written, say with copying all application_top.php and application_bottom.php as variable your index.php so it can run in CRON? Thanks
  10. Hi the files you put in the extras work fine if I start them manually.If I use i cronjob though it fails. The error is Status: 302 Moved Temporarily X-Powered-By: PHP/5.2.9 Location: http://www.kupuvalnik.com/blocked.php Content-type: text/html and the explanation from my sys admin is: There are some errors. /usr/local/bin/php /home/kupuvaln/public_html/googlesitemap/index.php Warning: include_once(includes/application_top.php): failed to open stream: No such file or directory in /home/kupuvaln/public_html/googlesitemap/index.php on line 44 Warning: include_once(): Failed opening 'includes/application_top.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/kupuvaln/public_html/googlesitemap/index.php on line 44 Warning: require_once(googlesitemap/sitemap.class.php): failed to open stream: No such file or directory in /home/kupuvaln/public_html/googlesitemap/index.php on line 46 Fatal error: require_once(): Failed opening required 'googlesitemap/sitemap.class.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/kupuvaln/public_html/googlesitemap/index.php on line 46 Please resolve the error. This is coding issue. I am not sure how to fix that.With the original Sitemap files it works OK with CRON.
  11. Hi all I have a problem with cyrillic language in the rss fee, please take a look http://www.kupuvalnik.com/rss.php?language=bg how can i make it look ok?
  12. Hi all and thanks you for writing contibs for all of us the 'unelightened' users. I use 2 very useful contribs - advanced search with attributes http://addons.oscommerce.com/info/2337/v,22 and shop by price http://addons.oscommerce.com/info/1276/v,22 The latter gives you a box where you can choose price ranges and it returns products. My suggestion is, if some one can combine the two codes so the shop by price box not only has the proce ranges but also the attributes. And if one select an attribute to see all products with it. That is very quick way of selecting products which will attract buyers. It would be great if there is a 'search' button so people can do 'and' querries, e.g show me everything that is size 12 (attribute) and costs $10-$20. But any implementation will work. Thanks and I hope someone combine these 2 great contrib into an even better one.
  13. HI I was running sitemap update as CRON and it was going fine. I used to see the same message as if you run it manually in the CRON emails. Some days ago I started getting this in the emails and the sitemaps arent updated. Status: 302 Moved Temporarily X-Powered-By: PHP/5.2.9 Location: http://www.kupuvalnik.com/blocked.php Content-type: text/html Any ideas
  14. Hi I just wonder if it is possible to use cyrillic letters in the URL names Take a look at that address: http://magazin-online.net/bg/израбо?...газин.html the last part is in cyrillic and it works fine. At he moment I use char conversion to convert whole bulgarian alphabet to latin. Like http://www.kupuvalnik.com/dynki-diesel-p-1001.html While it works fine, I'd rather prefer to have it in cyrillic script in the URL, if possible. Any ideas on how this might reflect on google searches if the URL has cyrillica chars? Thanks
  15. Hi just some questions. If I use my store in English, and I try to use a wrong CCC number I got the error message OK. The problem is that if I try to use DCC on an excluded product or category, I dont get the message at all. The DCC is not applied to the amount, but it doesnt give any indication why the amount is not reduced. If I try to use DCC with minimum amount set, then I see the error message for that. So some error messages dont appear. The other problem is like the first, with that difference that if I use my store in Bulgarian the above messages that appeared in English dont appear in Bulgarian, I just see a red area, and no text or in case of set min amount, just the amount number e.g 100 Help please.
×
×
  • Create New...