VirtueMart Forum

VirtueMart 2 + 3 + 4 => Administration & Configuration => Topic started by: florihana on August 23, 2017, 10:17:21 AM

Title: virtuemart register form if country is china will show another input text
Post by: florihana on August 23, 2017, 10:17:21 AM
Using joomla: 3.6
VirtueMart 3.0.18

Hi experts,

Sorry I had to ask but look for the solutions couple hours,  :'(
I would like to if user go to virtuemart registration form, choose country part, like choice China for example
then will show another input: please enter your Chinese address

see the picture

Title: Re: virtuemart register form if country is china will show another input text
Post by: Jumbo! on August 23, 2017, 21:58:29 PM
You need to use some custom Javascript for this. The script will depend on your template's layout and chinese address field id. Post the page link.
Title: Re: virtuemart register form if country is china will show another input text
Post by: florihana on August 24, 2017, 10:13:54 AM
Thank you Jombo,

the problem is I could not find which file in Joomla could add this event,
so far there is vmsite.js file: /components/com_virtuemart/assets/js/vmsite.js

but how to find the country_id data?
In database virtuemart_country_id, china id is 44

so I was thinking doing:
if ( country_id == 44) {
    jQuery('form#adminForm input#address_chinoise_field').show;


but finding country id data seems obstacle

thank you