Osclass forums
Support forums => Plugins => Cars attributes => Topic started by: rtomancini on October 05, 2013, 01:38:55 am
-
Hi Guys
the plugin seems to be working ok
I am able to select from the drop down menu the make
but not the model or type of car
see here:
http://prntscr.com/1va74b
any ideas?
thanks a lot
-
check in admin panel and see if u have linked any model from Chevrolet!
-
I have the same problem and fail to solve.
Posting can select the brand and type of car but there is no list of models.
The admin panel can successfully manage posting and models list can be selected.
Modern use themes.
Replacing Modern theme with Bender, cars Attributes plugin works well.
Can you help me?
Thanks in advance
SOLVED The problem was in global.js
-
hi werwe, I am having same problem. Could you please post the solution here??
-
I have the same problem and fail to solve.
Posting can select the brand and type of car but there is no list of models.
The admin panel can successfully manage posting and models list can be selected.
Modern use themes.
Replacing Modern theme with Bender, cars Attributes plugin works well.
Can you help me?
Thanks in advance
SOLVED The problem was in global.js
how to solve with global.js???
-
@fre2mansur - Switch global.js "function selectUi(thatSelect)" with this function:
function selectUi(thatSelect){
var uiSelect = $('<a href="#" class="select-box-trigger"></a>');
var uiSelectIcon = $('');
var uiSelected = $(''+thatSelect.find("option:selected").text().replace(/^\s*/gm, '')+'</span>');
var uiWrap = $('<div class="select-box '+thatSelect.attr('class')+'" />');
thatSelect.css('filter', 'alpha(opacity=40)').css('opacity', '0');
thatSelect.wrap(uiWrap);
uiSelect.append(uiSelected).append(uiSelectIcon);
thatSelect.parent().append(uiSelect);
uiSelect.click(function(){
return false;
});
thatSelect.change(function(){
str = thatSelect.find('option:selected').text().replace(/^\s*/gm, '');
uiSelected.text(str);
});
thatSelect.bind('removed', function() {
thatSelect.parent().remove();
});
}
Now car model can be selected. To me it worked.
Regards