Support

Support is part of Event Gallery Extended.

Please get a subscription if you need support. Feel free to use the ticket system or the contact form for reporting defects or pre-sale questions. Make sure you're logged in in order to be able to create a new ticket.

For general information you can also jump to the manual.

Subscribe now!

#2136 shipping drop down

Posted in ‘Event Gallery Extended’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by sbluege on Tuesday, 17 May 2016 11:53 UTC

avp
 Hi Sven

I want to remove the drop down tab for State and country for the customer to enter. The option you show are for USA and Spain. Also the country is not in alphabetical order. I've renamed to tab's to make them compatible for the UK.

See the image attached.

Andy

sbluege
There is no option for this. You can manage those things using the database directly. Do this those fields you can use CSS:

.billing-address-fieldset>div:nth-child(6),
.billing-address-fieldset>div:nth-child(7),
.shipping-address-fieldset>div:nth-child(6),
.shipping-address-fieldset>div:nth-child(7) {
   display:none;
}

avp
Hi Sven

the codes below where are they ?

.billing-address-fieldset>div:nth-child(6),
.billing-address-fieldset>div:nth-child(7),
.shipping-address-fieldset>div:nth-child(6),
.shipping-address-fieldset>div:nth-child(7) {
display:none;

If the drop down boxes contained the correct information I would not need to have just plain text input.

A option in the back end to select the facility on/off would be a great help for non programmers (just photographers).

Thanks
Andy

sbluege
The code is CSS. Place it to your templates CSS file if you want to hide those fields. As of now there are not configuration options for it. You might want to have a look at the table #__eventgallery_state if you want to add states manually. I'll build a back office integration for this if there is enough demand.