Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #386250

    Hi,

    I’ve tried without success to add a button element in the LayoutBuilder without a link..
    Even when I do NOT enter a link in these settings, the button “places a link”:

    How can I fix this, so that I’m able to use the button element without linking the button?
    Thanks!

    #386338

    Hi COLORIT!

    Thank you for coming back.

    It is actually not possible to use this element without a link.
    Even if you set href = “” in HTML code this link is set to the current page by the browser by default.

    If you want to remove the “manually” from the link you have to change the core code of enfold\config-templatebuilder\avia-shortcodes\buttons.php line 277:

    Find:

    
    $link  = $link == "http://"  ? "" : $link;
    

    and replace with:

    
    $link  = ($link == "http://" || $link == "manually") ? "" : $link;
    

    I suggested this change to Kriesi – probably it will be in the core in future releases.

    Cheers!
    Günter

    #386394

    will add the change to the next update. meanwhile you can also use a simple “#” ;)

    #386396

    Sounds great, thank you!

    #386403

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘"Button" element with NO LINK not possible?’ is closed to new replies.