Jump to content

wilded1

Member
  • Posts

    36
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by wilded1

  1. Anybody?

    Its really puzzling me im not even sure if it can be done easily. Do i need some kind of mod?

    Hi acematti.

    Did you ever resolve this problem, as I have a customer that requires the exact same thing.

    5 zones as set radius distances at different rates but per delivery not per product.

    Per product would be easy as you could create product options for each zone but if they order 2 or more of something it would be added twice or more and this is not what is required.

    I need to be able to add the delivery cost per order for the user selected zone.

  2. Alan, damn I noticed now I never said anything about that in my first post, I'm dizzy =P Sorry!

    Then I understand .... Visa and Paypal have these rules worldwide on all payment gateways they deals with or? I have dibs that are located in Denmark and I never found any guidelines about this so I never heard about it! I did find the info about it at Paypal and it was a violation against their rules.

    Xceejayx Thanks for the tip, will check it out!

    You could always set up a product option on each item for COD, Visa and Paypal, which would then add the Apropriate extra cost to the item being purchased.

  3. I am surprised that V4 came out without HSBC support.

    We can't upgrade without HSBC support. The HSBC support was the deciding factor in going with Cubecart.

    So, please add me to the support for the HSBC module. Could anyone from Cubecart comment officially on this?

    Ed

  4. I had the same request from a client today and this is what i did.

    edited a couple of php's which will add an extra field in the settings page.

    Add your additional email addresses to this new field seperated by comma for each address.

    1.  Open: admin/includes/settings/index.php
    
    
    
    Find:
    
    *****************************************************************************
    
    
    
    <tr>
    
    
    
    	<td width="30%" class="tdText"><strong><?php echo $lang['admin']['settings']['email_address'];?></strong><br />
    
    
    
    	<?php echo $lang['admin']['settings']['email_address_desc'];?></td>
    
    
    
    		<td align="left"><input type="text" size="35" class="textbox" name="config[masterEmail]" value="<?php echo $config['masterEmail']; ?>" /></td>
    
    
    
    	</tr>
    
    
    
    *****************************************************************************
    
    *****************************************************************************
    
    
    
    Add after:
    
    *****************************************************************************
    
    
    
    // added by anynet to email orders to list.
    
    <tr>
    
      <td width="30%" class="tdText"><strong>Optional Sendto emails</strong><br />
    
    
    
    	(This is used to add additional email addresses to send order info to) Comma seperated.</td>
    
    
    
    		<td align="left"><input type="text" size="35" class="textbox" name="config[masterEmailTo]" value="<?php echo $config['masterEmailTo']; ?>" /></td>
    
    
    
    	</tr>
    
    
    
    *****************************************************************************
    
    *****************************************************************************
    
    Save file.
    
    
    
     
    
    
    
    2.	Open: includes/content/gateway.inc.php
    
    
    
    Find:
    
    *****************************************************************************
    
    
    
    $send = $mail->send(array($config['masterEmail']), $config['mailMethod']);
    
    
    
    *****************************************************************************
    
    *****************************************************************************
    
    
    
    Add after:
    
    *****************************************************************************
    
    
    
    // added by anynet to email orders to list.
    
    $send = $mail->send(array($config['masterEmailTo']), $config['mailMethod']); 
    
    
    
    *****************************************************************************
    
    *****************************************************************************
    
    
    
    Save file.
    
    
    
    EOF

    Hope this helps

  5. I've just spoken to HSBC and they are saying that to setup API you need to be verified by mastercard and visa (which costs £1000's), becasue all the card detials will be held on our SSL servers, hence they need to make sure they are secure enough. is that true?

    I have got this working now.

    I am the developer not the account holder, but i'm pretty sure that my client hasn't had to pay the amounts your talking about.

    They already had a terminal account with the HSBC and didn't have to pay anything more to use this feature.

    Bear in mind that the credit card details are not stored on the cubecart server, all card details are passed over to HSBC but not stored locally.

    Regards Dave.

  6. thanks everything web - I will post a support ticket.

    sorry for the 'pushy' second post to the forum - just had been up all night trying to get things sorted for a customer and the gap in between posts seemed longer!

    In the meantime.....

    if anyone is able to shed some light on what on earth you are meant to do with the HSBC files that they send through as part of their 'techie' package - i.e. the locations/classpaths, etc...

    I would really like to hear...

    thanks again

    Did you have any joy?

    We're trying to get the HSBC (using API) up and running.

    It's as though it's a black art and no one including HSBC know exactly what to do.

×
×
  • Create New...