For the complete documentation index, see llms.txt. This page is also available as Markdown.

Hide Bottom Bar

Besides of hiding buttons in the Rubens UI, you can also hide the whole bottom bar which is displayed at the bottom of the configurator.

This is easily possible with just one parameter which you can add in the init data:

const configuratorId = "demoConfigurator";
  const domElement = document.getElementById("configurator-container");
  const initData = {
    elements: {
      bottom_bar: false,
    },
  };
  const configurator = await RoomleConfiguratorApi.create(
    configuratorId,
    domElement,
    initData
  );

Code Sandbox Example:

You can find an example in this Code Sandbox.

Last updated