How can I put the text “Inicio” with link share to Home
This is the code:
$w.onReady( function () {
$w(“#pastoresDataset”).onReady( () => {
let currentItem = $w(“#pastoresDataset”).getCurrentItem().pastor;
$w(“#text2”).text = ("Inicio / " + currentItem);
} );
} );
Thanks