Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Credit Card Month Dropdown


ozysean

Recommended Posts

Can anyone tell me where the names of the months that come up in the dropdown menu are?

They are defaulted to the names, January, Feb.... etc but I want to change them to the numbers of the month as that is the way the date is displayed on the credit card.

I cant find this in the database or any of the language files I have looked in.

 

Any help would be much appreciated!

 

Thanks,

 

Sean

Link to comment
Share on other sites

catalog/includes/modules/payment/cc.php

 

Find:

	  for ($i=1; $i<13; $i++) {
	$expires_month[] = array('id' => sprintf('%02d', $i), 'text' => strftime('%B',mktime(0,0,0,$i,1,2000)));
  }

 

Replace by:

	  for ($i=1; $i<13; $i++) {
	$expires_month[] = array('id' => sprintf('%02d', $i), 'text' => sprintf('%02d', $i));
  }

Link to comment
Share on other sites

  • 1 year later...

This thread is a year old but here is the solution. This is a very simple edit.

 

Same page as stated above. The change is ONE character from an uppercase B to a lowercase m

 

Current Code

 for ($i=1; $i<13; $i++) {
       $expires_month[] = array('id' => sprintf('%02d', $i), 'text' => strftime('%[size=6]B[/size]',mktime(0,0,0,$i,1,2000)));
     }

 

Desired changes Code

for ($i=1; $i<13; $i++) {
       $expires_month[] = array('id' => sprintf('%02d', $i), 'text' => strftime('%[size=6]m[/size]',mktime(0,0,0,$i,1,2000)));
     }

 

That worked for us

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...