# Interface options

# Hide standard cart button

This option hides the PrestaShop cart button so that the customer customizes the product then uses the add to cart button that is inside the module.

Advanced

If the module doesn't succeed in hiding the cart button then it means that your theme has a different html structure compared to the default theme. For that you can use custom CSS to hide the cart button. The module adds a class to the body called dsn-hide-cart-button so you can write this CSS for example to hide the cart button

body.dsn-hide-cart-button button.add-to-cart {
  display: none;
}

Customize the CSS selector to work on your theme, this requires CSS knowledge

# Hide standard quantity box

This options hides the PrestaShop quantity box. The user can then enter the quantity in the module interface.

Advanced

Sometimes, the theme has a different html structure than the default theme, so the module can't correctly hide the quantity input. The solution is to add custom CSS code to hide the quantity input. The module adds a class to the body which is called dsn-hide-qty-input, so you can write code like this

body.dsn-hide-qty-input div.qty {
  display: none;
}

# Show the customize button

This will display a customize button that when clicked, will show the module interface.

# Show product attributes in tabs

This option will display the PrestaShop attributes inside the module interface.

# Show the interface in a popup

This is useful if you don't want the module to take space on your page or to be initially visible.

TIP

When you enable this option, make sure that the customize button is enabled so that the popup can be accessed.

# Show the popup on page load

Enable this option if you want the customer to start customizing the product right away.

# Defer loading of the module

Enable if you want your product pages to load faster. The module will wait for the page load, then it will load its scripts.

This can help with the page score.

# Display the total price

If enabled, the module will multiply the price by the quantity instead of displaying the unit price.

# Show Dynamic Product in the product tab

This option is only available if you have the Dynamic Product (opens new window) module installed. It allows you to display the dynamic product fields in the designer interface like this

Last Updated: 10/20/2025, 8:43:15 AM