by Mike Crantea
0 (0 reviews)
Shortcake (Shortcode UI) Richtext
Plugin for adding rich text editing capabilities to textareas in Shortcake.
Tested up to WP 4.9.29 (Current: 6.9.4)
v1.3
Current Version v1.3
Updated 8 years ago
Last Update on 24 Mar, 2018
Refreshed 6 hours ago
Last Refreshed on
Rank
#11,610
—
No change
Active Installs
200+
—
No change
KW Avg Position
N/A
—
No change
Downloads
25.6K
+1 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 300
200+
300+
165
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 9 more installs to reach 300+
Rank Changes
Current
#11,610
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
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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.3
- Last Updated
- Mar 24, 2018
- Requires WP
- 4.5+
- Tested Up To
- 4.9.29
- PHP Version
- N/A
- Author
- Mike Crantea
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- 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,711
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
Qi Addons For Elementor
200K+ installs
#252
MW
MW WP Form
200K+ installs
#266
WPFront Scroll Top
200K+ installs
#272
Frequently Asked Questions
Common questions about Shortcake (Shortcode UI) Richtext
Upload the plugin files to the /wp-content/plugins/shortcode-ui-richtext directory.
Activate the plugin through the 'Plugins' screen in WordPress
Add the meta class option to the textarea input type of an existing shortcake register_for_shortcode call.
Due to the possibility of the user entered content to contain special characters like [, ] and ", it is highly recommended to turn on the encode flag as well.
php
'encode' => true,
'meta' => array(
'class' => 'shortcake-richtext',
),
Activate the plugin through the 'Plugins' screen in WordPress
Add the meta class option to the textarea input type of an existing shortcake register_for_shortcode call.
Due to the possibility of the user entered content to contain special characters like [, ] and ", it is highly recommended to turn on the encode flag as well.
php
'encode' => true,
'meta' => array(
'class' => 'shortcake-richtext',
),
`php
shortcode_ui_register_for_shortcode( 'shortcode_name',
array(
'label' => esc_html__( 'Shortcode Name', 'namespace' ),
'listItemImage' => 'dashicons-text',
'attrs' => array(
array(
'label' => esc_html__( 'Text Element', 'namespace' ),
'attr' => 'text_element',
'type' => 'textarea',
),
),
)
);
`
This is the same code with the richtext capability added in on the text_element:
`php
shortcode_ui_register_for_shortcode( 'shortcode_name',
array(
'label' => esc_html__( 'Shortcode Name', 'namespace' ),
'listItemImage' => 'dashicons-text',
'attrs' => array(
array(
'label' => esc_html__( 'Text Element', 'namespace' ),
'attr' => 'text_element',
'type' => 'textarea',
'encode' => true,
'meta' => array(
'class' => 'shortcake-richtext',
),
),
),
)
);
`
Outputting requires decoding, and since Shortcake uses url encoding, the attribute powered by the rich text editor needs to be urldecoded before rendering its contents, like in the following example using the urldecode function:
`php
function shortcode_name( $atts ) {
extract( shortcode_atts(
array(
'text_element' => '',
),
$atts
));
return '
' . urldecode( $text_element ) . '
';
}
`
This doesn't work although I added the class according to the instructions. Am I missing anything?
Before submitting a report on the GitHub Issue tracker, please ensure the issue you are experiencing does not exist with using the latest Shortcake (Shortcode UI) version downloaded from their own GitHub repository.
shortcode_ui_register_for_shortcode( 'shortcode_name',
array(
'label' => esc_html__( 'Shortcode Name', 'namespace' ),
'listItemImage' => 'dashicons-text',
'attrs' => array(
array(
'label' => esc_html__( 'Text Element', 'namespace' ),
'attr' => 'text_element',
'type' => 'textarea',
),
),
)
);
`
This is the same code with the richtext capability added in on the text_element:
`php
shortcode_ui_register_for_shortcode( 'shortcode_name',
array(
'label' => esc_html__( 'Shortcode Name', 'namespace' ),
'listItemImage' => 'dashicons-text',
'attrs' => array(
array(
'label' => esc_html__( 'Text Element', 'namespace' ),
'attr' => 'text_element',
'type' => 'textarea',
'encode' => true,
'meta' => array(
'class' => 'shortcake-richtext',
),
),
),
)
);
`
Outputting requires decoding, and since Shortcake uses url encoding, the attribute powered by the rich text editor needs to be urldecoded before rendering its contents, like in the following example using the urldecode function:
`php
function shortcode_name( $atts ) {
extract( shortcode_atts(
array(
'text_element' => '',
),
$atts
));
return '
' . urldecode( $text_element ) . '
';
}
`
This doesn't work although I added the class according to the instructions. Am I missing anything?
Before submitting a report on the GitHub Issue tracker, please ensure the issue you are experiencing does not exist with using the latest Shortcake (Shortcode UI) version downloaded from their own GitHub repository.