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

    Hello,
    in the Avia Slider (Avia Layout Architect -> Vollbildslider -> Inhalt -> Beschriftung -> Button hinzufügen) I can add on or two buttons. Any way to add four buttons?? Maybe there is a code for the functions.php in the Child Theme?
    Thank you,
    Daniel

    #1145173

    Hey danielmarsch,

    You can use our button shortcode in the slide caption to add more.

    Best regards,
    Jordan Shannon

    #1145228

    Are you familiar with using the debug mode?
    You have to activate it via functions.php of your child theme

    // Debug Modus Enfold
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug(){
      return "debug";
    }

    after doing that – you can see under each alb generated page/post an extra field with the shortcodes Enfold uses:

    – you see on top window the Elements in your layout – at the bottom you see the shortcodes.
    after the closing of the slideshow there is the shortcode f.e. for a button row – maybe this is for you the right choose.
    Now you can copy the whole code – f.e.

    [av_buttonrow alignment='center' button_spacing='5' button_spacing_unit='px' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av_uid='']
    [av_buttonrow_item label='Click me' icon='4']
    [av_buttonrow_item label='Call to Action' icon='5']
    [av_buttonrow_item label='Click me' icon='6']
    [/av_buttonrow]
    

    now open the slider and open that slide you like to have the buttons. goto Caption Tab.
    insert into the Caption Text Field that copied shortcode:

    if you don’t like the styling – go and change the auxiliary ( helping ) element.
    After all – delete that additonal helping element.

    #1145244

    Thanks Jordan und v.a. danke Guenni für die ausführliche Erläuterung. That helped!

    #1145317

    Hi danielmarsch,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.