There is no way to add the shortcodes (no buttons to help in Visual or HTML), and the plugin description doesn’t explain them.
It looks like it’s been updated this year, but has it been dropped?
Thanks
]]>Wp-columnize is adding un-necessary <p> tags around the <div class=”column-sect”> or <div class=”post-column”> tags.
Typically my input is:
[col-sect]
[column] First col. [/column]
[column] Second col. [/column]
[/col-sect]
And the html generated is:
<div class="column-sect">
</p>
<p><div class="post-column">
<p> First col. </p>
</div></p>
<p><div class="post-column">
<p> Second col. </p>
</div></p>
<p>
</div>
I have tried doing my input both in the Visual and HTML mode of the editor, without any better result.
]]>Hi,
First of all, great plugin. Saved my ass from hard coding columns in HTML.
Now, if I want to strip the short code from the content or excerpt in such cases where it is not preferable two have columns, how do I go about doing that?
I’ve tried <?php remove_all_shortcodes('the_content') ; the_content(); ?>
but without success. That just leaves [col-sect]
and [column]
embedded in the post.
Suggestions?
]]>Hello, I’ve added WP Columnize as a plugin to my site and even the code the creator provided does not work to create three columns on my pages. My site is onewordbook.com. It’s a pretty basic site made in the Constructor Theme. Please help! I’ve even deleted other problematic plugins to see if that’s where the problem originated.
Thanks!
]]>change the output of “echo” to “return” in your filter-function (add_filter(‘the_content’)), otherwise the “the_excerpt” function will stop working.
]]>