any plans to create a short code for tabber?
#1
Posted 11 April 2010 - 09:05 PM
thanks,
Danny
#2
Posted 15 April 2010 - 07:13 AM
Join the iThemes Builder Community on Google+.
To ensure that we can process your support request efficiently, ALWAYS include a link to your site, and/or the page your request is related to. Please also read the forum guidelines.
When asking your question/posting your request on the forum, please be as concise and specific as possible. The shorter your request, the more to the point, the more specific, the easier it will be for us to try and help out.
#3
Posted 15 April 2010 - 01:47 PM
#4
Posted 16 April 2010 - 07:43 AM
Ronald
Join the iThemes Builder Community on Google+.
To ensure that we can process your support request efficiently, ALWAYS include a link to your site, and/or the page your request is related to. Please also read the forum guidelines.
When asking your question/posting your request on the forum, please be as concise and specific as possible. The shorter your request, the more to the point, the more specific, the easier it will be for us to try and help out.
#5
Posted 16 April 2010 - 08:10 AM
#6
Posted 20 April 2010 - 09:07 AM
thanks,
Danny
#7
Posted 10 August 2011 - 11:52 AM
Can't quite figure out this "shortcode any widget" plugin, where I need to specify the tab set.
#8
Posted 10 August 2011 - 12:27 PM
Thanks for posting about this suggestion too. I've made this the top suggested feature request for Tabber Widget. Whenever there is any update on this I'll let you all know, thanks!
Regards,
Add/Follow me on Twitter - G+ - Social Improve - The Reasoner - FB - LinkedIn - Google Search
#9
Posted 10 August 2011 - 12:36 PM
The suggested 'AmR Shortcode Any Widget' plugin specifies this format.
[do_widget "widget name"]. I'm guess "widget name" is TABBER or TABBER_WIDGET? But I have 4 different widget groups, so I'm not sure how this translates. This widget mentions other variations...
"If you use a widget more than once for different shortcodes, you can use
the widget id to isolate which widget instance (and of course
associated settings to use). ie: [do_widget id=categories-6] "
Any ideas?
#10
Posted 10 August 2011 - 01:03 PM
Thanks for the reply. Hmmm, that's the problem you'll face at this time with other plugins trying to auto-shortcode any non-shortcode widget plugins - they're external plugins and thus we don't support them [the reason you can already see: they'll have issues configuring to be run properly, for example].
I don't think you'll be able to use that shortcode formula [at least easily] with Tabber Widget at this time. Put the Tabber Widgets you want [all 4 of them] on any page in the widget section. Then look at the source code and find out their css identifier [for example, one of them may be tabber_widget-6 or something similar with the numbers varying].
Take that number and put it into the [do_widget id=6]. For widget name, try tabber_widget, yes.
If those don't work, I can't see at this time what can be done with that plugin. You'll have to wait for the official shortcode support for that then.
Regards,
Add/Follow me on Twitter - G+ - Social Improve - The Reasoner - FB - LinkedIn - Google Search
#11
Posted 09 July 2012 - 08:05 AM
This creates a widgetized sidebar you call with a shortcode.
In custom_functions.php:
//Registering the sidebar
function ilc_register_sidebars(){
register_sidebar(array(
'name' => 'Sidecode',
'description' => 'Widgets in this area will be shown using [shortbar]',
'before_widget' => '<div id="%1$s" class="%2$s">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
}
add_action( 'init', 'ilc_register_sidebars');
add_shortcode( 'shortbar', 'shortbar_sc' );
//Creating the shortcode output
function shortbar_sc( $atts ) {
ob_start();
dynamic_sidebar('sidecode');
$html = ob_get_contents();
ob_end_clean();
return $html;
}
Then call with: [shortbar]
Edited by Christine Capra, 09 July 2012 - 08:08 AM.
#12
Posted 10 July 2012 - 02:11 PM
Thanks so much for that information! I know it will be useful to other customers and we really appreciate your input!
Thanks,
Elise
#13
Posted 01 November 2012 - 10:46 PM
Im trying to create 1 tabbed content for each of 10 product pages. similar to http://www.sttropeztan.com/self-tan-bronzing-mousse
or am I better off creating a layout for each of the 10 pages, with widget areas to embed tabber widget the default way?
thanks
#14
Posted 14 November 2012 - 07:59 PM
Let me know if there are questions.





