by Tobias Schutter
4.8 (134 reviews)
Column Shortcodes
Adds shortcodes to easily create columns in your posts or pages.
Tested up to WP 6.0.11 (Current: 6.9)
v1.0.1
Current Version v1.0.1
Updated 3 years ago
Last Update on 11 Oct, 2022
Synced 6 hours ago
Last Synced on
Rank
#634
—
No change
Active Installs
70K+
-5.1%
KW Avg Position
79
+1 better
Downloads
891.7K
+5 today
Support Resolved
0%
—
No change
Rating
96%
Review 4.8 out of 5
4.8
(134 reviews)
Next Milestone 80K
70K+
80K+
44
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 8,462 more installs to reach 80K+
Rank Changes
Current
#634
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.8
134 reviews
Overall
96%
5
122
(91%)
4
3
(2%)
3
2
(1%)
2
3
(2%)
1
4
(3%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| divider | 79 | — | Tag | 6 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.1
- Last Updated
- Oct 11, 2022
- Requires WP
- 4.8+
- Tested Up To
- 6.0.11
- PHP Version
- N/A
- Author
- Tobias Schutter
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.8
- Reviews
- 134
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Qi Addons For Elementor
200K+ installs
#253
MW
MW WP Form
200K+ installs
#262
WPFront Scroll Top
200K+ installs
#270
Frequently Asked Questions
Common questions about Column Shortcodes
Manual
You could also type in the shortcode yourself inside the editor. The following shortcodes are available:
[full_width][/full_width]
[one_half][/one_half]
[one_half_last][/one_half_last]
[one_third][/one_third]
[one_third_last][/one_third_last]
[two_third][/two_third]
[two_third_last][/two_third_last]
[one_fourth][/one_fourth]
[one_fourth_last][/one_fourth_last]
[three_fourth][/three_fourth]
[three_fourth_last][/three_fourth_last]
[one_fifth][/one_fifth]
[one_fifth_last][/one_fifth_last]
[two_fifth][/two_fifth]
[two_fifth_last][/two_fifth_last]
[three_fifth][/three_fifth]
[three_fifth_last][/three_fifth_last]
[four_fifth][/four_fifth]
[four_fifth_last][/four_fifth_last]
[one_sixth][/one_sixth]
[one_sixth_last][/one_sixth_last]
[five_sixth][/five_sixth]
[five_sixth_last][/five_sixth_last]
Another option
Another way to add shortcodes is to switch to HTML-view. On the top of editor you will now see all the shortcodes listed.
By default these buttons are hidden. If you'd like to use them you can add this to your theme's functions.php:
add_filter('add_shortcode_html_buttons', '__return_true' );
You could also type in the shortcode yourself inside the editor. The following shortcodes are available:
[full_width][/full_width]
[one_half][/one_half]
[one_half_last][/one_half_last]
[one_third][/one_third]
[one_third_last][/one_third_last]
[two_third][/two_third]
[two_third_last][/two_third_last]
[one_fourth][/one_fourth]
[one_fourth_last][/one_fourth_last]
[three_fourth][/three_fourth]
[three_fourth_last][/three_fourth_last]
[one_fifth][/one_fifth]
[one_fifth_last][/one_fifth_last]
[two_fifth][/two_fifth]
[two_fifth_last][/two_fifth_last]
[three_fifth][/three_fifth]
[three_fifth_last][/three_fifth_last]
[four_fifth][/four_fifth]
[four_fifth_last][/four_fifth_last]
[one_sixth][/one_sixth]
[one_sixth_last][/one_sixth_last]
[five_sixth][/five_sixth]
[five_sixth_last][/five_sixth_last]
Another option
Another way to add shortcodes is to switch to HTML-view. On the top of editor you will now see all the shortcodes listed.
By default these buttons are hidden. If you'd like to use them you can add this to your theme's functions.php:
add_filter('add_shortcode_html_buttons', '__return_true' );
[one_half][/one_half]
Make sure to place your content (text/images etc. ) between the two shortcodes, like so:
[one_half]My content goes here...[/one_half]
My existing theme uses the same shortcodes, how can I solve this?
You can prefix the shortcode by placing the following in your functions.php. Problem solved =)
add_filter( 'cpsh_prefix', 'set_shortcode_prefix' );
function set_shortcode_prefix() {
return 'myprefix_'; // edit this part if needed
}
How can I hide the Padding Settings?
In patch 0.6 we added padding settings (optional) to the plugin. If you would like to hide this settings menu you can place the following in your functions.php
add_filter( 'cpsh_hide_padding_settings', '__return_true' );
How can I hide certain Column Shortcodes from the menu?
If you would like to hide certain column from the menu; place the following in your functions.php
function hide_column_shortcodes( $shortcodes ) {
/* uncomment ( remove the '//' ) any of the following to remove it's shortcode from menu */
// unset( $shortcodes['full_width'] );
// unset( $shortcodes['one_half'] );
// unset( $shortcodes['one_third'] );
// unset( $shortcodes['one_fourth'] );
// unset( $shortcodes['two_third'] );
// unset( $shortcodes['three_fourth'] );
// unset( $shortcodes['one_fifth'] );
// unset( $shortcodes['two_fifth'] );
// unset( $shortcodes['three_fifth'] );
// unset( $shortcodes['four_fifth'] );
// unset( $shortcodes['one_sixth'] );
// unset( $shortcodes['five_sixth'] );
return $shortcodes;
}
add_filter( 'cpsh_column_shortcodes', 'hide_column_shortcodes' );
How can I replace the default Shortcode CSS stylesheet?
You can easily overwrite the existing stylesheet. For example you would like to add a margin between your columns, you just place the following in your theme's style.css:
.one_half {
width: 49% !important;
margin-right: 2% !important;
}
.one_half.last_column {
width: 49% !important;
margin-right: 0px !important;
}
.one_third {
width: 32% !important;
margin-right: 2% !important;
}
.one_third.last_column {
width: 32% !important;
margin-right: 0px !important;
}
.two_third {
width: 66% !important;
margin-right: 2% !important;
}
.two_third.last_column {
width: 66% !important;
margin-right: 0px !important;
}
.one_fourth {
width: 23.5% !important;
margin-right: 2% !important;
}
.one_fourth.last_column {
width: 23.5% !important;
margin-right: 0px !important;
}
.three_fourth {
width: 74.5% !important;
margin-right: 2% !important;
}
.three_fourth.last_column {
width: 74.5% !important;
margin-right: 0px !important;
}
.one_fifth {
width: 18.4% !important;
margin-right: 2% !important;
}
.one_fifth.last_column {
width: 18.4% !important;
margin-right: 0px !important;
}
.two_fifth {
width: 39% !important;
margin-right: 2% !important;
}
.two_fifth.last_column {
width: 39% !important;
margin-right: 0px !important;
}
.three_fifth {
width: 59% !important;
margin-right: 2% !important;
}
.three_fifth.last_column {
width: 59% !important;
margin-right: 0px !important;
}
.four_fifth {
width: 79.6% !important;
margin-right: 2% !important;
}
.four_fifth.last_column {
width: 79.6% !important;
margin-right: 0px !important;
}
.one_sixth {
width: 15% !important;
margin-right: 2% !important;
}
.one_sixth.last_column {
width: 15% !important;
margin-right: 0px !important;
}
How can I prevent the loading of the frontend styling
If you would like to prevent the loading of the column styling on the frontend; place the following in your functions.php
add_filter( 'cpsh_load_styles', '__return_false' );
Will you be adding more shortcodes?
We would love to hear your feedback and suggestions on this. Just send an email to info@codepress.nl.
How can I contribute a translation?
You will find a .po file in the languages folder which you can use. You can send the translation to info@codepress.nl.
Make sure to place your content (text/images etc. ) between the two shortcodes, like so:
[one_half]My content goes here...[/one_half]
My existing theme uses the same shortcodes, how can I solve this?
You can prefix the shortcode by placing the following in your functions.php. Problem solved =)
add_filter( 'cpsh_prefix', 'set_shortcode_prefix' );
function set_shortcode_prefix() {
return 'myprefix_'; // edit this part if needed
}
How can I hide the Padding Settings?
In patch 0.6 we added padding settings (optional) to the plugin. If you would like to hide this settings menu you can place the following in your functions.php
add_filter( 'cpsh_hide_padding_settings', '__return_true' );
How can I hide certain Column Shortcodes from the menu?
If you would like to hide certain column from the menu; place the following in your functions.php
function hide_column_shortcodes( $shortcodes ) {
/* uncomment ( remove the '//' ) any of the following to remove it's shortcode from menu */
// unset( $shortcodes['full_width'] );
// unset( $shortcodes['one_half'] );
// unset( $shortcodes['one_third'] );
// unset( $shortcodes['one_fourth'] );
// unset( $shortcodes['two_third'] );
// unset( $shortcodes['three_fourth'] );
// unset( $shortcodes['one_fifth'] );
// unset( $shortcodes['two_fifth'] );
// unset( $shortcodes['three_fifth'] );
// unset( $shortcodes['four_fifth'] );
// unset( $shortcodes['one_sixth'] );
// unset( $shortcodes['five_sixth'] );
return $shortcodes;
}
add_filter( 'cpsh_column_shortcodes', 'hide_column_shortcodes' );
How can I replace the default Shortcode CSS stylesheet?
You can easily overwrite the existing stylesheet. For example you would like to add a margin between your columns, you just place the following in your theme's style.css:
.one_half {
width: 49% !important;
margin-right: 2% !important;
}
.one_half.last_column {
width: 49% !important;
margin-right: 0px !important;
}
.one_third {
width: 32% !important;
margin-right: 2% !important;
}
.one_third.last_column {
width: 32% !important;
margin-right: 0px !important;
}
.two_third {
width: 66% !important;
margin-right: 2% !important;
}
.two_third.last_column {
width: 66% !important;
margin-right: 0px !important;
}
.one_fourth {
width: 23.5% !important;
margin-right: 2% !important;
}
.one_fourth.last_column {
width: 23.5% !important;
margin-right: 0px !important;
}
.three_fourth {
width: 74.5% !important;
margin-right: 2% !important;
}
.three_fourth.last_column {
width: 74.5% !important;
margin-right: 0px !important;
}
.one_fifth {
width: 18.4% !important;
margin-right: 2% !important;
}
.one_fifth.last_column {
width: 18.4% !important;
margin-right: 0px !important;
}
.two_fifth {
width: 39% !important;
margin-right: 2% !important;
}
.two_fifth.last_column {
width: 39% !important;
margin-right: 0px !important;
}
.three_fifth {
width: 59% !important;
margin-right: 2% !important;
}
.three_fifth.last_column {
width: 59% !important;
margin-right: 0px !important;
}
.four_fifth {
width: 79.6% !important;
margin-right: 2% !important;
}
.four_fifth.last_column {
width: 79.6% !important;
margin-right: 0px !important;
}
.one_sixth {
width: 15% !important;
margin-right: 2% !important;
}
.one_sixth.last_column {
width: 15% !important;
margin-right: 0px !important;
}
How can I prevent the loading of the frontend styling
If you would like to prevent the loading of the column styling on the frontend; place the following in your functions.php
add_filter( 'cpsh_load_styles', '__return_false' );
Will you be adding more shortcodes?
We would love to hear your feedback and suggestions on this. Just send an email to info@codepress.nl.
How can I contribute a translation?
You will find a .po file in the languages folder which you can use. You can send the translation to info@codepress.nl.