by XWP
1 (0 reviews)
Shortcake (Shortcode UI) Richtext
Plugin for adding rich text editing capabilities to textareas in Shortcake.
Tested up to WP 4.9 (Current: 6.9)
vtrunk
Current Version vtrunk
Updated 7 years ago
Last Update on 24 Mar, 2018
Synced 16 hours ago
Last Synced on
Rank
#11,518
-2 this week
Active Installs
300+
—
No change
KW Avg Position
N/A
—
No change
Downloads
25.4K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 400
300+
400+
1,174
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 100 more installs to reach 400+
Rank Changes
Current
#11,518
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
1.0
0 reviews
Overall
20%
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
- trunk
- Last Updated
- Mar 24, 2018
- Requires WP
- 4.5+
- Tested Up To
- 4.9
- PHP Version
- N/A
- Author
- XWP
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- 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,738
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
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 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.