Disable Tripetto branding
By default, a link to the Tripetto website is shown in the runner. It helps to spread the word about Tripetto. But, of course, there are cases where you want to disable and hide this so-called Tripetto branding.
You are only allowed to remove the Tripetto branding if you have bought a license. See the pricing page for more information about pricing and the License guide for more information about applying your license.
💅 Remove the branding​
To remove the branding there are two options. You can use the removeBranding
property of the runner or use the noBranding
property in the styles
object of your runner. When you use the removeBranding
property, the noBranding
property in the styles
object is ignored. You can only remove the branding if you have supplied a valid license code as well.
- Autoscroll
- Chat
- Classic
import { run } from "@tripetto/runner-autoscroll";
run({
definition: /* Supply your form definition here */,
license: /* Supply your license code here */,
// Option 1
removeBranding: true,
// Option 2
styles: {
noBranding: true
}
});
import { run } from "@tripetto/runner-chat";
run({
definition: /* Supply your form definition here */,
license: /* Supply your license code here */,
// Option 1
removeBranding: true,
// Option 2
styles: {
noBranding: true
}
});
import { run } from "@tripetto/runner-classic";
run({
definition: /* Supply your form definition here */,
license: /* Supply your license code here */,
// Option 1
removeBranding: true,
// Option 2
styles: {
noBranding: true
}
});
📖 Reference​
- Autoscroll
- Chat
- Classic
Have a look at the complete autoscroll runner API reference for detailed documentation. In the examples above, the following symbols were used:
Have a look at the complete chat runner API reference for detailed documentation. In the examples above, the following symbols were used:
Have a look at the complete classic runner API reference for detailed documentation. In the examples above, the following symbols were used: