Hi,
The arrows in the numerical fields are not inserted by the plugin, the arrows are inserted by the browsers because it is the appearance by default of the input fields with type=”number”
You can edit the styles in your website to prevent the default appearance of the input fields type=”number” by the browsers. Simply inserts the following style definition in any of CSS files in your website:
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
Tip: Remember to clear the browser’s cache after edit the online files.
Best regards.