Make product options on option page collapse-able

ThemeBurn SupportForumsOpenCart ThemesTechnopolis OpenCart ThemeMake product options on option page collapse-able

This topic has been marked as resolved.

hello,

I was wondering if there was a way to make the product options on the options page collapse until the buyer presses some form of button like ‘customize’ etc..?

Im on opencart 2.3 and using the Technopolis theme.

May 4, 2018 at 3:40 pm #64156

Hi,

Could be possible with the help of some extra JS:

$(document).ready(function() {
  $('#product_options_toggle_button').on('click', function() {
    $('.tb_system_product_options').toggle();
  });
});

You need to add a button with product_options_toggle_button ID (or other by your choice, but will need to modify the above code).

BR,
ThemeBurn team

May 11, 2018 at 11:20 am #64211

Many thanks for your reply :)

May 21, 2018 at 3:52 pm #64288

Glad we’ve helped!

BR,
ThemeBurn team

May 25, 2018 at 12:32 pm #64342
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.