Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

MichAngler

Pioneers
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Real Name
    roy randolph

MichAngler's Achievements

  1. Can't find the fix for commisions being doubled can someone point me in the right direction plz
  2. I have seen this question in many threads in many forms but yet to see an answer Can someone tell me if there is a mod or add on to authorize a charge when an order is placed and then capture the funds from the OSC admin when the order is ready to ship rather than going to Authorize.net to capture? Authorize.net says yes you can as long as your store has this ability installed. Yet I have not found it here in the forums or the contribute section. With so many people asking this question I’m surprised I haven’t seen the answer. Or is it that I can’t see the trees for the forest? I’m running a 2.2Rc2 with standard authorize.net module Please someone point me in the right direction
  3. Is there a recent full package? Or do I need to do version 1 and the other 1.5, 1.5.1, 1.5.2, 1.5.3 step by step?
  4. First >Great Contibution!< Thank You Didn't see a post on this so if I missed it "Sorry" I did the manual modification because I have a heavely mod’d store and I found that Step 6f in the manual modification instructions is incorrect It removes the customer name on the admin/order.php page It removes this code <td class="dataTableContent"><?php echo '<a href="' . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $orders['orders_id'] . '&action=edit') . '">' . tep_image(DIR_WS_ICONS . 'preview.gif', ICON_PREVIEW) . '</a> ' . $orders['customers_name']; ?></td> Should read FIND (around line 464) if (isset($oInfo) && is_object($oInfo) && ($orders['orders_id'] == $oInfo->orders_id)) { echo ' <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit') . '\'">' . "\n"; } else { echo ' <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID')) . 'oID=' . $orders['orders_id']) . '\'">' . "\n"; } ?> REPLACE WITH: /*** BOF: Additional Orders Info ***/ $rowcolor = ''; $watchedPayment = GetAdditionalOrderInfo($aiPartsPayment, $orders['payment_method']); $addrMismatch = BillingShippingDontMatch($orders['orders_id']); if ($addrMismatch && tep_not_null($watchedPayment)) $rowcolor = SHOW_ORDERS_COLOR_BOTH; else if ($addrMismatch) $rowcolor = SHOW_ORDERS_COLOR_ADDRESS; else if (tep_not_null($watchedPayment)) $rowcolor = SHOW_ORDERS_COLOR_PAYMENT; if (isset($oInfo) && is_object($oInfo) && ($orders['orders_id'] == $oInfo->orders_id)) { echo ' <tr id="defaultSelected" class="dataTableRowSelected" style="background-color:' . $rowcolor . '" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit') . '\'">' . "\n"; } else { echo ' <tr class="dataTableRow" style="background-color:' . $rowcolor . '" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID')) . 'oID=' . $orders['orders_id']) . '\'">' . "\n"; } ?> <td class="dataTableContent"><?php echo '#' . $orders['orders_id']; ?></td> <?php /*** EOF: Additional Orders Info ***/ ?>
  5. First let me say OUTSTANDING CONTRIBUTION AND SUPPORT! Took me a little to get it going had the SQL issues with id#’s but this tread got me on the right track Zaaephod did you get it to work? I’m wondering if there is a way to do a validation on just one option and not all I’m trying to set up a registration for fishing tournaments and need “agree to terms” check box but I have other radio and check boxes and they are not required I’ve looked at the agree2terms mod but I would rather have this on the product page due to the fact they sell hats and shirts and no need to agree to terms for a hat maybe merge this mod in some way (I’m not script guru) Maybe something for a future version to have a “required” option type in attributes
×
×
  • Create New...