Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

DOOL

Pioneers
  • Posts

    24
  • Joined

  • Last visited

Everything posted by DOOL

  1. I could realy use some help with this, I now have my second suppliers product that needs to be added and still no close to a solution for this. Just to clarify in case I made the first post to confusing. What I have is a DIY kit that lets the customer select a total of 4 flavors from a list. Now the tricky part is that there are 2 different suppliers and some of there flavors are named the same such as apple. So what I need is something like a radio button for each supplier and then it populates a drop down with only that manufactures flavors for the customer to choose from. Now keep in mind they get a total of 4 choices of flavors and they can be from either manufacturer. I am guesing some type of if/else statement with a call to the database each time a radio button is selected for manufacturer, but I am a total newbie with this and have no idea where to start. Any help on this would be greatly appreciated so I dont have to resort to a text box and make the customer type in the manufacturer and flavor for each option. Thanks In Advance
  2. Is there a compatible "Single Page Checkout" that works well with CCGV(trad)?
  3. WOW nobody has any ideas on this, I figured this would be an easy one someone had designed and I just couldn't find it. Any help here would be greatly appreciated. Thank You
  4. beanzy, Sorry i was not very specirfic, i was refering to the one you referenced about 5 posts back with my original questions "This is per say, compatible but you have to make sure you merge correctly. Took me 2 tries and got it good. http://addons.oscommerce.com/info/6646 " On the last 2 steps of the instructions is where i was getting the instructions for Protx files.
  5. I am a newbie and have done alot of contributions but no real knowledge of coding myself, i just follow directions very well. My problem is i have a certain product on my website that is going to have options inside of options and i cant seem to find info or a contribtion that lets me set this up. Hope i am explaining this right, so let me give an example. One product is a DIY Kit one of the options in this kit is to be able to select up to 4 different flavors of the customers choice, but these flavors are made by 4 different companies, and some of the companies make the same flavors. Also there are a total of over 40 flavors for each company, so a realy long drop down is jsut not reasonable. What i am looking for is something like: Choice 1 | Choice 2 | Choice 3 | Choice 4 0 Manuf 1 0 Manuf 2 | 0 Manuf 1 0 Manuf 2 | 0 Manuf 1 0 Manuf 2 | 0 Manuf 1 0 Manuf 2 0 Manuf 3 0 Manuf 4 | 0 Manuf 3 0 Manuf 4 | 0 Manuf 3 0 Manuf 4 | 0 Manuf 3 0 Manuf 4 (Flavor Dropdown List) | (Flavor Dropdown List) | (Flavor Dropdown List) | (FlavorDropdown List) I hope that makes some sense, basicaly a radio button for the 4 manufactures, that will populate the Flavor Dropdown list with only those manufactures flavors, and 4 total rows of them for the 4 flavor options the customer gets to choose. If there is a contribution that has this capabality or if someone can point me in the right direction on this it would be greatly appreciated. Thank You in Advance!!
  6. Hi beanzy, Now let me ask you becuse i did try to install this contribution and followed it to the letter, but what i ran into is the last 2 sections refer to a Protx page that has a bunch of lines of code to edit. the problem is that I dont have any Protx files on my website. Now i did try to install the original KGT discount coupon contribution but after several emails with the write of the contribution i finaly gave up cause i could never get the bugs out of it. So i then installed this discount coupon addon and it worked like a charm. So I guese I must be missing something because i dont have the files the instructiobns ask for, and when i did install it, the website was spitting error out. Any insight would be most appreciated, THANK YOU
  7. I have this contribution installed and working good, but now the issue is I am looking for a single page checkout contribution that is compatible with this one. Could anybody point me in the right direction please. It would also be greatly appreciated if with that contribution there were any tweaks that were needed to work with this contribution, to share those as well. Thank You in Advance!!
  8. Figured that error out by trial and error. I ended up adding a } and that seems to have fixed it. // ADDED FOR CCGV END ADDITTION new infoBox($info_box_contents); } ?> </td> </tr> <!-- shopping_cart_eof //--> problem now is when i try to send the gift voucher i get a few fields for who to send it to but instead of a send button there is a statement of ERROR Unable to determine the page link. any help on this would be greatly apprecaited. Thanks
  9. Need some newbie advice please. I installed this contribution a couple days ago and have gone through my files 3 times now and cant seem to find where I made a mistake on the install. Instead of the right colum i am getting Parse Error: syntax error, unexpected $end. /include/boxes/shopping_cart.php line 95. To see the problem in action please visit www.vapoligy.com The last few lines look realy odd but everything i try seems to be giving more errors. As i newbie i would greatly appreciate any assistance. Thank You <?php /* $Id: shopping_cart.php 1739 2007-12-20 00:52:16Z hpdl $ 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, true, 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()); // {{ buySAFE Module if (is_array($buysafe_result) && $buysafe_result['IsBuySafeEnabled'] == 'true') { $info_box_contents[] = array('text' => '<table width="100%" cellspacing="0" cellpadding="1" border="0"><tr><td class="boxText"> </td><td class="boxText" align="right">' . $currencies->format($cart->show_total()) . '</td></tr><tr><td class="boxText">' . $buysafe_result['MiniCartLineDisplayText'] . '</td><td class="boxText" align="right">' . $buysafe_result['BondCostDisplayText'] . '</td></tr><tr><td class="boxText"> </td><td class="boxText" align="right">' . ($buysafe_result['BondCostDisplayText'] ? $currencies->format($cart->show_total() + $buysafe_result['TotalBondCost']) : $currencies->format($cart->show_total())) . '</td></tr></table>'); } else { $info_box_contents[] = array('align' => 'right', 'text' => $currencies->format($cart->show_total())); } // ADDED FOR CCGV 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>'); } // ADDED FOR CCGV END ADDITTION new infoBox($info_box_contents); ?> </td> </tr> <!-- shopping_cart_eof //-->
  10. This is an awesome contribution and it installed smoothly but like others here i seem to have the same 2 issues. 1. Facebook is not importing the graphic. 2. The icons are at the very top of the screen just under the header. Any assistance in resolving these issues would be greatly apprecaited. Thank you again
  11. I am having the same problem with the checkout. I have double and triple checked everything. During the checkout process I am showing a "Gift Certificate $0.00" but it never actualy applies the credit. Any assistance would be greatley apreciated becuase i am a total newb at this oscommerce thing. Thank You
×
×
  • Create New...