Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

AdamDuritz99

Archived
  • Posts

    39
  • Joined

  • Last visited

Posts posted by AdamDuritz99

  1. It sounds like you are talking about something like Google adwords?

     

    This Links Mgr. is still in it's developmental-fundamental stage and that is pretty advanced for this contrib still trying to get the basics ironed out.

     

    Sound cool however!

    :D

     

     

    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

  2. Hi guys,

     

    This is a great contributions. I installed it and everything works great.  However, I have one problem is that it does not seem to take the coupon discount or gift voucher out before showing the profit margin.

     

    Anyone here know how to solve this? I would like to know my actual profit after all the discount or gift certificate the customers redeemed.

     

    Thanks

     

    I have the same problem. Any fix?

  3. 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

  4. 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

  5. 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

×
×
  • Create New...