-
AuthorPosts
-
July 30, 2013 at 6:46 pm #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.
July 31, 2013 at 5:44 am #132203Hi,
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
July 31, 2013 at 4:31 pm #132204That 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.
August 1, 2013 at 7:40 pm #132205Hi 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
-
AuthorPosts
- The topic ‘Need Tabs Shortcode….’ is closed to new replies.