Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

waitsee

Archived
  • Posts

    76
  • Joined

  • Last visited

Everything posted by waitsee

  1. I remember there was a little bug in the installMS1.txt in the contribution, but I can't remember what. So I can only give you this: This is my ..includes/column_left.php <?php /* $Id: column_left.php,v 1.15 2003/07/01 14:34:54 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } //events_calendar require(DIR_WS_BOXES . 'calendar.php'); if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_manufacturers_box(); } else { include(DIR_WS_BOXES . 'manufacturers.php'); } require(DIR_WS_BOXES . 'whats_new.php'); require(DIR_WS_BOXES . 'search.php'); require(DIR_WS_BOXES . 'information.php'); ?> This is my ..includes/boxes/calendar.php <?php /* $Id: events_calendar v2.00 2003/06/16 18:09:20 ip chilipepper.it Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ ?> <!-- events_calendar //--> <!-- <tr> <td> <iframe name="calendar" id="calendar" align="center" valign="top" marginwidth="0" marginheight="0" src=<?php //echo FILENAME_EVENTS_CALENDAR_CONTENT .'?_month='. $_month .'&_year='. $_year ?> frameborder=0 height=270 width=162 scrolling=no> Sorry, you browser does not support iframes.</iframe> </td> </tr> //--> <!-- events_calendar //--> <?php /* $Id: empty_box,v 1.31 2003/02/10 22:31:09 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ ?> <!-- EmptyBox_start //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => 'Kalender'); new infoBoxHeading($info_box_contents, true, true); $info_box_contents = array(); $info_box_contents[] = array('text' => '<iframe name="calendar" id="calendar" align="center" valign="top" marginwidth="0" marginheight="0" src=calendar_content.php?_month=&_year= frameborder="0" height="270" width="162" scrolling=no> Sorry, you browser does not support iframes.</iframe> '); new infoBox($info_box_contents); ?> </td> </tr> <!-- EmptyBox_eof //--> The rest is a described in the contribution.
  2. I used the calendar for MS 2.2. Wait I will check where you can find it. Here In the read me you should see $Id: events_calendar v2.00 2003/06/16 18:09:16 ip chilipepper.it Exp $
  3. I have installed the contribution. (Here you can find it http://www.oscommerce.com/community/contri...ll/search,short) The contrib inserts an extra field "products_info" in the tabel "products_description". I have inserted some data in the products_info_field, but............................ WHEN I SEARCH FOR THAT DATA IT IS NOT FOUND! Searching for products_name or products_description is OK! What is wrong? How to modify? PLEASE HELP
  4. My Webpage uses the events calendar. I have been able to get it running and I have modified the look. But now I want to place it inside a "osc-box". I have been messing with the code, but did not succed. Who knows how to place the calendar in a box?
  5. The problem is solved now by using events_calendar 2.0_MS2 I re-searched it (with events calendar), but can't find it now. But my calendar is working OK now!
  6. Please submit hte link to the right Contribution. I don't know what list you mean. I have used http://www.oscommerce.com/community/contributions,1061/ and when I click on the box-heading "Events Calendar" the error "Cannot pass parameter 3 by reference in /home/users/hanwijma/www/catalog/events_calendar.php on line 255 " appears. When I click on a date the event is displayed correctly. You can look what I mean at http://www.hanwijman.nl/catalog/
  7. I think this is what you are looking for http://www.oscommerce.com/community/contri.../search,columns
  8. Sorry, take a look in catalog/includes/modules/productlisting and scroll down to line 213, that where you have to change 33% in 20% if you want to use 5 columns.
  9. I just installed it @ www.hanwijman.nl/catalog/ (Dutch!) It is awesome and easy to install. I think it is a better way to use than the standardway. Thank you for sharing it with us!
  10. I use the contribution (an earlier version?) for a couple of months. I had some problems with the display of e.g. 5 columns instead of the default 3. If you want to show let's say 5 columns, then you have to modify product_listing.php in line 194. Change the 33% in 20%. Hope to help you save some time with this reply.
  11. OK, I found it. Take a look at lines 233..238. if (PRODUCT_LIST_BUY_NOW) { $lc_text .= '<br><a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing['products_id'], 'NONSSL') . '">' . tep_image_button('button_buy_now.gif', TEXT_BUY . $listing['products_name'] . TEXT_NOW) . '</a>'; } $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="smallText" width="20%" valign="top"', 'text' => $lc_text); I changed the width+"33%" in width="20% and everything is displayed at the same distance. Cheers Han
  12. I successfully installed contribution 1712 in which you can choose to display products in list- or columnstyle. On my site I want to display 5 columns (Take a look here http://www.hanwijman.nl/catalog/index.php?cPath=22_30). As you can see, the first 3 columns have a fixed distance but the last seem to be compressed. How can I display them at the same distance?
  13. The WYSIWG Contribution is for making HTML-emails and newsletters. To be able to show different picture-sizes, I used "3Sizes_of_product_images". You have to have 3 sizes available and then the shop will show the when requested. Take a look at http://www.hobby-post.nl. I used this contrib there. But don't buy products, it's a live shop. Here is the link for the contrib: http://www.oscommerce.com/community/contributions,1346
  14. Go to your catalog/admin and select "Images". Then delete the values after Small Image Height, Heading Image Height etc. This will solve your problem ( I think). Bye from a cold but sunny Netherlands.
  15. Done! I uploaded the WYSIWYG-files and all works fine. The modifications earlier made in the files have to be redone. But the HTML WYSIWYG is worth the extra work! Bye. :D
  16. I forgot to upload the html-area in admin. Now after doing that, I see the html-menu-option in the tools>newesletter. But............................ the only active button is "Large Editor'. When I am in "Large Editor", all buttons are active exept the button "Minimize Editor". In the large editor I can html-format the text and insert an image. But I can't go to the normal Editor-size and so I can't send the newsletter. How to fix it? I think my Java- Virtual-Machine is corrupted, cause I can't display some sites that use jsp-files. But I can't fix that because I can't reach www.sun.com Who can help?
  17. In /catalog/admin.configuration.php I can see the the WISYWYG editor 1.7, and I enabled it, for the newsletters. But When I go to Tools>Newsletters, I don't know how to create/send a html-newsletter. Please help! I presume it is a very very good contribtion and I really am eager to use it! My question: how to send html-newsletters with pictures?
  18. The same for me. In /catalog/admin.configuration.php I can see the the WISYWYG editor 1.7, and I enabled it, for the newsletters. But When I go to Tools>Newsletters, I don't know how to create/send a html-newsletter. Please help! I presume it is a very very good contribtion and I really am eager to use it!
  19. I use http://www.oscommerce.com/community/contributions,716. It is rather a lot of code to change, but it works OK. You can insert seperate prices for different customers groups and a visitor can only see the price in his own group. Perfect! But what I am looking for is that only Retailers can see the prices. Other customers can't see prices at all. In this contribution a customer sees the same price than the Retailer when I inserted no price for a customer. Who knows how to fix this?
  20. :blink: Unfortunately, loginviewprices is written for catalog/includes/modules/product_listings.php v1.38, while I have v1.44, which seems to be rather different. Who knows how to change versions 1.44?
  21. Well I am trying to get this one http://www.oscommerce.com/community/contributions,601 working. But I still get some errors. You surely gave me the right direction. Thx!
  22. I have a shop that is developed for retailers. Customers and retailers must be able to see the items in the shop, but...... only retailers must be able to see prices. I think my shop has to accreditate the retailers. So A retailer registers and then after an alert (email) to me, I must be able to identify him as a retailer and give him a password. How to create this feature?
×
×
  • Create New...