Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #167125

    Hallo liebes Support Team,

    gibt es einen Shortcode oder eine Möglichkeit die Accordions / Toggles innerhalb der Pricing Tabelle zu nutzen ?
    Ich würde gerne die Variante verwenden, in der nur ein Toggle zur Zeit auf ist und sich schließt wenn man ein anderes Toggle verwendet.

    lg
    Nicole
    http://www.happybeagle.de

    #167404

    Hello HappyBeagle!

    Please switch your theme to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. Shortcodes can be combine like this example.

    [av_table purpose='pricing' caption='' custom_class='']
    [av_row row_style='avia-heading-row'][av_cell col_style='']This is a Heading![/av_cell][/av_row]
    [av_row row_style='avia-pricing-row'][av_cell col_style='']$250[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']
    
    [av_toggle_container initial='0' mode='accordion' sort='']
    [av_toggle title='Toggle 1' tags='']
    [av_toggle title='Toggle 2' tags='']
    [/av_toggle_container]
    
    [/av_cell][/av_row]
    [/av_table]
    

    Best regards,
    Ismael

    #168057

    vielen Dank Ismael

    #168260

    Hi!

    Glad we could help. :)

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Shortcode für die Accordions / Toggle innerhalb einer Tabelle’ is closed to new replies.