Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

talon177

Archived
  • Posts

    403
  • Joined

  • Last visited

Everything posted by talon177

  1. Thanks Paul, I was also wondering, when using the BTS how would people make a "Top of Page" anchor, using the normal <a name="TOP"></a> <a href="#TOP">Top of Page</a> This doesn't seem to work as it'll bring you back to the index.php page, instead i was hoping it would bring you back to top of whatever current page you're on such as shipping, specials, index, manufacture, and what not. Thanks in advance, Matt an
  2. Just a quick idea, anyone know of how you could make the product info page show for example Thumbnail | Master Product Item | 1.99 - 7.99 | More Info Thumbnail | Product | 3.99| Buy Now Thanks.
  3. Thanks that worked great! Priest: You should try Review Approval Systems 1.2 for MS2.
  4. Thanks for the info, it works great. I was also wondering about this.
  5. Works great, just be sure to remove the Header Controller contrib if you're not using it.
  6. Hey Johnson, This mod has been awesome, one thing I also noticed is that if you have slave items such as 2 Blue Tshirts 2 Red in your shopping cart box, and when u click on the item and it brings you back to the master product, is there a way to make it so the qty fill in box displays the quantities that show up in ur shopping cart box instead of 0? Thanks.
  7. Has anyone gottan wishlist to work with master products, so you can add slave products individually to the wishlist and email them to your friend?
  8. I also just tried this code and it seems to be working for me so far, what did u do exactly right before it adds the master instead of the slave?
  9. Has anyone gotten this to work with master products? Where as when you type in slave quantity items, it'll add those slave items to your wishlist and not the master product? Thanks
  10. Great mod, just got this installed and i'm loving it! Good work guys!
  11. Delete item number 10 does item 11 now show? If so this is a paging problem Yep it's the paging, i'm not sure what's the best way to get splitPageResults to work, anyone have a suggestion for MS2?
  12. Hi, Just noticed when you add more than 10 products to your wishlist, #11 + doesn't show, any fix for this?
  13. Does anyone happen to know how I can make the "Add to Wishlist" show for even guest on products? and when they click on add to wishlist, it'll bring them to the login page, and if they create an account it'll add that item to their wishlist? Thanks.
  14. Verel: I'll check mine out later today also, I'm in the same situation and I'm wondering if mine works, since I'm still in the testing/installing stage. Saletco: I'm glad that i'm not the only one now, it was driving me nuts thinking I put a typo or something somewhere. Hopefully there's a solution for this.
  15. Try using 5.10b that should save you a lot of trouble.
  16. Hi, I just noticed when a user sends a gift certificate to an unsubscribed user account, and the person clicks on the link, it shows the amount total in the shopping cart, but soon after they become a member the amount disappears from the shopping cart, but is still redeamable through checkout. Is it possible to somehow link the gift certificate amount to the email address that received the item, and when the person creates an account, it'll show up in their shopping cart box? Sorry if this sounds confusing. Thanks again.
  17. I did not try it myself yet, so please tell me if it works.It would be very interesting to have a "Credit Class Gift Voucher" for the BTS. It's a very usefull, but maybe one of the most difficult contribs to install on a BTS system I think. Hey Paul, Thanks for the quick link and help on this, the information below worked great! I believe BTS is a great system, and I believe I have Credit Class Gift Voucher and a few other mods working on this system. It takes a little bit of time, but after checking out your code it makes life so much easier, you can switch between templates for different occasions such as the holidays. One other quick question, do you happen to know how I could make the categories box on the left show all the subcategories automatically? Such as: -> Category -> Subcategory -> Subcategory 2 Rather than having to click category, then see the rest of the subcategories? Thanks again, Matt
  18. Has anyone integrated Credit Class Gift Voucher 5.10b with BTS 1.2? Or know how I can integrate the includes/boxes/shopping_cart.php together? I'm stuck on how to modify CC Gift voucher with BTS Here's the code: <?php /* $Id: shopping_cart.php,v 1.2.2.9 2003/05/13 22:49:08 wilt Exp $ $Id: shopping_cart.php,v 1.18 2003/02/10 22:31:06 hpdl Exp $ modified by paulm_nl 2003/12/23 osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ $boxHeading = BOX_HEADING_SHOPPING_CART; $corner_left = 'square'; $corner_right = 'rounded'; $boxLink = '<a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '"><img src="images/infobox/arrow_right.gif" border="0" alt="more" title=" more " width="12" height="10"></a>'; $box_base_name = 'shopping_cart'; // for easy unique box template setup (added BTSv1.2) $box_id = $box_base_name . 'Box'; // for CSS styling paulm (editted BTSv1.2) $boxContent = ''; if ($cart->count_contents() > 0) { $boxContent = '<table border="0" width="100%" cellspacing="0" cellpadding="0">'; $products = $cart->get_products(); for ($i=0, $n=sizeof($products); $i<$n; $i++) { $boxContent .= '<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'])) { $boxContent .= '<span class="newItemInCart">'; } else { $boxContent .= '<span class="infoBoxContents">'; } $boxContent .= $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'])) { $boxContent .= '<span class="newItemInCart">'; } else { $boxContent .= '<span class="infoBoxContents">'; } $boxContent .= $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'); } } $boxContent .= '</table>'; } else { $boxContent .= BOX_SHOPPING_CART_EMPTY; } if ($cart->count_contents() > 0) { $boxContent .= tep_draw_separator(); $boxContent .= '<div align="right">' . $currencies->format($cart->show_total()) . '</div>'; } // ICW ADDED FOR CREDIT CLASS GV if (tep_session_is_registered('customer_id')) { $gv_query = tep_db_query("select amount from " . TABLE_COUPON_GV_CUSTOMER . " where customer_id = '" . $customer_id . "'"); $gv_result = tep_db_fetch_array($gv_query); if ($gv_result['amount'] > 0 ) { $info_box_contents[] = array('align' => 'left','text' => tep_draw_separator()); $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext">' . VOUCHER_BALANCE . '</td><td class="smalltext" align="right" valign="bottom">' . $currencies->format($gv_result['amount']) . '</td></tr></table>'); $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext"><a href="'. tep_href_link(FILENAME_GV_SEND) . '">' . BOX_SEND_TO_FRIEND . '</a></td></tr></table>'); } } if (tep_session_is_registered('gv_id')) { $gv_query = tep_db_query("select coupon_amount from " . TABLE_COUPONS . " where coupon_id = '" . $gv_id . "'"); $coupon = tep_db_fetch_array($gv_query); $info_box_contents[] = array('align' => 'left','text' => tep_draw_separator()); $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext">' . VOUCHER_REDEEMED . '</td><td class="smalltext" align="right" valign="bottom">' . $currencies->format($coupon['coupon_amount']) . '</td></tr></table>'); } if (tep_session_is_registered('cc_id') && $cc_id) { $info_box_contents[] = array('align' => 'left','text' => tep_draw_separator()); $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext">' . CART_COUPON . '</td><td class="smalltext" align="right" valign="bottom">' . '<a href="javascript:couponpopupWindow(\'' . tep_href_link(FILENAME_POPUP_COUPON_HELP, 'cID=' . $cc_id) . '\')">' . CART_COUPON_INFO . '</a>' . '</td></tr></table>'); } // ADDED FOR CREDIT CLASS GV END ADDITTION // bof BTSv1.2 if(file_exists(DIR_WS_BOX_TEMPLATES . $box_base_name . '.tpl.php')) { // if exists, load unique box template for this box from templates/boxes/ require(DIR_WS_BOX_TEMPLATES . $box_base_name . '.tpl.php'); } else { // load default box template: templates/boxes/box.tpl.php require(DIR_WS_BOX_TEMPLATES . TEMPLATENAME_BOX); } // eof BTSv1.2 $boxLink = ''; ?> But the Credit Class Gift voucher doesn't show up, and I belive it's because it's using $info_box_contents and [] instead of $boxContent. Anyone happen to know how I can change it to work? Thanks.
  19. Just got this mod to work on osC 2.2 MS2, I was wondering if the pwa users info are suppose to be store in the Reports->Customer Orders-Total location? Thanks.
  20. Nevermind, got the 2 ep files to integrate finally!
  21. I believe I figuered it out for the mostpart but does anyone know whats wrong with this statement? I can't seem to figure out why EP isn't inserting the image filenames into the database. $query = "INSERT INTO ".TABLE_PRODUCTS." ( products_image, # BoF Ultimate Images Pack products_image_med, products_image_lrg, products_image_sm_1, products_image_xl_1, products_image_sm_2, products_image_xl_2, products_image_sm_3, products_image_xl_3, products_image_sm_4, products_image_xl_4, products_image_sm_5, products_image_xl_5, products_image_sm_6, products_image_xl_6, # EoF Ultimate Images Pack products_model, products_price, products_status, products_last_modified, products_date_added, products_date_available, products_tax_class_id, products_weight, products_master, products_master_status, products_listing_status, products_quantity, manufacturers_id) VALUES ( '$v_products_image',"; // unmcomment these lines if you are running the image mods /* $query .= . $v_products_mimage . '", "' . $v_products_bimage . '", "' . $v_products_subimage1 . '", "' . $v_products_bsubimage1 . '", "' . $v_products_subimage2 . '", "' . $v_products_bsubimage2 . '", "' . $v_products_subimage3 . '", "' . $v_products_bsubimage3 . '", "' */ # BoF Ultimate Images Pack $query .=" '$v_products_image_med', '$v_products_image_lrg', '$v_products_image_sm_1', '$v_products_image_xl_1', '$v_products_image_sm_2', '$v_products_image_xl_2', '$v_products_image_sm_3', '$v_products_image_xl_3', '$v_products_image_sm_4', '$v_products_image_xl_4', '$v_products_image_sm_5', '$v_products_image_xl_5', '$v_products_image_sm_6', '$v_products_image_xl_6', # EoF Ultimate Images Pack '$v_products_model', '$v_products_price', '$v_db_status', CURRENT_TIMESTAMP, $v_date_added, $v_date_avail, '$v_tax_class_id', '$v_products_weight', '$v_products_master', '$v_products_master_status', '$v_products_listing_status', '$v_products_quantity', '$v_manufacturer_id') "; When I extract the ep file, i see all the column names, and files that were inputed normally through the web interface. Thanks
  22. I was wondering if anyone had EP2.72 with master products and ultra pics v1.0 added into ep 2.72 rather than 2.61 Thanks.
  23. This mod is awesome! Thanks MaxiDVD. Got it installed pretty quickly.
×
×
  • Create New...