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

    Trying to create a side tabs section, and since my shortcode button for this will not save, and I really want to avoid the page builder, can you provide the shortcode? I would try to get it from the dummy content, but you used the page builder in that, so I can’t get to it.

    #132203

    Hi,

    Please switch the Avia Builder to debug mode. You will be able to see the actual shortcode below the Advance Layout Editor. Edit functions.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 can now copy the Tab shortcode.

    Anyway, this is the Tabs shortcode:

    [av_tab_container position='sidebar_tab sidebar_tab_right' boxed='border_tabs' initial='1' custom_class='']
    [av_tab title='Tab 1' icon_select='no' icon='1']
    Tab Content goes here
    [/av_tab]
    [av_tab title='Tab 2' icon_select='no' icon='1']
    Tab Content goes here
    [/av_tab]
    [/av_tab_container]

    Regards,

    Ismael

    #132204

    That is super helpful….Thank you!

    So, out of curiosity, have you seen any issues with the shortcode function? What is happening is I go through and create all the tabs, and then click save….And nothing happens. It just sits with the shortcode window open. The thing is, it’s a little random as to when this happens. Some shortcodes seem to work fine.

    #132205

    Hi bmacstudio,

    You can try increasing the available php memory with one or all of these settings: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    It may also be that you need to increase the max_input_vars or the php execution time limit but both are typically best handled by talking to your hosting provider first since many have restrictions or special instructions (although it very similar to increasing the php memory as above).

    Regards,

    Devin

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Need Tabs Shortcode….’ is closed to new replies.