Hello,
There is not a smooth transition when opening a collapsed area in Safari browser. The collapsed area opens – closes – and then re-opens. I have been getting emails from the director regarding the not so smooth opening of these areas.
Our site is behind a firewall and is not accessible.
Here is a sample of the code:
<div style=”float: left; width: 500px; margin-left: 10px; margin-top: 5px; border: 5px solid #ffffff; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; background-color: #ffffff;”>[bc_group][bc_collapse title=”When do I have access to reserve my seat for the ferry?” open=”y/n”]You will have access to make your reservation at noon on the Wednesday before your desired week of travel. The reservation system is on a first come first served basis.[/bc_collapse][/bc_group]</div>
Thanks,
Robert
I have posts that use up to 50 of the collapse shortcodes. The plugin works great and I like it a lot but when there are many collapse items in a post, one of the many tends to not work (usually the 20th or 21st, 22nd one etc.). When I reload the one that dint work will work fine but if I try clicking through the fifty or so collapse items again, I usually run into one that won’t open (almost random). It would be nice if this would get fixed, will have to find different plugin if not..
Thank you.
Hello,
I want to change the css of the accordion items. But I can’t because I found this code in the header.
How to suppress it ?
<style type=”text/css”>
.accordion-inner {
border-top: 1px solid ;
padding: 9px 15px;
}
.accordion-toggle {
color: #000000 !important;
cursor: pointer;
}
.accordion-group {
border: 1px solid ;
border-radius: 4px 4px 4px 4px;
margin-bottom: 2px;
}
</style>
thank you
Carosch
Can this happen?
I mean use another bc_group into bc_collapse ?
I already tried -no success..
but is it possible? -if yes a code example would help!
thanks
]]>Just a little feedback. Plugin works great, I like it.
I would suggest changing add_plugin_page to add_plugin_page – it is very simple plugin, no need to be in main menu.
Other then that, works good.
Hello,
we like this plugin very much, it’s realy easy to use.
unfortunately now we refuse, that it’s nocht useable with IE 8 and 9.
Is it possible anyway to chage this?
With best regards
Heike Prassel
Hi,
the plugin work fine but with Firebug (tab Net) i found that Firefox don’t founds
wp-content/plugins/bootstrap-collapse/bootstrapCustomCss.php?ver=3.8
and that file was made from function (147 line)
function bootstrap_scripts(){
wp_enqueue_script('jquery');
wp_enqueue_script('bootstrapjs',plugin_dir_url(__FILE__) . 'js/bootstrap-collapse.js',array( 'jquery' ));
wp_enqueue_script('bootstrapjst',plugin_dir_url(__FILE__) . 'js/bootstrap-transition.js',array( 'jquery' ));
wp_enqueue_style('bootstrapstyle',plugin_dir_url(__FILE__) . 'css/bootstrap.css');
//wp_register_style('bootstrapCustomCss',plugin_dir_url(__FILE__). 'bootstrapCustomCss.php');
wp_enqueue_style( 'bootstrapCustomCss');
}
Bye!
]]>When using the Twitter Bootstrap Collapse plugin with a WordPress site running version 3.6.1, the following error message was appearing on the console:
error: not found bootstrapCustomCss.php?ver=3.6.1
Having checked in the plugins folder, there was indeed no such file! For now, I have commented out line 147 in bootstrap_collapse.php, but a fix in a future release of this plugin would be most appreciated!
]]>i can’t add any other shortcode in between [bc_collapse] [/bc_collapse] the page crashes when I try to
]]>I want to add an icon to the collapse link. I am using Font Awesome. I figured out how to get it in there and look the way I want it, but obviously editing a plugin’s files directly is a bad idea.
I was wondering if there was a way to include some code in my child theme’s functions.php to add it, and keep it through plugin updates.
Here is the code in the plugin that I want to alter:
function bc_collapse($atts, $content = null) {
extract(shortcode_atts(array(
'id' => '',
'title' => '',
'open'=>'n'
), $atts));
if(empty($id))
$id = 'accordian_item_'.rand(100,999);
$output = '<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse"
data-parent="#accordion2" href="#'.$id.'">'.$title.' <i class="icon-collapse right bootstrap-collapse-icon"></i>
</div>
<div id="'.$id.'" class="accordion-body collapse '.($open == 'y' ? 'in' :'').'">
<div class="accordion-inner">'.$content.'</div>
</div>
</div>';
return $output;
}
As you can see, I simply added <i class="icon-collapse right bootstrap-collapse-icon"></i>
to the accordion-toggle link.
Here is an image of the result: https://i.imgur.com/UIV1YQl.png
Thanks,
Jake