pbpo Posted November 23, 2015 Share Posted November 23, 2015 Witajcie ponownie, znów mam dziwny problem.na stronie formularza kontaktowego dodawałem nowe pola zgodnie z poradnikiem Nemo zawartym na tym forum. Ruszałem tylko te pliki które powinny być ruszone.Niestety przycisk "Wyślij" jest ukryty O.oNawet próbowałem na sztywno w pliku TPL wprowadzić "display:block;" ale dalej ten sam problem..Pracuję na domyślnym szablonie najnowszej presty, css tylko przerobiony. + kilka dodatkowych modułów doinstalowanych.Adres strony: http://newsite.supron1.pl/pl/kontakt Link to comment Share on other sites More sharing options...
hatak Posted November 23, 2015 Share Posted November 23, 2015 za wyswietlanie tego odpowiada rowniez contact-form.js - moze cos w nim siedzi Link to comment Share on other sites More sharing options...
pbpo Posted November 23, 2015 Author Share Posted November 23, 2015 (edited) if (typeof $.uniform.defaults !== 'undefined') { if (typeof contact_fileDefaultHtml !== 'undefined') $.uniform.defaults.fileDefaultHtml = contact_fileDefaultHtml; if (typeof contact_fileButtonHtml !== 'undefined') $.uniform.defaults.fileButtonHtml = contact_fileButtonHtml; } $(document).ready(function(){ $(document).on('change', 'select[name=id_contact]', function(){ $('.desc_contact').hide(); $('#desc_contact' + parseInt($(this).val())).show(); }); $(document).on('change', 'select[name=id_order]', function (){ showProductSelect($(this).attr('value')); }); showProductSelect($('select[name=id_order]').attr('value')); }); function showProductSelect(id_order) { $('.product_select').hide().prop('disabled', 'disabled').parent('.selector').hide(); $('.product_select').parents('.form-group').find('label').hide(); if ($('#' + id_order + '_order_products').length > 0) { $('#' + id_order + '_order_products').removeProp('disabled').show().parent('.selector').removeClass('disabled').show(); $('.product_select').parents('.form-group').show().find('label').show(); } } Nie widzę tutaj nic co by mogło być przyczyną, ale fakt też pomyślałem o tym. Zastanawiam się czy czasem nie bibioteki jQuery gdzieś nadpisują i tu nie stwarza problemu. sprawdzę to i napiszę co i jak. --------------EDIT-------------- Sprawdziłem, ale żadna biblioteka nie nadpisuje się w tym momencie. Więc nie powinno być problemu. Zrobię modyfikację formularza na czystej instalacji PS 1.6 i sprawdzę czy tam się pokiełbasi wtedy będzie wiadomo czy to to. Edited November 23, 2015 by pbpo (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now