Remove an element
If you want to remove an element, e.g. before generating the product image, you can use the API of FPD first and then you can use the fabricjs API.
Using getElementByTitle method to return the fabricjs object:
var fabricElement = thsirtDesigner.currentViewInstance.fabricCanvas.getElementByTitle('title-of-an-element');
console.log(fabricElement);
JavaScript
Now through the fabricElement variable you can use any method for that fabricjs object, e.g. the remove method.
//wait until product is created
fpd.addEventListener('productCreate', function(){
thsirtDesigner.currentViewInstance.fabricCanvas.remove(fabricElement)
//e.g. now you are able to generate an image without a specific element layer
thsirtDesigner.getProductDataURL()
});
JavaScript
Updated on: 06/08/2025
Thank you!