Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

wvmlt

Archived
  • Posts

    311
  • Joined

  • Last visited

About wvmlt

  • Birthday 07/18/1967

Profile Information

  • Real Name
    Keith
  • Location
    USA
  • Interests
    Computers
  • Website

wvmlt's Achievements

  1. I use the shop by price contribution and I noticed that when I clicked on the price range under $10.00 all my current auctions were being listed for a price of $0.00 and could be purchased and checked out for $0.00. Anyone else using the shop by price notice this?
  2. Smitty- I added the wysiwyg editor found here http://www.oscommerce.com/community/contri...h,HTMLArea+v3.0 and it works great :D
  3. From what I've read, you will still generate the code to paste into ebays item description field or you can export a csv file to use with turbo lister. It'll make it easier to create auctions from inventory you have though because you don't have to enter in the item description......you just pick the item from a dropdown list and go.
  4. I used this one http://www.oscommerce.com/community/contri...,wysiwyg+editor but I don't know how difficult it would be to tie it in with the auction.
  5. It would be nice to have an HTML editor where you add the description for your auction item.
  6. Yes it's another contribution that I had installed, it's called allprods or something like that. I just deleted it though. Great contribution. I think it makes my auctions look nicer without a lot of effort. Here's the code <?php /* $Id: allprods.php,v 2.0 2004/01/13 20:28:47 UJP Co. Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2004 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); include(DIR_WS_LANGUAGES . $language . '/' . FILENAME_ALLPRODS); $breadcrumb->add(HEADING_TITLE, tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL')); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="3" cellpadding="3"> <tr> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table></td> <!-- body_text //--> <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_products_new.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> <?php // create column list $define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL, 'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME, 'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER, 'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE, 'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY, 'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT, 'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE, 'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW); asort($define_list); $column_list = array(); reset($define_list); while (list($column, $value) = each($define_list)) { if ($value) $column_list[] = $column; } $select_column_list = ''; for ($col=0, $n=sizeof($column_list); $col<$n; $col++) { if ( ($column_list[$col] == 'PRODUCT_LIST_BUY_NOW') || ($column_list[$col] == 'PRODUCT_LIST_NAME') || ($column_list[$col] == 'PRODUCT_LIST_PRICE') ) { continue; } } $listing_sql = "select p.products_id, pd.products_name, p.products_image, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, p.products_date_added, m.manufacturers_name from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id and pd.language_id = '" . $languages_id . "' left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = '1' order by p.products_price, pd.products_name"; include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?> </td> </tr> </table></td> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  7. I think I found a big problem with this contribution. When I clicked on my "all products" link, the items I have on ebay were included and the price was $0.00 on all of them. I tried adding one to my cart and sure enough, I was able to proceed through checkout and purchase the item for a price of $0.00. I removed my all products paged till I can figure this out.
  8. I can hardly wait for 1.1 to come out. The only problems I had with this mod were things I caused myself. Once I undid my "enhancements" it works great.
  9. I've installed it and it works very well. The only thing I know to do if you have a modified site is to use winmerge and modify the PWA files to what you need.
  10. Here's the code for the auction that doesn't display correctly. <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td> <script language="JavaScript" type="text/JavaScript"> if(navigator.appName == "Microsoft Internet Explorer") { document.write("<object type='text/x-scriptlet' data='http://wvdropshipping.com/auction_product_info.php?cPath=9999&products_id=3845' width='750' height='100%'></object>") } else { document.write("<object type='text/html' data='http://wvdropshipping.com/auction_product_info.php?cPath=9999&products_id=3845' width='750' height='100%'></object>") } </script> </td> </tr> </table> If you just enter the URL in the browser, the information all displays.
  11. OK now this is getting weird. I built a couple new auctions and they're not showing anything in the description field on ebay. The weird part is that I generated code from an auction that I have running and that is listed properly and it shows up with a blank description. How can the same code result in a good auction and one that doesn't work?
  12. aceclimber Hope you get it fixed cause its a great contribution.
  13. But there are no choices showing. The banner link and text link work perfectly but neither of the product links work. On the other product link where you enter a product number, it displays 2 boxes where code should be but they are both empty. I got the Affiliate Program - Build a Link to work but the Products Links still isn't working.
  14. On your site, when you enter the information, then click "preview", do you see your item picture and information listed?
×
×
  • Create New...