Hi, I guess, there might be a solution using coding, but I do it in the following way:
I use an extension from eblasoft: https://www.eblasoft.com.tr/product-page/labels-cells
With that you can create a label with a link to the desired target. You can design the link like a button with bootstrap code, The result will be a pure button with a link to where you want.
It is also possible with the field text editor, but when using this, you will have the button (field) with a label.
The code for both would be very simple:
The color of the button would follow the bootstrap buttons, like here: https://getbootstrap.com/docs/4.0/components/buttons/
I use an extension from eblasoft: https://www.eblasoft.com.tr/product-page/labels-cells
With that you can create a label with a link to the desired target. You can design the link like a button with bootstrap code, The result will be a pure button with a link to where you want.
It is also possible with the field text editor, but when using this, you will have the button (field) with a label.
The code for both would be very simple:
Code:
<a href="http://to your entity"><button class="btn btn-primary" type="button">Go</button></a>
The color of the button would follow the bootstrap buttons, like here: https://getbootstrap.com/docs/4.0/components/buttons/
Comment