

AdamDuritz99
Members-
Content count
39 -
Joined
-
Last visited
Profile Information
-
Real Name
Sean Stewart
-
AdamDuritz99 started following Kirod
-
Kirod started following AdamDuritz99
-
[Contribution] Links Manager for osC v1.00
AdamDuritz99 replied to VJ's topic in General Add-Ons Support
Well, I just got done doing it my self. You can check it out at url removed.net. I basically just ripped the links.php and the link_listing.php files apart and changing some key varibles around. peace sean -
[Contribution] Links Manager for osC v1.00
AdamDuritz99 replied to VJ's topic in General Add-Ons Support
Does anyone know how to post the links in an infobox and use links that relate to each category that the user is in when looking at products. -
I have the same problem. Any fix?
-
[Contribution] Credit Class/Gift voucher/Discount Coupon v5
AdamDuritz99 replied to Ian's topic in General Add-Ons Support
Hello, I've installed CCGV and it worked perfectly. Well now I want the customer to be able to enter the coupon code while still in the shopping cart. When the customer redeems his coupon, it will be applied in the shopping cart where it shows the subtotal and what not. I've been modifing files that refrence to checkout_payment.php and switching it to shopping_cart.php (FILENAME_SHOPPING_CART). I added the ccgv code from the checkout_payment.php to the shopping cart, I also added the JS that was necesary. Unfortantly I still can't get this thing to work properly. Has anyone been able to do this? Thanks Sean -
did you get this fixed?
-
Display final total when credit voucher is used
AdamDuritz99 replied to monte22's topic in General Add-Ons Support
I have the same problem. :( -
Wow, this is interesting. I can't wait to see how this turns out. Good job! peace sean
-
I fixed the bug the puts the wrong order id in the emails that it sends out. just go download it.
-
What version of all products?
AdamDuritz99 replied to AdamDuritz99's topic in General Add-Ons Support
Nevermind, I figured it out. :blush: -
What version of all products?
AdamDuritz99 replied to AdamDuritz99's topic in General Add-Ons Support
Thank you! -
Hmm, ok I'm confused, could someone point me to the appropriate version of all products? thanks sean
-
[contribution] Simple Template System (sts)
AdamDuritz99 replied to DiamondSea's topic in Templates and Images
Hello, I installed STS and i've been messing around with my infoboxes. I noticed in search infobox if i mess with this code in ../includes/boxes/search.php $info_box_contents[] = array('form' => tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get'), 'align' => 'center', 'text' => tep_draw_input_field('keywords', '', 'size="10" maxlength="30" style="width: ' . (BOX_WIDTH-30) . 'px"') . ' ' . tep_hide_session_id() . tep_image_submit('button_quick_find.gif', BOX_HEADING_SEARCH) . '<br>' . BOX_SEARCH_TEXT . '<br><a href="' . tep_href_link(FILENAME_ADVANCED_SEARCH) . '"><b>' . BOX_SEARCH_ADVANCED_SEARCH . '</b></a>'); new infoBox($info_box_contents); ... my add to cart button will go directly to the signup/signin page. Does anyone know what's going on? peace sean -
Can someone help me with the 'Main Categories' Contribution?
AdamDuritz99 replied to Mooligan's topic in General Add-Ons Support
Hey, thanks I apprecaite that. I got it working now. peace sean -
Could someone explain exactly what this contribution does? I've read through this whole thread, but i still don't understand exactly what it is for. peace sean
-
Can someone help me with the 'Main Categories' Contribution?
AdamDuritz99 replied to Mooligan's topic in General Add-Ons Support
Look for this: <tr> <td class="main"><?php echo TEXT_MAIN; ?></td> </tr> and put this in afterwards: <!-- BOF: Main Categories Edit //--> <tr> <td><?php include(DIR_WS_MODULES . MAIN_CATEGORIES); ?></td> </tr> <!-- EOF: //--> That works for me at least except I get this problem right above the main Categories box: Warning: Invalid argument supplied for foreach() in c:program filesapache groupapachehtdocscatalog06-15-03includesmodulesmain_categories.php on line 52 This is the code on line 52 onwards: // Traverse category tree foreach ($foo as $key => $value) { if ($foo[$key]['parent'] == $cid) { // print "$key, $level, $cid, $cpath<br>"; preorder($key, $level+1, $foo, ($level != 0 ? $cpath . $cid . '_' : '')); } } Does anyone know how to fix this? peace sean