How to add support for South Korea to jBilling - jbilling

How can I add support for another region or language or currency to jBilling

when you create admin entry or Entity signup by hiting ( http://<host>:<port>/jbilling/signup ). there you get get all details. put language, country and currency for South Korea.
hope this will help you

Related

Add Country of manufacture from front-end for a product in Magento

I have a form that enables users to add products from front-end. I was able to get all the details uploaded except for the country of Manufacture.
Part of Code that I am using to add product from front-end
$product->setName($data['pro_name']);
$product->setDescription($data['pro_des']);
// Country of Manufacture (What is the correct way to add country of manufacture)
$product->setCountryOfManufacture($data['country']);
You have to set the data of country of manufacture as $product->setCountryOrigin($data['country']);
Make sure you are calling the data with 'country' then you have to set it as shown above.
$product->setCountryOfManufacture('DE');
2-letter country ISO code https://en.wikipedia.org/wiki/ISO_3166-1 ,
DE for Germany

Magento admin dashboard order time is incorrect

Magento times are off and none seem to agree with each other.
For example
Order and email placed at 6:06AM EST
Magento dashboard shows order placed at around 1:06AM
Go to System → Config → Sales → Sale → Dashboard And mark
Use Aggregated Data (beta)="No"
If you navigate to “System->Configuration->General->Locale Options->Timezone” in Admin area of Magento, you’ll see that you can change Timezone for each Website you have. This way you get a way to have stores for each part of the world set with correct timezone. I assuming that you do not have set it properly.
I hope this helps some more people.

Magento. Add gender and Date of birthday to registration form

I want to put 2 fields on user registration form, /customer/account/create/. Those fields are
gender selection and day of birth.
As I saw magento's customer module already has those 2 attributes, so If I don't mistake, I don't need to mess up with tables.
So how this can be done? Via observers? Or controller rewrite? What is better option?
My Magento is 1.5.
I only have a magento 1.6 version installed and there you have the options at:
Configuration → Customers → Cusotmers Configuration → Name and Address Options
Show Date of Birth
Show Gender

magento custom states for country

Im working on Magento latest version .The store is for UK ,I need to add country like Manchester, London, Yorkshire etc..This should show in the shipping setting when I select UK from the dropdown viz :default is USA and also in the shipping and billing address. And the defaut country should always be UK as default
How can I do that ?
You can change the default country from magento admin->system->configuration->General->country options -> Default Country.
To add regions (counties) for UK I think you have to populate the directory_country_region table.
Take a look at the official UK translation here
I found a post you might appreciate. It concerns the "directory_country_region" tables.
http://www.magentocommerce.com/boards/viewreply/192387/

magento - Allow Countries - What does this mean?

ok... so I feel really stupid asking this question.. but just wondering about the Allow Countries drop down in the admin panel..
What exactly does this mean?
Does it mean that only certain countries are allowed to purchase from your site? if it does mean that how does it determine where you are shopping from? is it done using a IP Geo locator or is it determined when the user inputs their address on the checkout page?
or does it mean that only customers from certain countries have access to the site?
Regards,
Fiona
I believe it's a list of countries you are willing to ship to. Here's a reference that says this. The available list seems to be limited by locale, so no geolocating involved. No idea why this is done though.
The reason for this feature is so that you can use one Magento website to serve multiple countries with different prices or products. Say you have a German and an English store. You may have different prices and you don't want someone from Germany going to the English store and ordering a product which is not available for Germany or is at a reduced price.

Resources