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
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
vielen Dank Ismael