General (18 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Plugin Sample Shortcode | 1.0.1 | 100 | 3 | 230 |
| |||
Plugin Sample Shortcode is a tutorial to create a shoortcode plugin. The Plugin Sample Shortcode is a simple plugin for shortcode tutorial. How to use shortcode. Features of this plugin include: * Process Shortcode | ||||||||
If Shortcode | 0.2.1 | 100 | 7 | 1318 |
| |||
Donate Link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5SD6XG9JD5TS8 This plugin provides an "if" shortcode This plugin provides an "if" shortcode to conditionally render content. The syntax is the following: [if condition1 condition2=false condition3]{content}[/if] Conditions are passed as attribute names. Multiple conditions evaluate to the result of ORing all of them. In other words, if at least one condition evaluates to the desired boolean result, {content} is rendered, otherwise it is discarded. Attribute values determine if we want the condition to be true or false. A value of '0', 'false', '' (the empty string), 'null' or 'no' means we expect the condition to be false. Anything else, including the absense of a value, is interpreted as true. For example, suppose that we want to include a sentence in a post, but only for anonymous visitors: [if is_user_logged_in=no]The Sentence.[/if] It also provides an [else] shortcode and an [eitherway] one for use inside [if] blocks. [else] will render its content if the condition evaluates to false, and [eitherway] will render its content regardless of the evaluation result. When used outside an [if] block, these shortcodes behave as if the whole content is surrounded by an [if] shortcode whose condition evaluates to true. In other words, an [else] shortcode would not render any content, while a [eitherway] one would. You can use as many of these shortcodes as you like in a single [if] block, which gives you the ability to do things like: - Am I logged in? [if is_user_logged_in]- Yes you are. [else]- No you are not. [/else][eitherway]- I'm sorry, what? [/eitherway]- I said YOU A-R-E LOGGED IN!!! [else]- YOU ARE NOT LOGGED IN!!! What's the matter with you?[/else][/if] A multitude of conditions are supported out-of-the-box. The following evaluate to the result of the corresponding WordPress Conditional Tag, using the no-parameter syntax: is_single is_singular is_page is_home is_front_page is_category is_tag is_tax is_sticky is_author is_archive is_year is_month is_day is_time is_feed is_search comments_open pings_open is_404 is_user_logged_in is_super_admin For example, the evaluation of the is_page condition is equivalent to calling is_page() with no parameter. The functionality of the plugin can be extended by other plugins, by means of adding custom conditions through filters. To add a custom condition, a filter hook must be defined in the following manner: add_filter($if_shortcode_filter_prefix.'my_condition','my_condition_evaluator'); function my_condition_evaluator($value) { $evaluate=.... /* add your evaluation code here */ return $evaluate; } A big thanks to M Miller for the normalize_empty_atts() function found here: http://wordpress.stackexchange.com/a/123073/39275 | ||||||||
WordPress Shortcode-Helper | 1.4 | 100 | 7 | 1917 |
| |||
Make your shortcodes easy to use for everyone. Doesn't matter how many or how complex they are. WordPress Shortcode-Helper is a plugin that helps you to make your shortcodes easier for clients. Make them avialble through a dropdown-list in the WordPress-Editor. Features include: NEW: JSON-Generator (create valid JSON-Code within the backend) Media-Field: Choose an image from the media-popup (option-type: media) Unlimited shortcodes Comes without annoying standard shortcodes Choose your own description for every code Multiple input-fields for attributes Many settings to provide the best UI for your shortcodes Comming soon: Multilingual descriptions More input-fields Any ideas? First, you activate the plugin and create a json-file in the root of your template-folder or in the plugin-folder (standard directory is the root of your template-folder but you can change this in the settings of the plugin). This file contains the information about every shortcode with its attributes and descriptions. Then, the plugin creates a dropdown in your editor with the list of all available codes. That's it! Requires WordPress 3.9 and TinyMCE 4(automatically used by Wordpress 3.9) | ||||||||
Shortcode Variables | 1.7.3 | 98 | 9 | 2876 |
| |||
Requires PHP: 7.2 Donate Link: https://www.paypal.me/yeken Create your own shortcodes and assign text, html, etc to them. Use these across your sit Do you want to use the same snippet throughout your site but only have to change the value in one location? If so, this plugin maybe just what you need. You can create your own Shortcodes and assign text, HTML, JavaScript, etc to it. You will then be given a shortcode such as: [shortcode-variables slug="your-slug-name"] OR, even shorter syntax: [s-var slug="your-slug-name"] You can embed this shortcode throughout your site and it will render the same content. Simply update the Shortcode Variable in Tools > Shortcode Variables and it will change throughout the site! ** Specify Parameters ** Specify your own parameters: You can now specify your own parameters when inserting a shortcode. For example, say you have a shortcode that renders a HTML table, you can now add parameters to the shortcode and specify where they appear in the shortcode e.g. [s-var slug="render-table" border="0" background="#FFFFFF" width="50%" site-title="YeKen"] to place each parameter within a shortcode use the following syntax %%background%%, %%width%%, etc. See below: Welcome to our site, %%site-title%%. ** Premade Shortcodes ** Comes with the following premade shortcodes: sc-todays-date - Displays today's date. Default is UK format (DD/MM/YYYY). Format can be changed by adding the parameter format="m/d/Y" onto the shortcode. Format syntax is based upon PHP date: http://php.net/manual/en/function.date.php sc-site-title - Displays the site title. sc-site-url - Displays the site URL. sc-page-title - Displays the page title. sc-admin-email - Displays the admin email address. sc-login-page - Wordpress login page. Add the parameter "redirect" to specify where the user is taken after a successful login e.g. redirect="http://www.google.co.uk". sc-username - Display the logged in username. sc-user-id - Display the current user's ID sc-user-ip - Display the current user's IP address. sc-user-email - Display the current user's email address. sc-username - Display the current user's username. sc-first-name - Display the current user's first name. sc-last-name - Display the current user's last name. sc-display-name - Display the current user's display name. sc-user-agent - Display the current user's user agent Features: Insert the same piece of data, HTML, text, etc throughout your site and change in only one place. TinyMCE editor Place other WordPress shortcodes within yours Comes with a range of pre-made shortcodes Pass your own parameters into a shortcode Languages supported: English (UK) Need a translation? Email us: email@YeKen.uk Developed by YeKen.uk * Paypal Donate: email@YeKen.uk | ||||||||
User Status Shortcode | 0.1.1 | 100 | 4 | 1592 |
| |||
Easily allows you to display different content to your visitors that are logged in than those that are logged out via shortcode. Easily allows you to display different content to your visitors that are logged in than those that are logged out via shortcode. Tested in templates, pages, posts and text widgets. Create a personalized experience for your users that are logged in and your visitors that are logged out. This plugin might be useful for inbound marketers. Available on GitHub: https://github.com/reedwf/user-status-shortcode Usage Example [userloggedin]content[/userloggedin] //returns content only to logged in users [userloggedout]content[/userloggedout] //returns content only to logged out users | ||||||||
Shortcodes Anywhere or Everywhere | 1.4.2 | 100 | 9 | 7564 |
| |||
Allows Shortcodes to be used nearly everywhere, not just in posts and pages. IMPORTANT: Support has moved to the ZATZLabs site and is no longer provided on the WordPress.org forums. Please visit the new ZATZLabs Forums. If you need a timely reply from the developer, please open a ticket. Shortcodes can be added to Post Excerpts, Page Titles, Post Titles, Widgets, Widget Titles, Custom Fields, Site Title and Description, not just Pages and Posts as is already provided by WordPress itself. This allows Shortcodes to be used in Sidebars, Menus, Headers, Footers and even the HTML <title> element that appears in the Title Bar of most browsers. A Settings page includes checkboxes to select where Shortcodes might appear: In Post Excerpts, both manual and automatically-created Excerpts In Page and Post Titles In Browser Title Bar via <title> In Widgets used in Sidebars, Menus, Headers, Footers, etc. In Widget Titles In Site Title, Description and other bloginfo options In Page or Post Custom Fields Priority is an Advanced Setting beside each checkbox that controls the timing of the WordPress Filter associated with each Where? setting. This is provided solely to address conflicts with other themes and plugins that use the same WordPress Filter ("hook"). A default Warning feature, which can be disabled on the Settings page, displays a message at the top of every Admin panel if the plugin is Activated but doing nothing because no Where? checkboxes are selected (other than the mandatory In Pages and In Posts settings). All Shortcodes are supported by this plugin, no matter whether you are using Shortcodes defined by: WordPress itself, such as [gallery], [audio], [caption], [embed] or [video] Jetpack Shortcode Embeds Your Active Theme Another Plugin, for example, Current Year and Copyright Shortcodes Writing your own Plugin and using the add_shortcode() function Using a Shortcode creation Plugin, for example, Shortcode Exec PHP Future versions will include more areas of the WordPress web site where Shortcodes may be used, based on the needs of users of this Plugin. No attempt has been made to allow Shortcodes to be used to display values in Admin panels. This is the default WordPress behaviour, and changing it may have unintended (negative) consequences. Plugin Developers may find the Table-Driven Design of interest. This was a popular concept in the 1980s and was used in this plugin to simplify the use of WordPress Filters. The two-dimensional global array $jr_saoe_filters is the Table involved. This plugin was created to satisfy a request from a user of the Current Year and Copyright Shortcodes plugin to use these Shortcodes in a Page Title. Adoption Notice This plugin was recently adopted by David Gewirtz and ongoing support and updates will continue. Feel free to visit David's Lab Notes for additional details and to sign up for emailed news updates. Special thanks to Jon 'jonradio' Pearkins for creating the plugin and making adoption possible. | ||||||||
User Shortcodes | 1.0.1 | 100 | 10 | 9691 |
| |||
Add a simple list of shortcodes to WordPress in order to display the current user information. Add a simple list of shortcodes to WordPress in order to display the current user information. Unlike other similar plugins this is a very slim solution without any unnecessary features or design styles. The plugin check if a user is logged in, if no user is currently logged in all of the shortcodes will return empty information. The plugin includes 6 shortcodes: [currentuser_username] Display the current user name [currentuser_useremail] Display the current user email [currentuser_displayname] Display the current user display name [currentuser_firstname] Display the current user first name [currentuser_lastname] Display the current user last name [currentuser_id] Display the current user numeric ID HappyPlugins - eCommerce Plugins for WordPress HappyPlugins company develop premium WordPress & Guides for eCommerce websites. Our Plugins includes Wishlist Member Dedicated Plugins, Easy Digital Downloads Dedicated Plugins Currently HappyPlugins company the number one 3rd party plugins developer for the Wishlist Member Membership Platform. Further Reading The User Shortcodes official homepage. More WordPress Plugins by HappyPlugins Build a Membership site that Convert with Membership Isiders. Follow HappyPlugins on Facebook & Twitter DiscoverWP - Find & Compare WordPress Plugins DiscoverWP was created in thing in mind and that to help every WordPress user to find the right product for his needs. | ||||||||
Password Content ShortCode | 2.2 | 84 | 5 | 6942 |
| |||
Plugin Password Content ShortCode allows you to take the password selection WordPress page content. Plugin Password Content ShortCode allows you to take the password selection WordPress page content Plugin Settings, has the following: (All settings are in admin menu – Options – CS Password) Post by entering the password wrong The text before the password field The name of the button next to the password On the toolbar, added to the “lock”, which allows you to embed a shortcode – [cspasswordcode password = “”] [/ cspasswordcode]. In the shortcode is the key “password” in which you want to specify a password 2.3 Plug completely updated 2.1 Now you can customize the appearance of the form vsheshny added a class css. The same simplified admin panel 2.0 As of version 2.0 is no longer necessary to create arbitrary fields, now need to enter your password directly into the Shortcode 2.3 Plug completely updated 2.1 Simplified admin panel Updated plugin functions Added plugin classes . csp_form {},. csp_input {},. csp_submit {} 2.0 As of version 2.0 is no longer necessary to create arbitrary fields, now need to enter your password directly into the Shortcode 1.1 Update file paths 1.0 Testing and creating plugins | ||||||||
Page/Post Content Shortcode | 1.0 | 100 | 2 | 2779 |
| |||
Import content from another page/post with a shortcode. Very simple plugin. It simply displays content on the page from another page/post. To add content from a page, use the following shortcode: [page-content-sc id="PAGE_ID"] Replace PAGE_ID with the id of the page you wish to import. To add content from a post, use the following shortcode: [post-content-sc id="POST_ID"] Replace POST_ID with the id of the post you wish to import. Built by The Marketing Mix Perth: http://www.marketingmix.com.au | ||||||||
Widgets as Shortcodes | 1.5 | 74 | 3 | 4882 |
| |||
Use WordPress default widgets as shortcodes. Nice and easy interface. Insert anywhere in your site - page/post editor, sidebars, template files. Use WordPress default widgets as shortcodes. Insert WordPress default widgets anywhere in your site - page/post editor, sidebars, template files. No coding is required. It is all done in a nice and easy interface. Upgrade to the Pro version of this plugin - the fastes way to build your Wordpress based site including regular updates and premium support: Content Manager | Demo site Get some more awesome FREE plugins: Portfolio Manager, Widgetize Pages, Blog Manager WordPress default widgets Pages Calendar Archive Meta Search Text Categories Recent Posts Recent Comments RSS Tag Cloud Insert WordPress default widgets Anywhere in your site Basically WordPress default widgets can be inserted anywhere in your site Page/post WYSIWYG editor by using the buttion in the editor In sidebars by using the default Widgets themselves In template files by using the WordPress default widgets' shortcode and WordPress do_shortcode function Custom styling If you need to further style an widget you can use the default WordPress classes for those widgets. Localization/Internationalization This plugin comes Localization/Internationalization ready. It is following WordPress I18n standards. Full version of the plugin Upgrade to the full version of Content Manager | Demo site Custom Responsive Layouts - Build in Seconds Front-end Editor - Edit your layouts and content in the front-end of your site 40+ Shortcodes with add/edit Interface, Custom and Imported Shortcodes Insert Shortcodes Anywhere - Layouts, Page Editor, Sidebars, Template files Insert Sidebars Anywhere - Layouts, Page Editor, Template files WordPress Widgets Anywhere - Layouts, Page Editor, Template files Content Sidebars Support and Updates Zero Coding Required Follow on Twitter | Facebook | YouTube | Google + | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
WordPress Widgets Shortcode | 1.0.3 | 88 | 7 | 11636 |
| |||
Embed any widget area/dynamic sidebar to your pages/posts using the shortcode [dynamic-sidebar id='Your Widget Area/Sidebar name'] The plugin allows you to embed any WordPress Widget area/Dynamic Sidebar to your WordPress posts What you can do: Use the shortcode to embed widget areas in posts Use the shortcode to embed Widget areas in Pages The widgets can be embedded anywhere, at the begining of content, middle, bottom or where ever you want. Just put the shortcode there. Please leave a comment here at BuddyDev.com | ||||||||
My Shortcodes | 2.3 | 90 | 13 | 24407 |
| |||
Allows you to add custom code as a shortcode to be used within your pages or posts. Build custom shortcode elements or download and install shortcodes made by other My Shortcodes users. Highly flexible shortcode builder environment. dedicated areas for template view, javascript input, custom PHP library, external/CDN css and javascript sources. This enables you to render the page or posts with the requires scripts and styles to be placed where it belongs. not all in the shortcode replace area. IMPORTANT: version 2 is not compatible with 1.9.2 exported .CE files. If you have exported and saved .ce shortcodes. Please import them before upgrading. once upgraded, the shortcodes will be converted. you can then export the converted elements to .MSC files for safe keeping. on GitHub Documentation | ||||||||
User Access Shortcodes | 2.1.1 | 96 | 5 | 10113 |
| |||
The simplest way of controlling who sees what in your posts/pages. Restrict content to logged in users only (or guests, or by roles) with simple short This is the most simple way of controlling who sees what in your posts/pages. This plugin allows you to restrict content to logged in users only (or guests) with a simple shortcode. What you see is what you get, and it’s totally free. Usage Show content only for Guests [UAS_guest hint="" in="" admin="1"] This content can only be seen by guests. [/UAS_guest] Show content only for Registered/Logged in users [UAS_loggedin hint="" ex=""] This content can only be seen by logged in users. [/UAS_loggedin] Show content ony for specific users [UAS_specific hint="" ids="" admin="1"] This content can only be seen by some selected users. [/UAS_specific] Go to the plugin’s documentation if you need more information on how to use this plugin. Support Find help in our forums for this plugin (we’ll answer you fast, promise). | ||||||||
Shortcoder | 3.4.1 | 92 | 39 | 92408 |
| |||
Shortcoder is a plugin which allows to create a custom shortcode and store HTML, Javascript and other snippets in it. So if that shortcode is used in any post or pages, then the code stored in the sho... rtcode get exceuted in that place. Features Create "custom shortcodes" easily and use them within WordPress posts Use any name for the created shortcode (ex: [sc name="youtube"]) Use any kind of HTML as Shortcode content. Parameters can also added to HTML (ex: <strong>%%mytext%%</strong> [sc name="testing" mytext="hello"] ) Visual editor for adding shortcode contents. Global tinyMCE button available in the editing toolbar for inserting created shortcodes. Globally disable the shortcode when not needed. Can disable the shortcode, showing it to admins. An example usage Create a shortcode named "adsenseAd" in the Shortcoder admin page. Paste the adsense code in the box given and save it. Use [sc name="adsenseAd"] in your posts and pages. Tada !!! the ad appears in the post. Using this idea, shortcodes can be created for frequently used snippets. You can also add parameters (like %%id%%) inside the snippets, and vary it like [sc name="youtube" id="GrlRADfvjII"] This plugin will be hugely useful to all !!! DONATE: If you like this plugin, you can show your support by donating some amount. Fix for WordPress 4.4 issue Starting Shortcoder 3.4.1 the syntax for shortcoder is [sc name="your shortcode"]. This is in effect to the shortcode API related changes made in WordPress core which made old the syntax unrecognizable. Version 3.4.1 automatically recognizes the old syntax only in posts where the shortcode is inserted directly and not in widgets or in drag and drop themes modules. Those areas need to be manually replaced from old [sc:my_shortcode] to the new [sc name="my_shortcode"] syntax. Please use the below resources for any queries. Resources Documentation FAQs Support Report Bugs | ||||||||
Post Content Shortcodes | 0.5.6 | 100 | 24 | 63078 |
| |||
Adds shortcodes to display the content of a post or a list of posts. This plugin adds two shortcodes that allow you to display either the content of a post or a list of posts within the content area of a post. This plugin should be fully compatible with all post types, as it simply uses the get_post() and get_posts() WordPress functions. Post Content The first shortcode is the [post-content] shortcode. Using that shortcode will allow you to display the content of one post within another post. This shortcode requires a single attribute with a key of "id". To use this shortcode to display the content of a post or page with an ID of 25, you would use this shortcode like [post-content id=25]. This shortcode also accepts the following optional arguments: post_name => null - The slug of the post that you want to pull. This can be used in place of the id attribute show_image => false - Determines whether or not to display the featured image (if so, this appears before the content) show_excerpt => false - Determines whether to default to showing the post excerpt instead of the post content (still falls back to post content if the excerpt is not set) excerpt_length => 0 - If you would like to limit the length of the content/excerpt shown on the page, specify the maximum number of words that should be shown (a read more link will automatically be appended to any entries that exceed that limit). image_width => 0 - The width, in pixels, to which the featured image should be sized image_height => 0 - The height, in pixels, to which the featured image should be sized show_title => false - Whether or not to show the post title at the top of the content. By default, the title is wrapped in <h2> tags, but you can use the post-content-shortcodes-title filter to modify the title output. Post List The second shortcode is the [post-list] shortcode. This shortcode does not require any arguments, but will accept the following arguments (most of which are the default arguments used with get_posts()): numberposts => -1 offset => 0 category => null (can accept category slug [with quotes] or category ID [without quotes]) orderby => title order => asc include => null exclude => null meta_key => null meta_value => null post_type => 'post' post_mime_type => null post_parent => null post_status => 'publish' exclude_current => true ~~blog_id => 0 (the numeric ID of the site from which to pull the posts)~~ blog => null (can be set to the numeric ID or the blog name [slug] of the site from which to pull the posts - this replaces the old blog_id attribute) show_image => false show_excerpt => false excerpt_length => 0 image_width => 0 image_height => 0 shortcodes => false (determines whether the plugin should attempt to allow shortcodes to be processed within the excerpt/content) The first 13 arguments are standard arguments for the get_posts() function. The exclude_current argument is not a standard argument for the get_posts() function. It is a custom argument for this plugin. When that argument is set to true, the current page or post will be excluded from the list of posts. If it is set to false, "false" or 0, the current page or post will be included in the post list. The blog_id argument is also not standard. That argument allows you to pull a post from a site other than the current site when using WordPress multisite. Simply set that argument to the ID of the site from which you want to pull the post, and the post with the id you specify will be pulled from the blog/site with the blog_id you specify. The show_image, image_width and image_height arguments only apply to the post-list shortcode. They determine whether to display the featured image and how to display it for each post within the list. If the image_width and image_height arguments are both set to 0 (which is the default), the "thumbnail" size will be used (assuming the show_image argument is set to 1 or "true"). If only one of the image_width or image_height arguments are set, the other argument will be set to 999999 to ensure that the specified dimension is met. The 'show_excerptandexcerpt_lengtharguments also apply to the post-list shortcode. If you setshow_excerptto 1 or "true", the post excerpt will be shown if it exists. If it doesn't exist (or is empty), the post content will be shown (with HTML stripped out of it). You can truncate the length of the excerpts that are shown in the post list by setting theexcerpt_lengthvalue. Theexcerpt_lengthis measured in words, so if you would like each excerpt to display no more than 50 words, you would set theexcerpt_lengthparameter to 50. If you leave it set to 0 (which is the default), the entire excerpt or content will be shown in the post list. In thepost-listshortcode, ifshow_excerptis set to 0 or false, no content will be shown in the list (as opposed to the behavior of theshow_excerptparameter in thepost-content` shortcode). To read more about the other arguments, please visit the codex page for the get_posts() function. If you are looking to display a list of attachments in a post, rather than displaying a list of posts or pages, you might want to check out the List Attachments Shortcode plugin instead. Multisite - Pulling Posts From Another Blog To pull a list of posts from another blog, simply provide the blog's ID as the blog_id argument in the shortcode. With that argument, this plugin will pull a list of posts that match the other criteria you provided. If the blog_id argument is provided, and the blog_id doesn't match the ID of the current blog, the exclude_current argument will be ignored (otherwise, this plugin would automatically exclude whatever post on the other blog happens to have the same ID as the current post). When the list is displayed, shortlinks (that blog's URL with ?p=[post_id]) will be used, rather than the proper permalink, since it would require a lot more resources to build the proper permalink. The usage would look something like: [post-list blog_id=12 post_type="page"] When displaying a post list, you can use any post_type that is registered on that blog (that post_type does not have to be registered on the current site). To display the content of a single post from another blog, again, simply provide the blog's ID as the blog_id argument. That will pull the content of that post. Unfortunately, at this time, there is no way to invoke all of the plugins from the blog from which you're pulling the content, so any shortcodes, filters, etc. that may be active on the source blog will not be parsed when the content is displayed on the current blog. Obviously, if all of the same plugins and themes are active (or, if any plugins/themes that introduce shortcodes and filters are active) on both the source blog and the current blog, then there is nothing to worry about. The usage would look something like: [post-content blog_id=12 id=25] That would pull the content for the post with an ID of 25 from the blog with an ID of 12. | ||||||||
Shortcodes AnyWhere | 1.0.1 | 100 | 2 | 6237 |
| |||
Enable the usage of shortcodes almost any where on your website WordPress shortcodes are very powerful tool to enhance your website content easily and quickly. If you are programmer you can create a new shortcode either through a plugin or a theme, but even if you are not familiar with code you can create new shortcodes for your website using simple plugins like shortcodes Pro. The only one disadvantages of the WordPress shortcodes is that by default they are working only inside your page or post content and if you want to put a shortcode inside the widget for example they will not work. Shortcodes AnyWhere solve this problem very easily and enable to use WordPress shortcode almost anywhere on you website. Shortcodes AnyWhere will give the ability to use the shortcodes inside: Text Widgets Comments Experts Category, Tag, and Taxonomy Descriptions. HappyPlugins - eCommerce Plugins for WordPress HappyPlugins company develop premium WordPress & Guides for eCommerce websites. Our Plugins includes Wishlist Member Dedicated Plugins, Easy Digital Downloads Dedicated Plugins Currently HappyPlugins company the number one 3rd party plugins developer for the Wishlist Member Membership Platform. Further Reading The Shortcodes AnyWhere official homepage. More WordPress Plugins by HappyPlugins Build a Membership site that Convert with Membership Isiders. Follow HappyPlugins on Facebook & Twitter DiscoverWP - Find & Compare WordPress Plugins DiscoverWP was created in thing in mind and that to help every WordPress user to find the right product for his needs. | ||||||||
Widget Shortcode | 0.3.0 | 98 | 37 | 181244 |
| |||
Adds [widget] shortcode which enables you to output widgets anywhere you like. The shortcode requires the widget ID, but no need to guess, the plugin generates the code for you. To override the widget title for a widget you can use the "title" parameter: [widget id="text-1" title="New title"] You can also hide the widget title entirely if desired: [widget id="text-1" title="0"] Additional Parameters: container_tag: the HTML tag to use for the widget container, default: div container_class: CSS classname added to the widget container, default: widget %2$s (Note: uses sprintf for variable substitution) container_id: HTML ID attribute for the widget container, default: %1$s (Note: uses sprintf for variable substitution) title_tag: HTML tag to use for the widget title wrapper, default: h2 title_class: CSS classname for the widget title wrapper, default: widgettitle | ||||||||
Widget or Sidebar Shortcode | 0.6.1 | 100 | 2 | 13209 |
| |||
Use widgets or sidebars per shortcode in the content area from pages/posts This plugin implements 2 new shortcodes. [widget name="" classname='' instance=""] to use a widget per shortcode in the content area from a page/post. name is the name of the widget, e.g. Calendar. classname is the name of the PHP Class that implement the widget. You can use name or classname. So are [widget name="Kalender" instance="title=Hello,World!"] and [widget classname="WP_Widget_Calendar" instance="title=Hello,World!"] produce the same output. instance are the attributs of the widget. e.g. title=Hello,World! so the complete shortcode is [widget name="Calendar" instance="title=Hello,World!"] For the instance list of the Wordpress builtin Widgets look at http://codex.wordpress.org/Function_Reference/the_widget For other Widgets look at the source code from the widget or ask the widget author. [sidebar name=""] to use a sidebar (with all widgets) in the content area from a page/post. name is the name of the sidebar e.g. Showcase Sidebar so the complete shortcode is [sidebar name="Showcase Sidebar"] For own css styling, the plugin wraps the widgets in < div id="Widget_Name" class="widget_shortcode"> and the sidebar in < div id="Sidebar_Name" class="sidebar_shortcode"> If your want report a bug or a feature, please use http://bugs.staude.net Entrys in the changelog with numbers means the ticket id on http://bugs.staude.net | ||||||||
Features SubCategory (25 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
WPBatch icons Shortcode | 1.0 | 100 | 6 | 407 |
| |||
Best, Easiest and Most Stylish icons Using Shortcode This Plugin will Help you to add any kind of icons with colors, background, space, size and some more features Please Check the Demo: WPBatch Icons Shortcode Features include: Shortcode You will get the opportunity to use shortcodes to show the icons. | ||||||||
User Shortcodes Plus | 2.0.0 | 80 | 5 | 949 |
| |||
Add simple user shortcodes to WordPress for displaying information, including custom meta and avatars, for any user. Add simple user shortcodes to WordPress for displaying information, including custom meta and avatars, for any user. Available Shortcodes: - [user_id] - [user_login] - [user_email] - [user_firstname] - [user_lastname] - [user_nicename] - [user_display] - [user_display_name] (alias) - [user_registered] - [user_avatar] (image) - [user_avatar_url] - [user_url] - [user_website] (alias) - [user_description] - [user_bio] (alias) Displaying userdata for another user: ex. [user_email id=2] | ||||||||
Simple Image Popup Shortcode | 1.0 | 80 | 3 | 761 |
| |||
Adds Image popup to simple image in your wordpress site using the short code . This plugin will enable to display your simple image to open in popup box using simple shortcode. You can use short code inside any Wordpress post or page. Popup's displayed with the below short code: [sips_popup img_url="your image path"] Click here for demo | ||||||||
Simple shortcode buttons | 1.3.2 | 100 | 3 | 822 |
| |||
Add shortcode buttons to your WordPress editor to make shortcode inserting really easy. | ||||||||
Markdown Shortcode | 0.2.1 | 100 | 2 | 602 |
| |||
Damn simple [markdown]#via shortcode[/markdown] for wordpress. This plugin uses parsedown and highlight.js. Zero configuration. Write this into the editor: [markdown] #h1 ##h2 text ____sourc... e code (two ore more underscores will be replaced by empty spaces) ____source code (two ore more underscores will be replaced by empty spaces) ```javascript source code ``` [/markdown] and the shortcode content will be parsed with parsedown. Syntax highlighting will appear for the source codes. This plugin is available at github, too. Please report issues at github, pull requests are welcome, too! | ||||||||
SEO Internal Link Shortcode | 0.1.1 | 96 | 6 | 2287 |
| |||
Internal links to posts, custom-type posts, pages, categories and tags with any HTML attribute(s). This plugin allows you to create internal <a> links within your content that will not break when things get renamed or moved. While there are similar plugins available, they do not offer important SEO options. You can add any HTML attribute to your link as long as it’s prefixed with “attr_”. And because it supports attributes that may not currently exist, it is future proof. Examples: Link to a post/page by ID or slug Shortcode: [link id="1234"/] Shortcode: [link slug="post-slug"/] Output: <a href="http://domain.com/post-slug/">Post Title</a> Link to a category by slug Shortcode: [link cat="cat-slug"/] Output: <a href="http://domain.com/cat-slug/">Category Name</a> Link to a tag by slug Shortcode: [link tag="tag-slug"/] Output: <a href="http://domain.com/tag-slug/">Tag Name</a> Custom text instead of retrieved title Shortcode: [link id="1234"]custom text[/link] Output: <a href="http://domain.com/post-slug/">custom text</a> Additional attributes for SEO/other Shortcode: [link id="1234" attr_rel="something" attr_itemprop="specialty"/] Output: <a href="http://domain.com/post-slug/" rel="something" itemprop="specialty">Post Title</a> | ||||||||
SMNTCS Shortcode Popup | 1.2.0 | 100 | 2 | 772 |
| |||
Tired of looking for "another" plugin to open your favorite contact form as a pop-up? 'SMNTCS Popup Anything' allows the easy creation of pop-up contact forms and more, using the famous Twitter Bootst... rap modal. Popup Anything! Works well with Contact Form 7, Gravity Forms, TablePress and more! | ||||||||
JSFiddle Shortcode | 1.1.0 | 100 | 2 | 1602 |
| |||
Allows to easily embed Fiddles using a small shortcode. | ||||||||
Shortcode Button | 1.1.9 | 80 | 2 | 1696 |
| |||
Add Useful Buttons to your blog simply by shortcode. Need some nuttons to make your post better? Now you can use this plugin to add Useful Buttons to your blog! You just need to type the shortcode [button] in to your post and everything will done for you! For shortcode usage please visit "Dashboard" -> "Tools" -> "Shortcode Button" Live Demo: Click Here 中文介紹請看這裏 Translators Chinese, Simplified (zh_CN) - Arefly Chinese, Traditional (zh_TW) - Arefly English (en_US) - Arefly If you have created your own language pack, or have an update of an existing one, you can send gettext PO and MO files to Arefly so that I can bundle it into Shortcode Button. You can download the latest POT file. | ||||||||
JSON Data Shortcode | 1.3 | 100 | 3 | 2864 |
| |||
Load data via JSON and display it in your posts and pages - even to spiders or visitors with JavaScript disabled This shortcode lets you pull data into your pages via JSON. Supports unlimited levels of nesting! Built-in caching of results keeps your data providers happy, but can be tailored to your needs with a configurable lifetime. You can use it one of two ways (but not necessarily on the same page - see this article!) [json src="http://example.com/my_data_src?format=json" key="Data.mykey"] --> outputs contents of mykey in the Data object [json src="http://example.com/my_data_src?format=json"]I want my value to appear right here {Data.mysubdata.otherKey} in the middle of my content.[/json] --> replaces the text in {} with contents of otherKey in the mysubdata object in the Data object Note: this plugin allows you to bring content from remote sites into your posts. Please exercise caution, especially if you allow posting by untrusted users. | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Shortcode Star Rating | 0.2 | 100 | 8 | 9097 |
| |||
Rating in the article with Dashicons. Overview You can star rating in the article by using the shortcode. It uses the built-in icon fonts(Dashicons), WordPress 3.8 or higher is required. Example of how to use [star rating="3"] ... Display 3 filled star and 2 blank star. e.g. ★★★☆☆ [star rating="3.5"] ... Display 3 filled star, 1 half star and 1 blank star. [star rating="85" type="percent"] ... Express the value of the percentage. The range of values is 0-100. [star rating="7" max="10"] ... You can display the stars more than 5. e.g. ★★★★★★★☆☆☆ [star rating="5" numeric="yes"] ... Display the number. e.g. ★★★★★(5/5) Options rating ... Number of rating stars. Default value is '0'. max ... Limit of star to be displayed. Default value is '5'. type ... Choose the 'percent' or 'rating'. Default value is 'rating' numeric ... Display the numbers after the rating star. Default value is 'no'. Settings In admin menu, 'Settings' -> 'Shortcode Star Rating' Star Color ... Enter the HEX color code the color of the star. Default '#FCAE00'. Adjust Star Size ... If you check in this box, stars fit in a perent box size. It is fixed at 20px If you do not check. | ||||||||
Current Year and Copyright Shortcodes | 1.0.1 | 100 | 8 | 11896 |
| |||
Provides Shortcodes to display the Current Year and/or a Copyright symbol. IMPORTANT: Support has moved to the ZATZLabs site and is no longer provided on the WordPress.org forums. Please visit the new ZATZLabs Forums. If you need a timely reply from the developer, please open a ticket. If you need to display the current year, and have it always kept up to date, inserting this plugin's [y] shortcode almost anywhere on your web site will do just that. If you need to display an official Copyright notice, inserting this plugin's [c] shortcode provides the official C with a circle around it ("©") required legally in many countries to Copyright many forms of intellectual property. Used on its own, this plugin allows you to place the Copyright symbol and/or the current year in the body of a Page or Post. For other areas of your web site, you will need to install the jonradio Shortcodes Anywhere or Everywhere plugin. Such places as Page Titles, Post Titles, Custom Fields of both Pages and Posts, Site Title, Description and other bloginfo options, Widgets and Widget Titles, which covers most Sidebars, Menus, Headers and even the HTML <title> element that appears in the Title Bar of most browsers. The [y] shortcode inserts the four digit current year into any Page or Post no matter whether you use the Visual or the HMTL editor tab in Edit Post or Edit Page. The [c] shortcode inserts the © Copyright symbol, using the official HTML coding for a copyright symbol. To address restrictions within older WordPress versions of using two Shortcodes side-by-side, the [cy] shortcode inserts the © Copyright symbol, a blank and the current year. For example, if you are continually refining an older article that you want to copyright on a WordPress Page, you could put the following at the bottom of the page: [c] 1997-[y] John Smith Assuming it is currently the year 2014, that would display as: © 1997-2014 John Smith In 2015, it would automatically display as © 1997-2015 John Smith without anyone having to edit the Page. Adoption Notice This plugin was recently adopted by David Gewirtz and ongoing support and updates will continue. Feel free to visit David's Lab Notes for additional details and to sign up for emailed news updates. Special thanks to Jon 'jonradio' Pearkins for creating the plugin and making adoption possible. | ||||||||
ToneDen Player Shortcode | 0.1 | 90 | 2 | 3228 |
| |||
Enables shortcode to embed ToneDen's new SoundCloud player in WordPress blogs. We built a sweet new version of the SoundCloud embeddable player! Check out the details at https://www.toneden.io/player. This plugin will let you embed our player into your WordPress blog just as easily as the SoundCloud player- in fact, if you've used the SoundCloud Shortcode Plugin, you can replace the [soundcloud] tags with [tonedenplayer] tags and the ToneDen player will automatically replace the SoundCloud player (though any custom styles you applied to the SoundCloud player won't apply to the ToneDen player). | ||||||||
WP Google Maps Shortcode | 1.2 | 80 | 5 | 8908 |
| |||
Insert Google Maps into your post or page using Shortcode WP Google Maps Shortcode – Insert Google Maps into your post or page using Shortcode. Maps are displayed with the [wp_gmaps] short code: [wp_gmaps address="San Francisco, California" zoom="7" marker="1"] Support geocoding service Support latitude and longitude parameters Support zoom Enable/Disable marker | ||||||||
Log Out Shortcode | 1.0.5 | 100 | 6 | 12637 |
| |||
Easily add a log out link or button to a post or page using a simple shortcode. There are 3 shortcodes that can be used: [logout] A standard Log Out link, where the user stays on the login screen after being logged out. [logout_to_home] A link that logs the user out, and redirects them to your home page. [logout_to_current] A link that logs the user out, and redirects them back to the current page/URL. Advanced Usage: All 3 shortcodes all support 3 attributes/parameters: [logout text="" class="" redirect=""] The 3 supported attributes/parameters are: text="" The text to use for the link anchor text. Default: Log Out class="" The HTML class(es) to use for the link. Multiple classes should be separated by a space. Default: logout redirect="" The path/URL to redirect the user to after they are logged out. Default: the WordPress login screen. Note: must be a URL or path on the same domain name as the WordPress website (cannot be an external domain/URL) Some Examples: [logout text="Log Off"] A Log Off link that logs the user out. [logout redirect="/members/"] Log the user out, and redirect them to /members/. [logout_to_home text="Log Off"] A Log Off link that logs the user out and redirects them to your home page. [logout class="log-out-link"] Use a custom CSS/HTML class name for the log out link. Note: the shortcodes will return nothing/empty if the user isn't logged in. This plugin is inspired by the Logout Button plugin by Ben Poland. If you like, you can contribute to this plugin on GitHub. | ||||||||
Quotes Shortcode and Widget | 1.5 | 80 | 2 | 4249 |
| |||
Create Quotes. Nice and easy interface. Insert anywhere in your site - page/post editor, sidebars, template files. It is easy to create all different kinds of Quotes for your WordPress site. Insert Quotes anywhere in your site - page/post editor, sidebars, template files. No coding is required. It is all done in a nice and easy interface. Upgrade to the Pro version of this plugin - the fastes way to build your Wordpress based site including regular updates and premium support: Content Manager | Demo site Get some more awesome FREE plugins: Portfolio Manager, Widgetize Pages, Blog Manager Quotes Options Quote Text Border Border Style Background Color Background Pattern Text Color Custom CSS Class Insert Quotes Anywhere in your site Basically Quotes can be inserted anywhere in your site Page/post WYSIWYG editor by using the buttion in the editor In sidebars by using the OTW Shortcode Widget In template files by using the Quote's shortcode and WordPress do_shortcode function Custom styling If you need to further style an Quotes here are your options: Each Quote shortcode has it's unique CSS class that can be used to style all Quotes. Create a new class for each instance of an Quotes shortcode in its interface so you can style it individually. Localization/Internationalization This plugin comes Localization/Internationalization ready. It is following WordPress I18n standards. Full version of the plugin Upgrade to the full version of Content Manager | Demo site Custom Responsive Layouts - Build in Seconds Front-end Editor - Edit your layouts and content in the front-end of your site 40+ Shortcodes with add/edit Interface, Custom and Imported Shortcodes Insert Shortcodes Anywhere - Layouts, Page Editor, Sidebars, Template files Insert Sidebars Anywhere - Layouts, Page Editor, Template files WordPress Widgets Anywhere - Layouts, Page Editor, Template files Content Sidebars Support and Updates Zero Coding Required Follow on Twitter | Facebook | YouTube | Google + | ||||||||
Search shortcode | 1.0 | 92 | 5 | 10958 |
| |||
Provides a [search] shortcode to insert search form in content. Provides a [search] shortcode to insert search form in content. Works with all bundled themes (2010,2011,2012). Should work with any other decently coded theme | ||||||||
menu shortcode | 1.0 | 100 | 2 | 4590 |
| |||
From this plugin you can call menu from shortcode. Where you have option of giving it id, class etc. Read usage to know more. 1. Write the shortcode From this plugin you can call menu from shortcode. Where you have option of giving it id, class etc. Read usage to know more. Write the shortcode just [listmenu menu="menu name goes here" menu_id="menu id goes here"] i.e. [listmenu menu="quick footer" menu_id="footer_menu"] you have variety of option to give below is it's explanation 'container_class' => 'menu container classname', 'container_id' => menu container id', 'menu_class' => 'menu class', 'menu_id' => 'menu id', 'before' => 'before menu html', 'after' => 'after menu html', 'link_before' => 'before link title', 'link_after' => 'after link title' redirect shortcode [redirect location="http://www.google.com" duration="1"] or [redirect location="http://localhost:1337/aaneel" duration="0.2"] where you can set location and duration in post and widget as well. remember full url is necessary. | ||||||||
Social Media Shortcode Pack | 1.1 | 100 | 2 | 5026 |
| |||
Requires PHP: 5.2 Registers shortcodes for your posts, pages, or post types that display user profile links to various social media websites. This plugin registers shortcodes for the following websites, social service on the left, format for the shortcode on the right: Service / shortcode version Colourlovers [colourlovers] Delicious [delicious] Digg [digg] Dribbble [dribbble] Facebook [facebook] Favstar.FM [favstarfm] Flickr [flickr] Forrst [forrst] Foursquare [foursquare] GitHub [github] Last.FM [lastfm] LinkedIn [linkedin] Myspace [myspace] OkCupid [okcupid] Programmable Web [programmableweb] Reddit [reddit] Scribd [scribd] SlideShare [slideshare] StumbleUpon [stumbleupon] Twitter [twitter] Vimeo [vimeo ] YouTube [youtube ] All examples updated for v1.1 Example 1: [twitter name="JoeSomeone" text="some text you want the link to appear as"] results in: <a href="http://www.twitter.com/JoeSomeone" title="JoeSomeone's Twitter profile\" class="twitter_smsc">some text you want the link to appear as</a> on your post/page Example 2: [twitter name="JoeSomeone"] results in: <a href="http://www.twitter.com/JoeSomeone" title="JoeSomeone's Twitter profile\" class="twitter_smsc">JoeSomeone (Twitter)</a> on your post/page. Example 3: [twitter name="JoeSomeone" target="_blank"] results in: <a href="http://www.twitter.com/JoeSomeone" title="JoeSomeone's Twitter profile\" target="_blank" class="twitter_smsc">JoeSomeone (Twitter)</a> on your post/page. | ||||||||
Links shortcode | 1.8.2 | 90 | 12 | 32749 |
| |||
The plugin provides the shortcode 'links'. This shortcode shows all links having specified characteristics, following a specified template. The plugin re-enables the Link Manager in Wordpress and provides the shortcode 'links'. This shortcode displays a list of all links having specified characteristics, for example a link category name in your post. By default it includes a Facebook Like button for every link, but this can be easily disabled. The plugin supports a customizable template for showing links. This enables you to use the shortcode to display links in any format you like, for example in a list or a table, with or without link images, etc. All relevant properties of a link are supported and listed on the Settings page of the plugin. The typical format for the short code is [links option1="x" option2="y" etc...] The following options are available: fblike: Show the facebook Like button (default '1', to disable set to any value other than '1'). fbrecommend: Show the Facebook Recommend botton (default '', to enable set to '1'). orderby: Order the links by (default 'name'). Use 'order' to order links by order specified with 'My Link Order' plugin. order: How to order, ASC or DESC (default 'DESC'). limit: Limit the number of links shown (default '-1', which means no limit). category: Comma separated list of link category ID's. category_name: Category name of a catgeory of links to show. Overrides category parameter. hide_invisible: Hide links marked as not visible (default '1', yes). include: Comma separated list of numeric link IDs to include. If 'include' is used, the category, category_name, and exclude parameters are ignored. exclude: Comma separated list of numeric link IDs to exclude. search: Shows all links matching this search string. It searches url, link name and link description. links_per_page: To paginate lists of links. How many links to show per page. Below the links a pagination will be shown. links_list_id: A unique identifyer on a page for the shortcode at hand. Mandatory in case 'links_per_page' is used to paginate. Optional to define custom styles for this id using css. class: A class that can be inserted using the links template. You could for example use <div class="[class]"> in the template to attache different style to different instances of the short code. alttext: An alternative text that will be displayed if the shortcode does not return any links. Dafault options can be changed on a 'Links Shortcode' page in the Settings menu. Example: [links category_name="Blogroll"] Using the customizable template, all properties of a link can be displayed. An example template is included. This template uses the Name, Web Address, Description and Rating of your links. The Name will link to the Web Address. If the Name starts with a date, formatted as: yyyy-mm-dd followed by ':', a separate property for the date is available. Templates are fully customizable. For more information see http://www.apprique.com/community/wordpress-plugins. Please note that the Description of a link has a limited length, but the Wordpress UI does not show this. After saving changes to a Link in the Links section, Wordpress only saves the first 255 characters. This has nothing to do with this Plugin. | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Info Boxes Shortcode and Widget | 1.6 | 60 | 5 | 15225 |
| |||
Create Info boxes. Nice and easy interface. Insert anywhere in your site - page/post editor, sidebars, template files. Easily create all different kinds of Info Boxes for your WordPress site. Insert Info Boxes anywhere in your site - page/ post editor, sidebars, template files. No coding is required. It is all done in a nice and easy interface. Upgrade to the Pro version of this plugin - the fastes way to build your Wordpress based site including regular updates and premium support: Content Manager | Demo site Get some more awesome FREE plugins: Portfolio Manager, Widgetize Pages, Blog Manager Info Boxes Options Content Border Type Border Color Border Style Shadow Rounded Corners Background Color Background Pattern Icon Type Icon Size Icon Color Custom CSS Class Insert Info Boxes Anywhere in your site Basically Info Boxes can be inserted anywhere in your site Page/post WYSIWYG editor by using the buttion in the editor In sidebars by using the OTW Shortcode Widget In template files by using the Info Boxes' shortcode and WordPress do_shortcode function Custom styling If you need to further style an Info Box here are your options: Each Info Box shortcode has it's unique CSS class that can be used to style all Info Boxes. Create a new class for each instance of an Info Box shortcode in its interface so you can style it individually. Localization/Internationalization This plugin comes Localization/Internationalization ready. It is following WordPress I18n standards. Full version of the plugin Upgrade to the full version of Content Manager | Demo site Custom Responsive Layouts - Build in Seconds Front-end Editor - Edit your layouts and content in the front-end of your site 40+ Shortcodes with add/edit Interface, Custom and Imported Shortcodes Insert Shortcodes Anywhere - Layouts, Page Editor, Sidebars, Template files Insert Sidebars Anywhere - Layouts, Page Editor, Template files WordPress Widgets Anywhere - Layouts, Page Editor, Template files Content Sidebars Support and Updates Zero Coding Required Follow on Twitter | Facebook | YouTube | Google + | ||||||||
Shortcode Menu | 3.2 | 86 | 12 | 38084 |
| |||
Display your menu anywhere in simple and quick steps. This plugin gives more flexibility for custom menu. Shortcodes will be used to show your menu in the Sidebars, Footer Sidebars, Posts or Pages. Using shortcode you can customize the menu attributes. Also you can set your custom id or class to a menu. You can display ordered list menu as well. We have added the option of display style so users can display menu inline or block. The main feature is that, we have enhanced the sub menu to display it more effectively. You can disable this feature. We will create your shortcode for you in just simple steps. | ||||||||
Responsive Video Shortcodes | 1.2.5 | 88 | 5 | 17652 |
| |||
Version: 1.2.5 This tiny plugin allows you to embed online video from YouTube, Vimeo and more media for a responsive layout - they scale No longer maintained: This plugin is no longer maintained. Unfortunately I don't have the capacities to keep up with this project as there are other WordPress-related projects & plugins that are higher priority to me, and to a certain degree I also feel like, while this plugin serves a specific useful purpose, its job should rather be done by a theme (and many do so already). Also, if I started this plugin now, I wouldn't go for a shortcode, but just handle the videos automatically to make them responsive. But I don't want to go to much into detail here. I want to thank all the users of this plugin, you really gave me a warm welcome here (this was my first plugin!). I understand if you feel a little let down now, but there are only 24 hours in a day... I hope you can see my point of view as well. Generally however, I think this plugin is good to go on without any updates as this part of functionality shouldn't open any security holes. The downside is that there won't be any enhancements any longer. So again, thank you so much for your motivation and that you use the plugin! Responsive Video Shortcodes is a tiny plugin that allows you to embed video files from the popular video hosting platforms in a responsive design. It is based on the WordPress oEmbed feature, so it supports every online service that is natively supported by WordPress. All you need to do is use the shortcode and put a video URL in the content between the tags. Alternatively, you can use the included widget to display a (responsive) list of videos. You can furthermore use the plugin to display even non-video media in a responsive manner, for example Flickr images, Soundcloud songs or Spotify playlists. Shortcode Compatibility Since version 1.2.0, a compatibility mode exists to make this plugin's [video] shortcode compatible with the WordPress Core [video] shortcode which has been introduced in 3.6. This plugin's shortcode creates a wrapper around embedded videos and other media to make them responsive. It has nothing to do with the homonymous WordPress Core shortcode (which handles HTML5 video). Please keep in mind that the WordPress [video] shortcode is self-closing while this plugin's [video] shortcode isn't. This is how the two shortcodes can be separated from each other. Supported Aspect ratios 4:3 (mainly for video) 16:9 (mainly for video) 21:9 (mainly for video) 3:2 (for some images) 3:1 (recommended to use with single audio tracks) 5:6 (recommended to use with audio playlists) 1:1 (for square images or tweets with images) Autoplay functionality As of Version 1.1.6, Vimeo and Soundcloud are the only platforms supporting autoplays using oEmbed (the WordPress way to embed media). Therefore it is currently not possible to extend the plugin to add the autoplay functionality for another provider. However, if more platforms start supporting this, it will be implemented in future versions of the plugin aswell. | ||||||||
List Pages Shortcode | 1.7.4 | 96 | 11 | 78440 |
| |||
Introduces the [list-pages], [sibling-pages] and [child-pages] shortcodes for easily displaying a list of pages within a post or page. Introduces the [list-pages], [sibling-pages] and [child-pages] shortcodes for easily displaying a list of pages within a post or page. Both shortcodes accept all parameters that you can pass to the wp_list_pages() function with the addition of a class parameter. Example Usage List pages sorted by title [list-pages sort_column="post_title"] List pages but exclude certain IDs and set the class of the list to "my-page-list" [list-pages exclude="17,38" class="my-page-list"] Show excerpt (for pages excerpt support will need adding manually or via the Page Excerpt plugin) [list-pages excerpt="1"] List the current page's children, but only show the top level [child-pages depth="1"] List the current page's siblings and their subpages [sibling-pages depth="2"] Default Arguments The default values are the same as for the wp_list_pages() function except for title_li which defaults to nothing. If a class is not specified, a default class of either "list-pages", "sibling-pages" or "child-pages" is given to the UL tag. In addition, the echo parameter has no effect. In addition to the wp_list_pages() arguments, you can also specify: list_type (string) List tag. Defaults to <ul>. exclude_current_page (int) Exclude the current page. Defaults to 0. excerpt (int) Show the page excerpt. Defaults to 0. | ||||||||
SoundCloud Shortcode | 3.0.2 | 92 | 18 | 317813 |
| |||
SoundCloud Shortcode plugin for WordPress This plugin converts all SoundCloud Shortcodes into embeddable SoundCloud players. It works for any SoundCloud track, playlist, user, or group. Once you install this plugin, it works for any of your blog posts. A simple example: [soundcloud]http://soundcloud.com/forss/flickermood[/soundcloud] More Options SoundCloud Shortcodes support these optional parameters: width height params The params parameter passes additional options to the SoundCloud embeddable player. You can find a full list on the SoundCloud Developers pages: http://developers.soundcloud.com/docs/widget An example of a track that starts playing automatically and won’t show any comments: [soundcloud params="auto_play=true&show_comments=false"]http://soundcloud.com/forss/flickermood[/soundcloud] | ||||||||
Enhancements SubCategory (8 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Sidebar-Content from Shortcode | 2.0 | 100 | 7 | 1138 |
| |||
This Plugin enables passing content to any sidebar from the page without using userdefined fields. Therefore it is possible to use the WYSIWIG-editor This plugin allows you to pass content to any sidebar from the page without using userdefined fields. Therefore it is possible to use the WYSIWIG-editor of your choice. How it works: This plugin comes with a new enclosing shortcode [sidebar_content][/sidebar_content] where you can place any content, you want to have displayed in the sidebar. You will be able to use other shortcodes within this shortcode to use galleries, videos or any other stuff in the sidebar of your choice. Additionally there will be a new widget which you can insert into the sidebar you want to have the content displayed. If you would like to pass content to an existing sidebar, there is another possibility using the [insert_sidebar_content] shortcode in any place you want. You are able to pass an id and/or a class to that content, to be able to style it with css as you like. This happens by simply adding: [insert_sidebar_content id="yourID" class="yourClass"] to the shortcode. You can of course use just one or none of them. If you do not specify any custom class or id, there will be a standard class and id called "insert_scfs" applied to the content, wrapped in a div. | ||||||||
Shortcode in Comment | 1.1.1 | 100 | 2 | 588 |
| |||
Enables blog owners to allow some shortcodes to be used in comments. You can choose what to allow. This plugin enables blog owners to allow some shortcodes to be used in comments. You can choose what to allow (i.e. Whitelist some shortcodes). It only affects shortcodes in comments, but not in pages, posts, etc. All shortcodes are default to be disabled. Plugin Homepage Settings Visit 'Settings > Shortcode in Comment' to set what shortcodes are enabled in comments. Type your shortcode(s) to be enabled in the text box (comma seperated for more than one) Click 'Save Changes' to submit. | ||||||||
LCT Temporary wpautop Disable Shortcode | 4.2.2 | 100 | 3 | 1204 |
| |||
Use a simple shortcode to bypass the sometimes damaging effect of the wpautop function. Use a simple shortcode to bypass the sometimes damaging effect of the wpautop function. Also Available in lct-useful-shortcodes-functions | ||||||||
Outerbridge Nested Shortcodes | 1.3 | 92 | 8 | 6316 |
| |||
A small plugin which allows you to use nest shortcodes (i.e. a shortcode within an enclosing shortcode) by implementing a simple do_shortcode filter A small plugin which allows you to use nested shortcodes (i.e. a shortcode within an enclosing shortcode) by implementing a simple "do_shortcode" filter as per the WordPress Codex to content and widgets - see http://codex.wordpress.org/Shortcode_API#Nested_Shortcodes and http://codex.wordpress.org/Function_Reference/do_shortcode | ||||||||
Shortcodes in Menus | 3.1 | 100 | 28 | 28280 |
| |||
Allows you to add shortcodes in WordPress Navigation Menus. Allows you to add shortcodes in WordPress Navigation Menus so that you can generate links dynamically. Also allows you to add full fledged html sections to navigation menus. Note This new version adds a Shortcode box on the Nav Menus screen. The earlier functionality using the Links box will be deprecated over the next few versions. Please switch to this new box, asap. Usage See the screenshots. Also, see a great tutorial by Aurovrata Venet Special Thanks To Aurovrata Venet for this great tutorial. Lee Willis for finding out and helping in resolving this bug. | ||||||||
Hide Unwanted Shortcodes | 1.1 | 100 | 2 | 2985 |
| |||
A plugin to prevent unwanted shortcodes from showing on blog. Have you ever switch theme or remove plugin and found that there is a lot of unwanted shortcodes left on blog, and they are showing up as [shortcode id="1234"] ? In order to remove them, you will need risky database queries which is not what you want or what you can handle properly. Now you can use this plugin to prevent them from showing up on Blog. This plugin does not delete the shortcodes from your Database or Post Editor, instead it prevent them from showing up on Blog (Public View), by returning nothing to content. You can easily add and save the unwanted shortcode tag name into the plugin setting page, and the plugin will do the rest. There is no need to write any functions or database queries, the plugin will hide them base on shortcode tag saved. | ||||||||
Shortcode Reference | 1.0.0 | 72 | 5 | 7796 |
| |||
This plugin will provide a list and details about available shortcodes in your current installment. All when you need it most - when editing content. One of the fancy things within Wordpress-plugins, is the availability of shortcodes. These codes will provide access to plugin-specific things, like displaying a gallery, or a Google-Map. The downside about this, is that there's no generic overview of all available shortcodes within your environment. This plugin will provide a list of all available shortcodes, right where the action is. When you're editing your content. And it won't skip the details: it'll show you what its origin is. Most of all, if it's available in the sourcecode, the documentation will be shown. The plugin is largely based on PHP5's Reflection functionality, and therefore only available from PHP version 5.0.0. | ||||||||
Shortcake (Shortcode UI) | 0.7.0 | 94 | 13 | 50495 |
| |||
Shortcake makes using WordPress shortcodes a piece of cake. Used alongside add_shortcode, Shortcake supplies a user-friendly interface for adding a shortcode to a post, and viewing and editing it from within the content editor. Once you've installed the plugin, you'll need to register UI for your shortcodes. For inspiration, check out examples of Shortcake in the wild. To report bugs or feature requests, please use Github issues. | ||||||||
Tools SubCategory (8 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
sxss Shortcode Creator | 0.1.1 | 100 | 3 | 488 |
| |||
Creating your own shortcodes was never so easy! With the sxss Shortcode Creator you can easily create custom shortcodes for important content, disclaimers, or ads to your WordPress blog. Just save your content in the well known wordpress editor and copy & paste the newly created shortcode! To add your shortcodes easily to your posts and pages, there is a listing of your shortcodes under the WordPress editor. Just click on the shortcode you want to insert and it will be pasted to the editor. Languages: English, German (later). More informations on the official plugin page: http://sxss.nw.am | ||||||||
Shortcode Locator | 1.1.1 | 100 | 2 | 433 |
| |||
Quickly locate what and where shortcodes are being used. Looking to move away from a theme that utilizes a lot of shortcodes? Deactivating a plugin and want to make sure none of your pages break in the process? Shortcode Locator allows you to view where shortcodes are being used throughout your site. You can filter results by a specific shortcode or post type. Want to view shortcodes in use while managing your posts? Enable the Shortcodes Located display column feature on the Shortcode Locator settings page. | ||||||||
Unused Shortcodes | 1.0.2 | 100 | 3 | 882 |
| |||
A plugin to check to see if a shortcode is in use. This plugin lets you enter a shortcode tag so that you can check to see if the shortcode is in use in a page or post on your site, and will display a list of pages or posts where the shortcode is in use. Often times WordPress users will install a plugin to display some feature on their site. Usually these plugins will come with a [shortcode] to make displaying the content a little easier. Sometimes the plugin and shortcode works fine, but after a while you may find another plugin that works better, or simply decide that you don't want the feature any more. If you were to deactivate the original plugin without removing its shortcodes from your site's pages or posts, you will end up with a lot of shortcode tags left over, which do nothing except for look funny on your site. Figuring out which pages or posts have these shortcodes can be very time consuming. With this plugin, you simply enter a shortcode tag and it will return a list of every page or post where that particular shortcode tag is being used. You can quickly jump to the edit page for those pages or posts to remove or edit the shortcode if you need to. If you can't remember all the shortcodes you want to check, try the Edit Screen Shortcode Lister plugin (http://wordpress.org/plugins/shortcode-lister/) which will list out the shortcodes you have available to use on your site in the page or post edit screen. | ||||||||
Shortcode-Finder | 0.1 | 70 | 2 | 636 |
| |||
This plugin let's you see every shortcode available to your WordPress site. Shortcode Finder is a WordPress plugin that allows you to find which shortcodes have been installed in your WordPress site. In addition to native WordPress shortcodes, users can add shortcodes with plugins or themes that are installed and activated on their WordPress sites. This plugin gives you a lookup table that lists out all shortcodes in your system, both on the admin side and user side of WordPress depending on which hook the author added the shortcode. In addition to the lookup table, users are given a button to add any shortcode when creating/editing a post/page. Plugin Requires PHP5 | ||||||||
Shortcodes In Use | 1.2.1 | 100 | 3 | 1728 |
| |||
List all the shortcodes that you have used within your content or custom fields, and find out exactly where they have been used. Can't recall where, or if, you've used a certain shortcode? Want to remove a plugin and unsure if it provides shortcodes or whether you're using them? Don't know what shortcodes come with WordPress? Found one unrecognised shortcode but unsure where there might be others? Need to swap out a theme and don't know if it has shortcodes that you've used? Want to use a shortcode for a specific bit of information but can't remember exactly what it's called? Need to a change a parameter for all occurences of a shortcode? This is a simple administration tool that lists occurences of shortcodes within post content and/or custom fields, and/or widget settings. You can select, or search for, specific shortcodes, and it can filter down to a provider, location, or post type. It is intended to help administrators/editors locate where shortcodes have been used, so that they can be updated, renamed, deleted, or whatever. Features include : Search string(s) to match against shortcode tags - space or comma delimited for multple search strings Filter by the type of provider of shortcode - whether it is provided by a plugin, your theme, internal to WordPress (eg. [gallery]), or unknown (an inactive/deleted plugin, maybe?) Filter by a specific provider - a named plugin, for example Filter by any number of specific, recognised shortcodes Filter by where to look for the shortcode - post content, post meta data (custom fields), or widgets Filter by the type of post that contains the shortcode Results include (where relevant and available) : either the widget name and its sidebar, or a linked post title and the type of post; the shortcode and its parameters; the shortcode provider (WordPress, plugin, theme, or unknown), and where it was found Has its own shortcode, for use when a plugin or theme only declares a shortcode when not in the admin backend What it does not do : It does not provide any insight as to what any shortcode does, or how to use/configure it. It does not look at custom tables, theme options, transients. If you like this plugin (or if you don't?), please consider taking a moment or two to give it a Review : it helps others, and gives me valuable feedback. | ||||||||
Remove Orphan Shortcodes | 1.1 | 100 | 3 | 1809 |
| |||
Quickly remove unused (orphan) shortcode tags from your content. This is a simple plugin which automatically hides inactive (orphan) shortcode tags you have used for previous themes and/or plugins. It uses the_content filter to search for shortcode tags which are not active and simply removes them from your post/page content (note the shortode tags won't be deleted form your content, they will just be removed temporarily on your website frontend). It is a great solution if you want to avoid manual removal of old shortcode tags from your entire content. Remove Orphan Shortcodes plugin is created by MeksHQ | ||||||||
WPX Shortcodes Manager Light | 2.2.2 | 60 | 2 | 1222 |
| |||
Shortcodes Manager provides you with the cleanest and simplest tool to manage WordPress shortcodes you've ever seen. Shortcodes Manager provides you with the cleanest and simplest tool to manage WordPress shortcodes you've ever seen. Features Write your shortcode with the shortcode editor Display all registered shortcodes Disable/enable all registered shortcodes Enable a Shortcode Analysis, checking your post content while editing | ||||||||
Shortcode Maker | 4.0.1 | 94 | 6 | 3825 |
| |||
The plugin to help you make shortcode by yourself or chose builtin shortcodes to use them easily Our Official Support Forum To get faster support , You can contact through our official forum site. Official support forum : http://supports.cybercraftit.com/supports/support/shortcode-maker/ NEW FEATURE : PACKAGED SHORTCODES INCLUDED ! With packaged shortcodes, you can add different widgets/UI elementns to your site now The elements are Tabs Accordion Table Panel Alert Heading Quote The plugin to help you make shortcode by yourself and get them listed in the wp tinymce editor to use them easily. Features You can use built in shortcodes to create widgets like tabs, alert, accordion, table etc You can add shortcode of your own Add attributes as many as you want with the ability to define default value you can write PHP code in definition. To use code, use [php_code][/php_code] in your shortcode definition and place code inside it. | ||||||||
Packs SubCategory (15 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
WPVKP Ultimate Shortcodes | 1.1 | 100 | 2 | 903 |
| |||
WPVKP ultimate shortcodes plugin helps you to add modern and responsive call to action buttons, Google maps, social media share buttons, alert boxes a WPVKP Ultimate Shortcodes is easy to use wordpress shortcode plugin which works with almost every wordpress theme and with Theme Frameworks like Genesis or Thesis child themes. I have developed this plugin so that I could recommend a powerful and regularly updated plugin to my wordpress magazine theme users. Unique Features Modern & attractive buttons. Mobile responsive elements like columns, alert-boxes, Google maps, etc. Integrated social media icons. Support for Font Awesome. Support for fontello. Retina ready icons which makes your website look professional on every device. Three different types of download buttons. Unlimited color variations available. Cool CSS3 transition effects. Support for tabs. Support for accordions. One click add youtube videos. Integrated toggles with option to choose icons from fontawesome. More Information On This Plugin Please rate this plugin if you liked it. Please, Please, Please.. its small contribution from your side. | ||||||||
Shortcodes Ultimate | 4.9.9 | 98 | 3783 | 2701952 |
| |||
Shortcodes Ultimate is WordPress plugin that provides mega pack of shortcodes. This is really premium plugin that you can get absolutely for free! With this plugin you can easily create tabs, buttons... , boxes, different sliders, responsive videos and much, much more. Turn your free theme to premium in just a few clicks. Using Shortcodes Ultimate you can quickly and easily retrieve premium themes features and display it on your site. See screenshots for more information. Premium Add-ons Extra Shortcodes - 15+ additional shortcodes Additional Skins - 60+ additional skins for plugin shortcodes Shortcode Creator - allows you to create your own custom shortcodes Add-ons Bundle - All-in-one, $15 OFF! Features 50+ amazing shortcodes Shortcode Generator Modern design Fully responsive CSS3-powered Custom CSS editor Custom widget Multilingual RTL support Works with any theme Easily extendable Never stop learning 40+ Reasons Shortcodes Ultimate Is A Must Have Plugin Show Me the Shortcode + Video Shortcodes Ultimate: Ultimatize your written content Shortcodes Ultimate Plugin Review Add 4s0+ New Layout Features To WordPress with Shortcodes Ultimate Shortcodes Ultimate – Free Shortcode Plugin For WordPress (Video) Supercharge WordPress With A Mega Pack Of Shortcodes! (Video) Shortcodes Ultimate Tutorial (Video) How to use special widget (Video) How to create image gallery (RU) Обзор плагина Shortcodes Ultimate (RU) Shortcodes Ultimate — плагин неограниченных возможностей (RU) Шорткоды Wordpress Requirements WordPress 3.5+ PHP 5.1+ Got a bug or suggestion? Support forum Documentation Contact author (please DO NOT use this form for support requests) Bundled translations Ru, Vladimir Anokhin Fr, Nicolas Leclerc Gr, Kleanthis Manolopoulos Ja, Stranger Sk, Patrik Žec (PATWIST) Cz, Punc00 Se, Javier Marcilla Have a translation? Contact me Thanks Dmitry Semenov - Magnific Popup jQuery plugin Craig Thompson - qTip jQuery plugin Vladimir Kharlampidi - Swiper jQuery plugin Dave Gandy - Font Awesome James Smith - Simple Slider jQuery plugin | ||||||||
WP Foundation Shortcodes | 0.8.5 | 74 | 3 | 2555 |
| |||
WP Foundation Shortcodes Plugin makes your ZURB Foundation website to the most powerful framework by styling your content with shortcodes WP Foundation Shortcodes Plugin makes your ZURB Foundation website to the most powerful framework by styling your content with shortcodes. WP Foundation Shortcodes Demo For best results use with Zurb Foundation 5 responsive theme You can use '{}' in every shortcode item, e.g. '[row {data-equalizer}]', to get '<div class="row" data-equalizer>'. Features: Shortcodes are easy to use (first of all, make sure that the editing mode is set to Visual) No need to paste shortcode in editor Add button control to TinyMCE editor Select the shortcode you want to insert Popup with choices of parameters No additional JS or CSS files All available shortcodes are conditionally divided into these groups: Posts: posts grid, posts list, posts lightbox, posts cycle Buttons: button, button groups, radio button group, split buttons, dropdown, button option group Elements: label, blockquotes, icon, address, inline list, keystroke, horisontal rule, clear Callouts & Prompts: alert box, panel, tooltip, banner, comments, service box, categories, tags Content: pricing table, progressbar, table, accordion, tabs, equalizer Grid: grid, block grid Widgets: google map, product card, product card with hover effects, social login buttons, pricing table recommended, pricing table animated Media: orbit slider, silck slider, thumbnail, cliaring lightbox, video Forms: switchers, range slider The plugin contains a lot of shortcodes and widgets, we worked hard to make it easy for you. | ||||||||
Simnor Shortcodes | 1.8 | 100 | 6 | 10747 |
| |||
Simnor Shortcodes is a user friendly shortcodes plugin, it adds a button to your editor to allow you to add basic shortcodes like buttons and columns to your site. You can add buttons, columns, video... s, accordions, tabs and maps to your site by simply filling out a few options and clicking the Insert Shortcode button. Please bear in mind that this will not work with every theme as some theme developers will overwrite styling, as such I cannot provide support if there are formatting issues with your site. | ||||||||
WPi Designer Button | 2.5.9 | 100 | 19 | 45769 |
| |||
CSS3 Button Creator/Generator, Create Buttons, Call-To-Action (CTA), Share Buttons & Twin Buttons anywhere in wordpress using button shortcode [wp WPi Designer Button Shortcode plugin is good CSS3 Button Generator, Anyone can create Buttons, Call-To-Action (CTA) & Share Buttons in WordPress. It has small designer studio where you can style buttons & other elements using simple user interface. This plugin conists of below features. Creating beautiful buttons. Creating twin buttons. Creating call-to-action buttons. Creating Share buttons. Creating reusable button styles for buttons, CTA buttons & Share buttons. Creating buttons with popup window where you can insert shortcodes. Creating buttons with Dropdown Menu. Creating Single Enquiry button for multiple products or Services using Contact Form 7 plugin. Please support this plugin by leaving a review! here. A huge thank you from WooPrali in advance! Buttons Demo. Twin Buttons Demo. CTA Buttons Demo . Share Buttons Demo . Enquiry button. WPi Designer Button Help . Support. Designer Button Studio Contains below features:: Icons Collection. Styles collection which are professionally designed. Color Themes collection. Google Fonts collection. Given more importance to UI & UX in this plugin. Dynamic Help section for Plugin's guide and getting any support. Extra features:: Button Creator/Generator/Maker Shortcode generator CSS3 Buttons, Share Buttons, CTA Buttons . Creating Buttons:: You can apply styles to button from Styles collection or your own created styles. You can add any Icon from the Icons collection. You can add link url to the button and also set new tab or new window for link. Once you create the button, you can use created button unlimited times and its easy to use anywhere in the wordpress using simple shortcode. Shortcode looks like [wpi_designer_button id=256] You can use the shortcode even without creating the button or style. User can also generate shortcode directly inside wordpress visual editor( TinyMCE). Please read plugin's documentation before creating any style or button. Its a best practice to read documentation first. Note:: In next version we will add more icons in icons collection.. Creating Styles:: You can create unlimited number of reusable styles for buttons. You can change the button's font from the fonts collection. You can change the button's Color. You can change the button's font-weight. You can change the space around the text inside button. You can add the shadow to the text inside button. You can add the shadow to the button. You can change the button shape like rectangle, little rounded rectangle, full rounded rectangle or circular(without button text). You can add the glow to the button with any color and from small size to big size glow. You can set the button icon from the Icons collection. You can set the button border with any color, any thickness and style like normal, dotted, double etc. You can set the texture from the texture collection. If you dont know the color codes then you can use colors from our color pallete with so many predefined colors. this plugin also consists of beauticul color themes collection for buttons. In next version of this plugin we will add more items in all collections like fonts, icons, preset styles etc. Creating Call-To-Action (CTA) Buttons:: Every call-to-action button contains Heading, Sub-heading, Button & Footer Text. You can create beautiful & awesome CTA buttons with small effort. You can select from professionally designed CTA buttons Styles from Styles collection. You can change the heading text font. You can change the heading text size. You can change the heading text color. You can change the heading text border. You can change the heading text border color. You can change the heading text background color. You can change the heading text top & bottom margin. You can change the heading text padding. Above setting can be done on sub heading also with limited settings. We will update and add more styles to styles collection regularly. You can check latest Styles and its settings in plugin's website. In next version we will add Export & Import Styles settings. which is good feature to extend this plugin's power. You can also add multiple headings with ticker animation. Creating Share Buttons:: You can change the gap between Share buttons. You can change the space around all Share buttons. You can set the position for Share buttons like above/below the content. Creating Twin Buttons:: Provide user a option to choose or click any one of a Twin Buttons. Note:: WE ARE DOING OUR BEST TO MAKE THIS PLUGIN PERFECT. If you face any problem in using this plugin or you need some more features or any support please dont hesitate to contact us. You can contact us from here. Buttons Demo | CTA Buttons Demo | Share Buttons Demo | Twin Buttons Demo | WPi Designer Button Help | Support Watch how to videos of this plugin How to change Colors How to change Fonts Coming soon * Video Backgrounds in Call To Action * (Got more ideas? Tell me!) If you have suggestions for a new add-on, feel free to contact us. Want regular updates? follow my sites on Twitter! https://twitter.com/DesignerButton | ||||||||
Olevmedia Shortcodes | 1.1.9 | 96 | 25 | 65252 |
| |||
Olevmedia Shortcodes plugin adds a button to editor, which provides you plenty of handy shortcodes (buttons, icons, lists, infoboxes and more) Olevmedia Shortcodes plugin adds a button to editor, which provides you plenty of handy shortcodes: Accordion Toogle Tabs, (it’s responsive) Blockquote Box Buttons (you can choose icons, colors, specify tooltips and much more) Columns (up to 1/6, also it’s responsive) Counter Divider Dropcaps Icons Infoboxes (small, big, with buttons) Lists (custom bullet icons) Logos (line up images accurately) Map (insert responsive Google Map) Marker Recent Posts Table (styling) Pricing tables (it’s responsive) Video (insert responsive video from YouTube, Vimeo, etc.) Few more shortcodes Features Plugin provides handy shortcodes generator interface, so you don’t need to remember all codes, just click the button at the editor toolbar and get the shortcode! Shortcodes layout is responsive, so they are nicely displayed on mobile devices. | ||||||||
Metaphor Shortcodes | 2.2.8 | 94 | 7 | 22256 |
| |||
Custom pack of shortcodes including a shortcode generator. Custom pack of shortcodes including a shortcode generator. Grid Shortcode Post Slider Shortcode Post Block Shortcode Pricing Table Shortcode Slide Graph Shortcode Tabs Shortcode Toggle Shortcode Icon Shortcode | ||||||||
IG Shortcodes | 3.1 | 100 | 2 | 6646 |
| |||
A complete set of WordPress shortcodes to add beautiful and useful elements to your theme. IG Shortcodes is a complete set of WordPress shortcodes to add beautiful and useful elements to your theme. With IG Shortcodes you can turn your free theme to premium in just a few clicks. Shortcodes inluded: Accordion Buttons Badges Notice box Columns Clearfix Divider Google maps Tabs Toggle IG Shortcodes Premium For more shortcodes you can download the premium version Extra shortcodes in premium version: Login module Modal Popup Private content Tooltip Available languages Italian Serbo-Croatian Spanish Have a translation? Contact us and submit your translation! | ||||||||
Twitter's Bootstrap Shortcodes Ultimate Add-on | 1.0.4 | 100 | 3 | 12215 |
| |||
Add short codes for Twitter's Bootstrap 3 CSS and components to your site add-on for Shortcodes Ultimate. Add short codes for Twitter’s Bootstrap 3 CSS and components to your site add-on for Shortcodes Ultimate. Shortcodes Ultimate is WordPress plugin that provides mega pack of shortcodes. With this plugin you can easily create tabs, buttons, boxes, different sliders, responsive videos and much, much more. Turn your free theme to premium in just a few clicks. Bootstrap is a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. This add-on give you the full power of Bootstrap without editing any code. Contribute! If you have suggestions for a new feature or improvement, feel free to contact us on @JamedoWebsites. Alternatively, you can fork the plugin from Github. Requirements WordPress tested with >= 3.6 Shortcodes Ultimate tested with >= 4.3.2 A Bootstrap ready WordPress Theme, try JBST Support We are always happy to help you. If you have any question regarding this code. Send us a message or contact us on twitter @JamedoWebsites. | ||||||||
Simple Shortcodes | 1.0.20 | 82 | 12 | 55131 |
| |||
Simple Shortcodes is a plugin that fits nicely in your editor toolbar for simple insertion of various commonly used shortcodes. This plugin works with any theme, but was made specifically to work with themes from simplethemes.com. Simple Shortcodes adds a button to your editor toolbar for quick and easy insertion of the most commonly used shortcodes for columns, buttons, toggles, tabs, callout boxes, notifications, and more. | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
WordPress Shortcodes | 1.6.36 | 78 | 42 | 256926 |
| |||
An amazing set of great shortcodes: SEO-ready tabs, accordions, buttons, links to any content, author cards, lists, layouts, conditionals and more! WordPress Shortcodes is a free WordPress plugin that brings an amazing set of beautiful and useful elements to your site. The plugin comes bundled with the full set of elements, all absolutely free of charge. Learn how you can use WordPress Shortcodes to easily create import / export safe links to images and any other content! Eager to get a functioning example of how the shortcodes elements look and feel? Look at some basic example shortcodes on the Stripefolio demo site. Note that the demo site only presents a limited subset, the best way to test the full set is to install the plugin and try it yourself! If you want to take it to the next level and hugely improve the appearance of the elements and make them look more professional, you might want to consider purchasing the SlickPanel skin. There are many different kinds of elements that cover all your requirements. These include functionality for User Interface creation, Layout management, Lists, Buttons, Message boxes, smart links to easily link contents on your site without using full URLs but with IDs or names and a bunch of other useful tools such as the ability of adding hidden content in posts/pages, useful for making notes or comments. Just use the intuitive shortcode editor to create a message box, error box or warning message on your site. Or create multi-column layouts, a fancy button, a highly stylized link card, a list of items with icons (like a feature list), or combine multiple nested shortcodes to create for instance a list of links or a list of buttons and much more. The shortcode editor presents a very intuitive and easy to use interface, with many built-in presets that make inserting many commonly needed default shortcodes in your posts/pages a breeze! If you want you can also get over 30+ extra useful amazing presets for covering almost all needs. The plugin offers all common jQuery UI functionality as well like jQuery UI Accordions (called sections inside WordPress Shortcodes), JQuery UI Tabs, jQuery UI buttons and so on. The UI tabs provide many different features including full SEO compatible selection of active tab without need for JavaScript. The plugin also offers conditional shortcodes that allow to render content only based on certain conditions, such as only if the user is logged in or if the user is an administrator, an editor, author or has a custom capability or if the current post is password protected or if it has a featured image (post thumbnail). Features 26+ shortcodes and different elements! Create tabs, sections/accordions, layout, lists, links, buttons and more! Tabs are SEO friendly and work flawlessly without JavaScript! Fully WordPress compliant, using latest standards Quick and easy to use shortcodes editor with instant previews Shortcodes editor allows for easy insertion in posts/pages! The shortcode editor has full support for default presets and you can get many extra useful presets Layout shortcodes allow for tight content organization Link shortcodes make importing and exporting content across sites much more reliable Links support a simple to use but powerful template system to tweak what is displayed and how it looks The custom template system makes it extremely easy to create custom author and post cards with thumbnails Shortcodes to hide content for adding comments and notes to posts and pages Many parameters for ultimate customization All parameters are documented in detail in the shortcodes editor Conditional shortcodes to show/hide content based on specific checks or conditions Many useful lightweight icons provided built-in Easy to adjust the look of shortcodes with built-in custom CSS field Optional slick and professional skin available Example Shortcodes The following will create a series of 2 jQuery UI tabs on your site: [tabs] [tab title="Tab 1"] Tab Content 1. [/tab] [tab title="Tab 2"] Tab Content 2. [/tab] [/tabs] The following will create a series of 2 jQuery UI accordions on your site: [sections] [section title="Section 1"] <p style="margin:5px 0;padding:0;"> Section Content 1. </p> [/section] [section title="Section 2"] <p style="margin:5px 0;padding:0;"> Section Content 2. </p> [/section] [/sections] The following shortcode will create a list of links to various kinds of content on your site: [list icon=link] [item][link_post id=82 /][/item] [item][link_post id=66 /][/item] [item][link_page name="typography" /][/item] [item][link_page id=27 /][/item] [item][link_category slug="parent-category-iii" /][/item] [item][link_media id=6229 /][/item] [item][link_media title="Ice Pathway" /][/item] [/list] The following will create a multi-column layout with a table in each column: [full] [half flow="start" extend="yes"] <table border="1"> <tr><td>position 1:1</td><td>position 1:2</td></tr> <tr><td>position 2:1</td><td>position 2:2</td></tr> </table> [/half] [half flow="end" extend="yes"] <table border="1"><tr><td>position 1:1</td><td>position 1:2</td></tr> <tr><td>position 2:1</td><td>position 2:2</td></tr> </table> [/half] [/full] The following will create conditional content only displayed when the post has a specific tag of "myposttag": [condition check="post_has_tag" param_1="myposttag"]<p>Test POST has TAG</p>[/condition] The following will create content conditionally shown only when the post is a specific format of "mypostformat": [condition check="post_format_is" param_1="mypostformat"]<p>Test post format</p>[/condition] This conditional shortcode will check for the post info of "review_status" is set to "reviewed": [condition check="post_info_is" param_1="review_status" param_2="reviewed"]<p>This post has reviews</p>[/condition] Related Links: WordPress Shortcodes Official Page SlickPanel skin to make the elements look more professional Extra presets addon provides many useful additional presets List of icons usable in shortcodes like buttons and lists Stripefolio theme demo where you can see some of the shortcodes in action The free Stripefolio theme the Official page for the theme in the above demo link | ||||||||
Shortcodes by Angie Makes | 3.14 | 96 | 24 | 319433 |
| |||
A plugin that adds a useful family of shortcodes to your WordPress theme. The Shortcodes by Angie Makes plugin adds a family of easy to use shortcodes to your WordPress theme. These shortcodes work flawlessly with Angie Makes WordPress themes. Demo See A DEMO of These Shortcodes Here: http://gentry.angiemakes.com/shortcodes/ Features Here are the handy shortcodes included with this plugin: Columns 1/2 + 1/2 1/3 + 1/3 + 1/3 1/3 + 2/3 2/3 + 1/3 1/4 + 1/4 + 1/4 + 1/4 1/4 + 1/2 + 1/4 1/2 + 1/4 + 1/4 1/4 + 1/4 + 1/2 1/4 + 3/4 3/4 + 1/4 Elements Button Font Awesome Icon Heading Highlight Spacing Clear Floats Inline Code Divider Content Pricing Table Social Icon Share Buttons Testimonial Countdown Skillbar Image Box HTML Preformatted Text Posts Masonry - Box Masonry - Borderless Grid - Box Grid - Borderless Post Slider 1 Post Slider 2 Actions Accordion Accordion Section Tabs Tab Section Toggle Google Map RSVP Wrappers Center Content Full Width Professional Support We have tested this plugin to work with the latest version of WordPress, but do not offer individual troubleshooting support as this is a free plugin. If you need individual support, we're happy to assist you if you purchase our premium support by purchasing a premium, Angie Makes WordPress theme from angiemakes.com. | ||||||||
Magee Shortcodes | 1.6.0 | 74 | 11 | 256426 |
| |||
Overview Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. It is based on Bootstrap and coded with HTML5 and CSS3 language, fully responsive in desktops and mobile devices With enriched settings in options, you could easily create column, section, feature box, person, testimonial and much more.You can also customize post & page layouts using shortcode generator with one simple click, see how your inserted shortcode effects before it goes live with shortcode preview function. Still, more shortcodes coming soon. Key Features Shortcode Generator Shortcode Preview Modern design Fully responsive Developed with Bootstrap 3 Built with HTML5+CSS3 Font Awesome Icons Custom CSS Works with any theme Easily extendable Relevant Links Examples Beginner Guide Tech Support Shortcode List Accordion, Alert, Audio, Button, Column, Custom Box, Countdowns, Counter, Divider, Dropcap, Document, Dummy Text, Dummy Image, Dailymotion, Expand, Feature Box, Flip Box, Highlight, Heading, Icon, Image Frame, Image Compare, List, Label, Modal, Menu, Popover, Person, Promo Box, Piechart, Panel, Progress, Pullquote, QR Code, Quote, Slider, RSS Feed, Social, Section, Scheduled, Tooltip, Tab, Testimonial, Timeline, Targeted, Video, Vimeo, Youtube | ||||||||
Meks Flexible Shortcodes | 1.3 | 100 | 3 | 91333 |
| |||
Add some cool elements to your post/page content with flexible shortcodes. Meks Shortcodes is a plugin for those who want to add some nice elements inside their post/page content. You can quickly insert all of them via user interface shortcodes generator panel. Several smart styling options are provided for each shortcode tag. It doesn't matter if your theme is yellow, white or green, these shortcodes can fit any style and design. Shortcodes list Columns Buttons Icons Social Icons Highlights Dropcaps Separators Progress Bars Pull Quotes Tabs Toggles Accordions This plugin is created by Meks Live preview? You can see Meks Flexible Shortcodes live examples on our Throne theme demo website Usage examples and description Columns - You can use this shortcode to split your content into columns and point out some important parts of your page content. They can be used in conjunction with any other shortcodes. You can write any content or insert any shortcode between column tags. [mks_col] [mks_one_half] Left content goes here [/mks_one_half] [mks_one_half] Right content goes here [/mks_one_half] [/mks_col] Separators - These are simple horizontal line elements which you may use to divide some areas within your page content. Several styling options are provided. [mks_separator style="solid" height="2"] Buttons - Basically, these are links with button style. You can target any URL here. [mks_button size="large" title="More about us" style="squared" url="http://mekshq.com" target="_self" bg_color="#000000" txt_color="#FFFFFF" icon="fa-road"] Dropcaps - Mostly used to make big first letter of specific sentence. [mks_dropcap style="letter" size="52" bg_color="#ffffff" txt_color="#000000"]A[/mks_dropcap] smart theme SeaShell is. Highlights - You can add colored background to some part of the text with this shortcode. I can't wait to see how [mks_highlight color="#dd3333"]awesome[/mks_highlight] SeaShell theme is. Pull Quotes - Stylish boxes usually used to point out some important notes. [mks_pullquote align="left" width="300" size="24" bg_color="#000000" txt_color="#ffffff"]He who dares wins![/mks_pullquote] Icons - Add some icons inside page/post content with this shortcode to make the content more interesting. [mks_icon icon="fa-star-o" color="#000000"] Five stars for this theme! Social Icons - Add your social icons inside page/post content with this shortcode. Follow me: [mks_social icon="facebook" size="48" style="square" url="http://facebook.com/mekshq" target="_blank"] Progress Bars - Usually used to graphically display some of your skills or some analysis. [mks_progressbar name="WordPress" level="Pro" value="80" height="20" color="#000000" style="squared"] Tabs - With this shortcode you can wrap some part of your content to be displayed as tabs. [mks_tabs nav="horizontal"] [mks_tab_item title="Title 1"] Example content 1 [/mks_tab_item] [mks_tab_item title="Title 2"] Example content 2 [/mks_tab_item] [mks_tab_item title="Title 3"] Example content 3 [/mks_tab_item] [/mks_tabs] Toggles - Use toggles shortcode if you want to display some content in show/hide manner. [mks_toggle title="Example Title" state="open"]Toggle content goes here...[/mks_toggle] Accordions - Similar to toggle, it is just like a group of connected toggles. [mks_accordion] [mks_accordion_item title="Title 1"] Example content 1 [/mks_accordion_item] [mks_accordion_item title="Title 2"] Example content 2 [/mks_accordion_item] [mks_accordion_item title="Title 3"] Example content 3 [/mks_accordion_item] [/mks_accordion] | ||||||||
WP Shortcode by MyThemeShop | 1.4.2 | 84 | 5 | 363128 |
| |||
WP Shortcode is a premium WP plugin for free, that provides easy to use over 24 shortcodes. You can easily add buttons, alerts, videos and more. Add sexy-buttons, spoiler warnings, column layouts and much more to WordPress. WP Shortcode makes it happen with a click of a button. Until now, this premium plugin was available to premium members of MyThemeShop, but now everyone can use this premium plugin. Why use WP Shortcode plugin? Tired of using a theme with built-in shortcodes, switching themes and then losing all your awesome styles? WP Shortcode offers over 24 useful shortcodes, so you'll never lose anything when changing your theme. Now you can add buttons, highlights, boxes, toggles, tabs, pricing tables, among other awesomeness, and take them with you no matter what theme you decide to use. We at MyThemeShop realise there are already some free shortcode plugins out, but they either only include a very few amount of shortcodes, they are way too complex, not well-coded, not styled to our liking or they weren’t free. We wanted to create something that was 100% GPL so you can use it and abuse it on all of your websites and client projects – and of course that’s very easy to use and minimally styled, so it can fit most sites right out of the box or be easily customized. To see a full list of options available with this powerful plugin, try this page: http://demo.mythemeshop.com/spike/shortcodes-examples/ Shortcodes Included Buttons, Videos, Alerts, Google Maps, Toggle, Tabs, dividers, Columns And much more! Easily add nice looking elements to your WordPress website without any knowledge of coding! Support All support for this plugin is provided through our forums. If you have not registered yet, you can do so here for FREE https://mythemeshop.com/#signup If after checking our Free WordPress video tutorials here: https://mythemeshop.com/wordpress-101/ & https://community.mythemeshop.com/tutorials/category/2-free-video-tutorials/ you are still stuck, please feel free to open a new thread, and a member of our support team will be happy to help. Support link: https://community.mythemeshop.com/forum/11-free-plugin-support/ | ||||||||
Layout SubCategory (7 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Responsive Grid Shortcode | 1.2 | 74 | 3 | 1719 |
| |||
Crazy simple and light weight plugin for using shortcode to create a responsive grid. The plugin utilizes the 12 column responsive grid CSS from http://www.responsivegridsystem.com/ with the default 1.6% margin and 480PX media query. Major features in Responsive Grid Shortcode include: Responsive grids up to 12 columns Add classes to each column or section for precise control over styles. Simple to use shortcode. All you have to know is how to count to 12! The shortcode are extremely simply to follow as they follow as you can see below. [grid_section] [grid_col size=4] First Col Content [/grid_col] [grid_col size=4] Second Col Content [/grid_col] [grid_col size=4] Third Col Content [/grid_col] [/grid_section] NOTE: The one thing to keep in mind is that all the column sizes inside a section MUST equal 12. Some things that you should note. Responsive Grid Shortcode default to size 6 if no size attribute is provided. An example of this is below: [grid_section] [grid_col] Left Side [/grid_col] [grid_col] Right Side [/grid_col] [/grid_section] FYI: The column size can be any number. The each size value represents {size} of 12. OPTIONS We kept the options extremely simple to make sure the system is light weight. [grid_section class=custom-class] class - You can provide a custom class to the section if you choose. [grid_col size=4 class=custom-class] class (optional) - You can provide a custom class to the column if you choose. size (optional) - number out of 12. (2 = 2 out 12 | 3 = 3 out of 12) | ||||||||
Tabs Shortcodes | 1.2 | 80 | 9 | 7146 |
| |||
Adds a few shortcodes to allow for tabbed content. Adds a few shortcodes to allow for tabbed content. IMPORTANT: If you are not comfortable using WordPress shortcodes, this plugin may not be for you. Additionally, you must be able to edit your themes main stylesheet in order to add the necessary CSS. Features Adds two shortcodes for adding a tabbed interface to your site Select a specific tab by URL No default CSS added (you will need to add your own) Only adds JavaScript on pages that use the shortcodes (and doesn't require jQuery) The Shortcodes The two shortcodes that are added are: [tabs] and [tab title=""] Basic Usage Example [tabs] [tab title="First Tab"]Content for tab one goes here.[/tab] [tab title="Second Tab"]Content for tab two goes here.[/tab] [tab title="Third Tab"]Content for tab three goes here.[/tab] [/tabs] This will output the following HTML: <ul class="tabs"> <li><a href="#tab-1" class="active">First Tab</a></li> <li><a href="#tab-2">Second Tab</a></li> <li><a href="#tab-3">Third Tab</a></li> </ul> <section id="tab-1" class="tab active">Content for tab one goes here.</section> <section id="tab-2" class="tab">Content for tab two goes here.</section> <section id="tab-3" class="tab">Content for tab three goes here.</section> Settings There are no settings for the plugin. The only additional setup you will need to do is add some css to style the tabs however you'd like. Adding the CSS is very important as the tabs will not display as tabs until you do so. Selecting a Tab by Default You can select a tab by default by added the tab number as an option in the opening [tabs] shortcode like this: [tabs open="2"] This will open the second tab when the page loads. Selecting a Tab by URL You can select a tab by default using a hash in the URL. Simply add #tab-1 after the trailing / of the URL to select tab number 1. Replace the number with the tab you'd like to select. This example URL will select tab number 3: http://domain.com/your-page/#tab-3 | ||||||||
Mesh – Page Builder | 1.2.5.6 | 98 | 10 | 10909 |
| |||
A page builder, simplified. Get the most flexibility to display content by adding multiple content sections within Pages, Posts, or Custom Post Types. Mesh is the easiest way to add additional content to your Page, Post, or Custom Post Type in a responsive grid system. Adding a Mesh Section creates a new row on your page below the default WordPress content. Each Section can be divided into 1 to 4 Columns, providing Visual/Text editors for each Column. Give your Sections and Columns titles, drag to rearrange, add background images to Columns or an entire Section, then Publish your Section or save it as a Draft until your content is just right. Efficient and unobtrusive, Mesh was designed to simply extend the functionality of the normal page editor within WordPress to provide the flexibility of building pages in a responsive grid without adding code or editing page templates. Responsive Out-of-the-Box Mesh is currently built off of Foundation‘s grid but will soon have support for Bootstrap and custom frameworks as well. All grid styles can also be easily disabled. Familiar and Easy to Use Our goal is to stay as close to the core usability of WordPress as possible. Mesh Content editing is recognizable and simple to use. As you create new Sections for your content you will be presented with an interface similar to that utilized on default Pages and Posts. Extensible and Plays Well with Others We have added a few hooks to extend the functionality of Mesh and will continue to expand these over time. For a full list of currently available hooks and filters check out the FAQ. Features Add unlimited Content Sections on a page by page basis Easy to Choose and manage Column layout for each Section as you build your pages Use the Visual or Text editor to create your content in each Column Add media, shortcodes into any Column just like “The Editor” All content is searchable in SEO and within your website. Work with Jetpack’s Related Posts feature!) Drag to adjust Column widths Drag and drop reorder Columns within a Section (horizontally) and Sections within your Page or Post (vertically) Add an offset before a Column (not available in 4 column layouts) Add custom CSS classes to an entire Section or a specific Column (This works great in tandem with Jetpack’s Custom CSS feature!) Click to apply built-in styling options like Collapse Padding, Push/Pull, and Equalize Set a background image for a Section or a Column Save Sections in Draft status or Publish Utilizes page editing functionality you are already familiar with in the WordPress admin Visual cues in the editors help represent how your content will be displayed on the frontend (ie: column widths, gutters, offsets) Enable Mesh Sections on Pages, Posts, and/or any custom post types within the settings (Pages enabled by default) Mesh section content will be analyized by Yoast Page scoring Works with popular page/post duplication plugins Our clients love Mesh, so we thought everyone else might too! We first developed Mesh as a tool for our clients to use so they could better self manage their content; in-turn saving them money on support hours. They love it so much we have continued to improve upon it, add new features, and are now proud to present it to the WordPress Community at large! Let us know how you like Mesh and what we can do to make it even better! Leave a review here or start a conversation on GitHub. | ||||||||
Squelch Tabs and Accordions Shortcodes | 0.3.9 | 94 | 18 | 42380 |
| |||
Shortcodes for creating accordions, horizontal accordions and tabs. Squelch Tabs and Accordions Shortcodes provides shortcodes for adding stylish Web 2.0 style accordions and tabs to your WordPress website: Horizontal accordions, vertical accordions and tabs. After you have installed the plugin you can use simple shortcodes on any page or post to add tabs or accordions. Tabs and accordions can help to improve your website in a number of ways: Add interactivity: With collapsible accordions and tabs, you can make better use of the available space on the page. Add style: Tabs and accordions can help make your site look more professional and better polished than other sites. Save space: Tabs and accordions can save a lot of space on the page making your website look less cluttered. Separating content: Showing content only when required while the rest remains invisible dividing the content into parts. If you want to add more interactivity with Tabs, Vertical and Horizontal Accordions on your WordPress website, Squelch Tabs and Accordions Shortcodes is a good option. A note on responsivensss: We receive a lot of questions as to whether this plugin is responsive. All widgets in this plugin are responsive excluding the horizontal accordion widget: It uses a different library to the other widgets, and that library is unfortunately not responsive. We may add a responsive horizontal slider in the future, but it is not available yet. | ||||||||
Tabs Shortcode | 2.0.2 | 88 | 11 | 30117 |
| |||
Lets you add tabs to your post and pages using a shortcode. To add tabs to you post or pages just add this shortcode: [tabs] [tab title="title1"] tab content tab content [/tab] [tab title="title2"] another content tab [/tab] [/tabs] Here are the some attributes that the shortcode also excepts // default attributes [tabs collapsible=true selected='0' event='click' position='top' ] [tab title="title1"] tab content [/tab] [tab title="title2"] another content tab [/tab] [/tabs] collapsible = true or false - weather the tabs should be allowed to be collapsed - this doesn't work with twitter bootstrap selected = integer for example - what tab should be selected. 0 means the first tab. 1 means the second tab etc. event = 'click' or 'mouseover' - does do you user need to click on the tab or just mouse over to get to the content. Tip: Don't use mouseover if you are concerned with mobile. position = 'top' , 'bottom' , 'left', 'right' on what side do you want the tabs to appear. See screenshots for an example. vertical_tabs = true or false - depreciated is the same as position = left | ||||||||
eVision Responsive Column Layout Shortcodes | 2.3 | 88 | 26 | 75942 |
| |||
Donate link: http://evisionthemes.com/donate-now/ This WordPress plugin gives you an easy way to add columns to any section - page , post or other This Plugin easily adds responsive ( BootStrap ) columns layout into posts and pages by wrapping content with a shortcode. Use the Plugin’s button on the editor to add columns or simply copy and paste the beneath codes. Use the shortcode in the text widget or posts/pages like this: 2 column layout: – [bscolumns class=”one_half”]Your Content Goes here[/bscolumns] [bscolumns class=”one_half_last”]Your Content Goes here[/bscolumns] [bscolumns class=”clear”][/bscolumns] 3 column layout: – [bscolumns class=”one_third”]Your Content Goes here[/bscolumns] [bscolumns class=”one_third”]Your Content Goes here[/bscolumns] [bscolumns class=”one_third_last”]Your Content Goes here[/bscolumns] [bscolumns class=”clear”][/bscolumns] 4 column layout: – [bscolumns class=”one_fourth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_fourth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_fourth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_fourth_last”]Your Content Goes here[/bscolumns] [bscolumns class=”clear”][/bscolumns] 5 column layout: – [bscolumns class=”one_fifth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_fifth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_fifth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_fifth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_fifth_last”]Your Content Goes here[/bscolumns] [bscolumns class=”clear”][/bscolumns] 6 column layout: – [bscolumns class=”one_sixth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_sixth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_sixth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_sixth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_sixth”]Your Content Goes here[/bscolumns] [bscolumns class=”one_sixth_last”]Your Content Goes here[/bscolumns] [bscolumns class=”clear”][/bscolumns] 1/3 and 2/3 column layout: – [bscolumns class=”one_third”]Your Content Goes here[/bscolumns] [bscolumns class=”two_third_last_clear”]Your Content Goes here[/bscolumns] [bscolumns class=”clear”][/bscolumns] 2/3 and 1/3 column layout: – [bscolumns class=”two_third”]Your Content Goes here[/bscolumns] [bscolumns class=”one_third_last_clear”]Your Content Goes here[/bscolumns] [bscolumns class=”clear”][/bscolumns] The columns are responsive and will occupy the whole width of your screen. Checkout the demo here With new plugin, you can enter the column combination from Tinymce button like 1/3+2/3. This will give you one third of column, and 2 third of the column. If you have any questions and suggestions, leave a comments or post it in support forum. Thank you! | ||||||||
Tabs Shortcode and Widget | 1.8 | 68 | 5 | 22867 |
| |||
Create Tabs. Nice and easy interface. Insert anywhere in your site - page/post editor, sidebars, template files. Easily create different kinds of Tabs for your WordPress site, vertical or horizontal. Insert Tabs anywhere in your site - page/post editor, sidebars, template files. No coding is required. It is all done in a nice and easy interface. Upgrade to the Pro version of this plugin - the fastes way to build your Wordpress based site including regular updates and premium support: Content Manager | Demo site Get some more awesome FREE plugins: Portfolio Manager, Widgetize Pages, Blog Manager Tabs Options Number of Tabs Style - Horizontal or Vertical Tabs Title Tab 1/2/../10 Title Tab 1/2/../10 Icon Tab 1/2/../10 Icon URL Tab 1/2/../10 Content Custom CSS Class Insert Tabs Anywhere in your site Basically Tabs can be inserted anywhere in your site Page/post WYSIWYG editor by using the buttion in the editor In sidebars by using the OTW Shortcode Widget In template files by using the tab's shortcode and WordPress do_shortcode function Custom styling If you need to further style a tab here are your options: Each tab shortcode has it's unique CSS class that can be used to style all tabs. Create a new class for each instance of a tab shortcode in its interface so you can style it individually. Localization/Internationalization This plugin comes Localization/Internationalization ready. It is following WordPress I18n standards. Full version of the plugin Upgrade to the full version of Content Manager | Demo site Custom Responsive Layouts - Build in Seconds Front-end Editor - Edit your layouts and content in the front-end of your site 40+ Shortcodes with add/edit Interface, Custom and Imported Shortcodes Insert Shortcodes Anywhere - Layouts, Page Editor, Sidebars, Template files Insert Sidebars Anywhere - Layouts, Page Editor, Template files WordPress Widgets Anywhere - Layouts, Page Editor, Template files Content Sidebars Support and Updates Zero Coding Required Follow on Twitter | Facebook | YouTube | Google + | ||||||||
Unsorted Plugins (25 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Shortcode to flag | 1.0 | 56 | 4 | 695 |
| |||
Shortcode to flag is an easy plugin, that will allow you to insert flags with shortcodes. Shortcode to flag is an easy plugin, that will allow you to insert flags with shortcodes. For example, US will change to an American flag that won’t break your formatting. The height of the flags is 40pixels. | ||||||||
WP Amara Shortcode | 1.2 | 100 | 2 | 368 |
| |||
A simple wordpress plugin to enable Amara.org shortcode A simple wordpress plugin to enable Amara.org shortcode. | ||||||||
s2member-shortcode | 1.2.1 | 100 | 2 | 502 |
| |||
This plugin extends the s2member Pro plugin by adding a shortcode to render the pro login widget.... This plugin extends the s2member Pro plugin by adding a shortcode to render the pro login widget. | ||||||||
Shortcode Toggle | 1.0.9 | 100 | 7 | 3458 |
| |||
Add Useful Toggle Menu to your blog simply by shortcode. Need some toggles (Click to Open/Close) to make your post better? Now you can use this plugin to add Useful Toggles to your blog! You just need to type the shortcode [toggle] in to your post and everything will done for you! For shortcode usage please visit "Dashboard" -> "Tools" -> "Shortcode Toggle" Example: [toggle title="Title"]Some Content...[/toggle] Live Demo: Click Here 中文介紹請看這裏 Translators Chinese, Simplified (zh_CN) - Arefly Chinese, Traditional (zh_TW) - Arefly English (en_US) - Arefly If you have created your own language pack, or have an update of an existing one, you can send gettext PO and MO files to Arefly so that I can bundle it into Shortcode Toggle. You can download the latest POT file. | ||||||||
Shortcode Box | 1.1.2 | 100 | 2 | 1083 |
| |||
Add Useful Boxes to your blog simply by shortcode. Need some boxs to make your post better? Now you can use this plugin to add Useful Boxes to your blog! You just need to type the shortcode [box] in to your post and everything will done for you! For shortcode usage please visit "Dashboard" -> "Tools" -> "Shortcode Box" Live Demo: Click Here 中文介紹請看這裏 Translators Chinese, Simplified (zh_CN) - Arefly Chinese, Traditional (zh_TW) - Arefly English (en_US) - Arefly If you have created your own language pack, or have an update of an existing one, you can send gettext PO and MO files to Arefly so that I can bundle it into Shortcode Box. You can download the latest POT file. | ||||||||
ND Shortcodes For Visual Composer | 4.9 | 100 | 5 | 3193 |
| |||
The plugin adds some useful components to your page builder ( Elementor or WP Bakery Page Builder ). All components are full responsive and retina rea Some components in the preview below The plugin adds some useful components to the Visual Composer Plugin that can be integrated very easily with your own theme. | ||||||||
PDF.js Shortcode | 1.0 | 60 | 2 | 1403 |
| |||
View pdf files by Mozilla pdf.js using simple shortcode. Add Mozilla's PDF.js viewer into your pages and posts with a simple shortcode. PDF.js is a javascript library for displaying pdf pages within browsers. Shortcode Syntax: [pdfjs-shortcode pdf_width=100% pdf_height=500px pdf_download=true pdf_print=true pdf_openfile=false]http://www.domain.com/test.pdf[/pdfjs-shortcode] | ||||||||
Woo Framework Shortcodes | 1.0.0 | 100 | 2 | 1586 |
| |||
WooThemes uses WooFramework which comes with loads of shortcodes, if you have used the theme for a while you may have used the shortcodes in your pages. Switching over to another theme becomes difficult as the shortcodes aren’t supported in a non WooThemes theme. With the help of this plugin easily switch to a non WooThemes theme but retain the framework shortcodes. Before installing this plugin you need to first deactivate the Woothemes theme and activate any other theme, and then install and activate this plugin. Disclaimer Please note this is not an official WooThemes plugin. I have created this plugin with the hope that it will help someone switch to another theme like Storefront that doesn’t have shortcodes that are provided by a WooThemes theme. All the copyrights and trademarks are the property of their respective owners. | ||||||||
Post Shortcode | 2.0.8 | 86 | 6 | 4842 |
| |||
This plugin is used for display post using widget as well as shortcode. This plugin is used for display posts in widget as well as shortcode. Display post shortcode using shortcode generator Display post widget with selection tools ( like grid view or listing view ) Customize plugin output using functions.php Display post as well as custome post type Display post with perticuler Taxonomy, Term, Category, Tag Display post with selection like: Title, Image, Category, Tag, Cutome Field, Excerpt, Read More, Pagination Easy to change plugin css from backend plugin page. Change thubnail size, page number, taxonomy query relation Generate shortcode using plugin page Add page parameters like post_parent__in, post_parent__not_in, post__in, post__not_in, post_name__in "Contributors" sachin8600 "Tags" posts, post, shortcode, widget, custom, taxonomy, pages, page, css, layout, recent, thumbnail, themes "Requires at least" 3.8 "Tested up to" 4.7 | ||||||||
Mobble Shortcodes | 0.2.4 | 100 | 2 | 1693 |
| |||
Deliver mobile-specific content using the functionality in the Mobble plugin. Mobble Shortcodes takes the functions available in the Mobble function and makes them available for use in pages, posts and other content. It gives you the ability to deliver different content to different devices at will. | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Surbma – Divi Project Shortcodes | 1.2 | 96 | 5 | 5419 |
| |||
Requires PHP: 7.0 Shortcodes to display Divi's Project elements, like category and tag list. Have you ever wanted to build a Project page with Divi’s own Page Builder, but want to show the Project categories or tags? There is no option to do it in Divi, but with Surbma – Divi Project Shortcodes plugin, you can display them anywhere. Even you have the option to display the original Project title area and/or the original meta box for Skills and Project date, as they are appearing in normal Project pages. Wow! Show Project category list With this shortcode you can display a list of all categories assigned to the current Project. Categories are separated with commas and all are linked to their respective category listing pages. The shortcode: [project-category-list] Show Project tag list With this shortcode you can display a list of all tags assigned to the current Project. Tags are separated with commas and all are linked to their respective tag listing pages. The shortcode: [project-tag-list] Show original Project title with category list With this shortcode you can display the original title format, that you see on normal Project pages without Page Builder. The title will be in a H1 tag and the categories will be listed next to it. The shortcode: [project-title] Show original Project meta box with tags and date With this shortcode you can display the original meta box for tags and date, that you can see on normal Project pages without Page Builder. The shortcode: [project-meta-box] IMPORTANT! This (or any other) shortcode is working only in a widget, if you or the theme has enabled the use of shortcodes in widgets. I’m not giving any description how you can do it, because there are a lot of posts out there. You can do a search for this: wordpress enable shortcodes in widgets You have to buy the Divi Theme to use this plugin: Divi by Elegant Themes (affiliate link) My plugins for Divi theme: Surbma – Divi & Gravity Forms Surbma – Divi Project Shortcodes Surbma – Divi Extras My childthemes for Divi theme: Divi Extra Do you want to contribute or help improving this plugin? You can find it on GitHub: https://github.com/Surbma/surbma-divi-project-shortcodes You can find my other plugins and projects on GitHub: https://github.com/Surbma Please feel free to contribute, help or recommend any new features for my plugins, themes and other projects. Do you want to know more about me? Visit my webpage: Surbma.com | ||||||||
MachForm Shortcode | 1.3 | 100 | 4 | 4598 |
| |||
Easily use MachForm forms on your WordPress site! MachForm is an excellent, easy to use form builder that you host on your own server or site. Until now, its been difficult and required "jumping through some hoops" to embed a form made with MachForm on your WordPress site. That is no more! You can now add a MachForm form anywhere on your site using a simple shortcode! Need a form in a blog post? Need a form on a page? No problem. For more information, check out the plugin page on our website. Features include: Support for javascript based forms Support for iframe based forms Support for URL Parameters Easy to use! This plugin isn't just for developers, no matter what your skill level you can use this plugin to easily add forms from your Machforms system to your website! How to use the shortcode: Click the "Code" option on your form inside of MachForm to see the embed codes. Make note of your form's "ID" and the "height". Use the shortcode to embed your form into your content using this format: [machform type=("js" or "iframe") id=(ID #) height=(height #)] You are done, your form should show in your content now! URL Parameters: The plugin now supports URL parameters. The parameters are easy to pass via the shortcode by simply including the parameter and value inside of the shortcode like the following example: [machform type=js id=1593 height=703 element_1_1="Field Text Here" element_1_2="Field Text Here"] For more information on using URL Parameters with Machform, please see their website by clicking here. Review or Rating Don't forget to leave a review or a rating, and also connect with us on social media! Thank you for your support. IMPORTANT NOTE: Machforms is a 3rd party application sold by AppNitro. Installing this plugin allows you to use a shortcode anywhere on your site to embed a form that is created in Machforms. This plugin does not provide a form builder interface. | ||||||||
Woo Sensei Shortcodes | 1.4.1 | 86 | 3 | 3816 |
| |||
Woo Sensei Shortcodes give you option to add course and lesson content in any post type. There are 12 Sensei short-codes which helps you to show course and lesson any where in the website.. You can use these short-codes in any post, page or custom post type. This plugin is very helpful when you use Advanced Layout Builder. [wss_sensei_lesson_video] Attributes: lesson_id Description: view lesson video [wss_sensei_course_video] Description: view course video [wss_sensei_message_button] Attributes: lesson_id Description: view contact teacher button [wss_sensei_breadcrumb] Description: view Back to Course link [wss_display_attached_media] Attributes: lesson_id Description: view attached files with in a lesson [wss_next_prev_lesson] Description: view navigation [wss_sensei_lesson_button] Attributes: lesson_id, user_id Description: view Lesson Complete Button [wss_sensei_course_start] Attributes: course_id, user_id Description: view Start Course Button [wss_sensei_course_lesson_list] Attributes: course_id Description: view list of lessons with in a course [wss_course_nav] Description: view next , prev link of the current course [wss_modules] Attributes: course_id, user_id Description: view modules [wss_progressbar] Description: view just course progress Interested in contributing to Woo Sensei Shortcodes Head over to the Woo Sensei Shortcodes GitHub Repository to find out how you can pitch in 😉 | ||||||||
Random Post Shortcode | 1.0.3 | 80 | 2 | 2788 |
| |||
Random Post Shortcode and Widget Insert shortcode [random-post] to a page or post to display a random post from all of your posts. Also provides a widget to display the excerpt from a random post (published only). To display only posts from a single category use: [random-post category_name="News"] Support Support Forum @ powie.de | ||||||||
Official Treehouse Badges Widget and Shortcode | 1.4 | 94 | 3 | 4212 |
| |||
Provides both widgets and shortcodes to help you display your Treehouse profile badges on your website. The official Treehouse badges badges and plug Treehouse is an amazing online technology company that teaches graphic design, web design and development, mobile development and business. As you watch videos, take quizes, and complete code challenges, you earn badges showing the work you have completed. Everyone's profile page at Treehouse [http://teamtreehouse.com/profilename] shows off the badges you have earned. These badges are great to add to your personal web site to show off what you have learned, and more and more employers in the industry are starting to recognize the work and knowledge that Treehouse badges represent. This plugin allows you to show off the badges from your Treehouse profile and display them on your WordPress site. You can use a widget to display your badges in a header, sidebar or footer or use a shortcode to display badges in the main content are for a post or page. The plugin offers two customization options: Number of Badges - Choose how many of your recent badges you would like to display Tooltip - An optional tooltip with the name of the badge and the related course Along with these features, the plugin also includes an affiliate widget so you can encourage people to sign up at Treehouse and get a discount off your monthly membership. This is the official badges plugin for Treehouse and was created along with a video series on How to Build a WordPress Plugin. | ||||||||
Tagboard Embed Shortcode | 0.3 | 90 | 2 | 2929 |
| |||
A simple way to embed your tagboard into your Wordpress blog. It uses a shortcode and supports embedding into Pages/Posts/Widgets. Tagboard allows users to display a hashtag and its posts from all the major social networks in one stream-lined embedded view. It uses a shortcode and supports embedding into Pages/Posts/Widgets. What is Tagboard: Tagboard is a tool for searching and displaying hashtag content, interacting with users, and participating in the conversation surrounding a hashtag. It allows you to customize a tagboard page, moderate the posts, and grow hashtag communities, all from a centralized and simple interface. Not only has Tagboard revolutionized the way we experience and display social posts, it also automatically aggregates social media posts from Twitter, Facebook, Instagram and others in a single view, all in near real-time. Interact with your community in one place: Whether you're embedding tagboard on your blog or website, or you're using the Tagboard website, the community interaction tools are key. From your tagboard page, you can favorite, retweet, reply, comment and like posts in your stream without ever leaving the page. It saves you from having to log in and out of each social network just to interact with your community. Experience #SafeSocial with moderation and curation tools: Hijacking, "bashtags", and obscenities are a natural part of social media and the internet nowadays. It's inevitable - but, that doesn't mean you can't avoid it. Tagboard lets you control the "social firehose" of unfiltered posts through our moderation (and/or curation) tools. These enable brands and organizations to safely host social media content on your website. | ||||||||
WooCommerce Cart Count Shortcode | 1.0.4 | 88 | 11 | 16659 |
| |||
Display a link to your shopping cart with the item count anywhere on your site with a customizable shortcode. Looking for a flexible way to display items in your site’s WooCommerce cart? Look no further! This plugin allows you to insert a shortcode anywhere on your site that generates an a href link. Parameters: icon – Any Font Awesome icon. Most of the time you’ll want to use shopping-cart or shopping-basket. empty_cart_text – The text to display when there are zero items in the cart. You may want this to default to “Shop”. items_in_cart_text – The text to display when there are one or more items in the cart. You may want this to default to “Cart”. total_text – The text to display when there are one or more items in the cart. You may want this to default to “Total:”. show_items – Enter “true/false” to show/hide items in the cart in parentheses. The item count will only show when there are one or more items in the cart. custom_css – Any custom CSS you’d like to add to the link. show_total – Enter “true/false” to show/hide total price in the cart Examples: [cart_button] [cart_button icon="basket"] [cart_button show_items="true"] [cart_button show_items="true" show_total="true"] [cart_button show_items="true" show_total="true" total_text="Total Price:"] [cart_button show_items="false" items_in_cart_text="Cart"] [cart_button show_items="true" empty_cart_text="Store"] [cart_button items_in_cart_text="Cart" custom_css="custom"] | ||||||||
PDF.js Viewer Shortcode | 1.3 | 82 | 22 | 36506 |
| |||
Incorporate Mozilla's PDF.js viewer into your pages and posts with a simple shortcode. PDF.js is a javascript library for displaying pdf pages within browsers. Features: Elegant speckled gray theme... Customizable buttons Page navigation drawer Advanced search functionality Language support for all languages Protected PDF password entry Loading bar & displays partially loaded PDF (great for huge PDFs!) Document outline Advanced zoom settings Easy to use editor media button that generates the shortcode for you Support for mobile devices Shortcode Syntax: [pdfjs-viewer url=http://www.website.com/test.pdf viewer_width=600px viewer_height=700px fullscreen=true download=true print=true] url (required): direct url to pdf file viewer_width (optional): width of the viewer (default: 100%) viewer_height (optional): height of the viewer (default: 1360px) fullscreen (optional): true/false, displays fullscreen link above viewer (default: true) download (optional): true/false, enables or disables download button (default: true) print (optional): true/false, enables or disables print button (default: true) | ||||||||
Robokassa Shortcode | 1.4.1 | 100 | 2 | 3586 |
| |||
This plugin allows you to place a payment button in any Robokassa your post or on any page. Place the shortcode provide a description of payment and amount. [rk_button price="100" sku="test" description="Test payment"] В Robokassa прописываем: Оповещение о платеже - [имя сайта]/rksc/res.php Ссылка об удачном платеже - [имя сайта]/rksc/success.php Ссылка о неудачном платеже - [имя сайта]/rksc/fail.php В ближайшее время в плагине будут доступны пользовательские поля для ваших форм, список поступлений денег. Следите за обновлениями | ||||||||
The Events Calendar Shortcode | 1.4.1 | 94 | 36 | 74801 |
| |||
Adds shortcode and block functionality to The Events Calendar Plugin (free version) by Modern Tribe, so you can easily list your events anywhere. This plugin adds a shortcode for use with The Events Calendar Plugin (by Modern Tribe). With this plugin, just add the shortcode on a page to display a list of your events. For example to show next 8 events in the category festival: [ecs-list-events cat="festival" limit="8"] Shortcode Options: Basic shortcode: [ecs-list-events] cat - Represents single event category. [ecs-list-events cat='festival']. Use commas when you want multiple categories [ecs-list-events cat='festival, workshops'] limit - Total number of events to show. Default is 5. [ecs-list-events limit='3'] order - Order of the events to be shown. Value can be 'ASC' or 'DESC'. Default is 'ASC'. Order is based on event date. [ecs-list-events order='DESC'] date - To show or hide date. Value can be 'true' or 'false'. Default is true. [ecs-list-events eventdetails='false'] venue - To show or hide the venue. Value can be 'true' or 'false'. Default is false. [ecs-list-events venue='true'] excerpt - To show or hide the excerpt and set excerpt length. Default is false. [ecs-list-events excerpt='true'] //displays excerpt with length 100 excerpt='300' //displays excerpt with length 300 thumb - To show or hide thumbnail image. Default is false. [ecs-list-events thumb='true'] //displays post thumbnail in default thumbnail dimension from media settings. You can use 2 other attributes: thumbwidth and thumbheight to customize the thumbnail size [ecs-list-events thumb='true' thumbwidth='150' thumbheight='150'] message - Message to show when there are no events. Defaults to 'There are no upcoming events at this time.' viewall - Determines whether to show 'View all events' or not. Values can be 'true' or 'false'. Default to 'true' [ecs-list-events cat='festival' limit='3' order='DESC' viewall='false'] contentorder - Manage the order of content with commas. Default to title, thumbnail, excerpt, date, venue. [ecs-list-events cat='festival' limit='3' order='DESC' viewall='false' contentorder='title, thumbnail, excerpt, date, venue'] month - Show only specific Month. Type 'current' for displaying current month only [ecs-list-events cat='festival' month='2015-06'] past - Show Outdated Events. [ecs-list-events cat='festival' past='yes'] key - Order with Start Date [ecs-list-events cat='festival' key='start date'] Pro Version Options: design - Shows improved design by default, or set to 'standard' for the regular one and 'compact' for a more compact listing days - Specify how many days in the future, for example [ecs-list-events days="1"] for one day or [ecs-list-events days="7"] for one week tag - Filter by one or more tags. Use commas when you want to filter by multiple tags. hiderecurring - To only show the first instance of a recurring event, set to 'true' View Details and Get the Pro Version This plugin is not developed by or affiliated with The Events Calendar or Modern Tribe in any way. | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
PayPal Pay Now, Buy Now, Donation and Cart Buttons Shortcode | 1.6 | 96 | 6 | 17043 |
| |||
Author: Mohsin Rasool Adds a shortcode to display PayPal's pay now, buy now, donation and add to cart buttons with facility to customize your P This plugin adds “paypal_button” shortcode to display pay now, buy now, donation and add to cart PayPal buttons with facility to customize their PayPal checkout page. Handy features of the plugins are Four types of button Pay Now, Buy Now, Add to Cart, Donation Customizable quantity field which is available as text box and drop down box with possible selected values or range of values for all types of buttons Customizable PayPal Payment Button Customizable PayPal Checkout page, change header logo and page color etc Output can be a PayPal form with Default or Customizable PayPal button or a URL to PayPal payment/cart page that can be used on linked texts All type of PayPal button options i.e. large, small, with and without Credit Card Logos Set Thank you page after successful payment to return the user back to your website Set Handling and Shipping charges Allow buyer to add a note to order Select language of your button. Supports 17 widely used languages Both Admin generated amount (based on quantity) and user filled amount payments Plugin also adds a [paypal_view_cart_link] shortcode to be used to create view cart buttons. Possible usage of the plugin are as follows Pay Now Button: [paypal_button type="paynow" amount="100"] Buy Now Button: [paypal_button type="buynow" name="WordPres Portfolio Theme" amount="100"] Donation Button: [paypal_button type="donate" amount="100"] Add to cart Button: [paypal_button type="cart" name="Computer Table" amount="100"] Payment Link: [paypal_button type="buynow" name="WordPres Portfolio Theme" amount="100" echo_link=1] View Cart Link: <a href="[paypal_view_cart_link]">View Cart</a> Set your PayPal E-Mail address and Checkout page customization in Settings->PayPal Buttons. Usage [paypal_button type="paynow|buynow|donate|cart" amount="100"] <a href="[paypal_view_cart_link]">View Cart</a> Attributes **type**: (string) (optional) Type of transaction. Allowed Values are Possible Values: 'paynow', 'buynow', 'cart' or 'donate' **id**: (string) (optional) Product Number Possible Values: Any numeric product id **email**: (string) (optional) Your PayPal E-Mail address. Possible Values: A valid PayPal E-Mail address **name**: (string) (optional) Name of the Product Possible Values: Any String **amount**: (numeric) (optional) Product price to be charged. Yes, you can left empty for user to input amount. This can be used for donations. Possible Values: Any numeric value **quantity**: (numeric or string) (optional) Specfiy quantity as number or range or possible comma separated values. Leave empty to let user specify any quantity. Possible Values: "1" or "1,5,10" or "1-10" **quantity_txt_postfix**: (string) (optional) Post fix text to be shown in quantity dropdown. Possible Values: " items" or " products" **field_sep**: (string) (optional) HTML code to separate the generated visible HTML fields. Use "<br />" for new line. Possible Values: " " or "<br />" **amount_prompt**: (boolean) (optional) Setting to "1" will enable user to enter amount they would like to pay. Possible Values: 1 or 0 **echo_link**: (boolean) (optional) Set to "1" for linked output Possible Values: 1 or 0 **open_new_window**: (boolean) (optional) Set to "1" to open payment page in a new window Possible Values: 1 or 0 **currency**: (string) (optional) Currency of the Transaction. Possible Values: 'USD' or 'CAD' or any currency code **tax_rate**: (numeric) (optional) Tax rate in percentage applied to the total price. Possible Values: 0.0001 to 100 **shipping_charges**: (numeric) (optional) Shipping charges for the product. Possible Values: Any numeric value **btn_url**: (string) (optional) Set URL of your own customizable button. Global setting is used when left empty or default PayPal Button Possible Values: A URL to an image **btn_size**: (string) (optional) Set size of the button either 'large' or 'small'. Possible Values: 'large' or 'small' **btn_display_cc**: (string) (optional) Display Credit Cards Logo under the button. Possible Values: 'yes' or 'no' **add_note**: (string) (optional) Let buyer add a note to order. Possible Values: 'yes' or 'no' **thankyou_page_url**: (string) (optional) Buyer will be redirect to this page after successful payment. Possible Values: An absolute URL e.g. http://abc.com/thankyou **checkout_logo_url**: (string) (optional) URL to your Logo image. Possible Values: An absolute URL e.g. http://abc.com/logo.png **checkout_header_border_color**: (string) (optional) Set border color of the checkout page header. Possible Values: A HTML Hexa-decimal code. e.g. FFFF00, 999999 etc **checkout_header_bg_color**: (string) (optional) Change background color of the checkout page header. Possible Values: A HTML Hexa-decimal code. e.g. FFFF00, 999999 etc **checkout_bg_color**: (string) (optional) Change background color of the entire checkout page. Possible Values: A HTML Hexa-decimal code. e.g. FFFF00, 999999 etc | ||||||||
Tripadvisor Shortcode | 2.2 | 66 | 4 | 13704 |
| |||
Version: 2.2 I have been told by TripAdvisor that they are about to turn off the business owner rss feeds. This plugin no longer works. | ||||||||
WooCommerce Coupon Shortcodes | 1.11.0 | 100 | 4 | 25045 |
| |||
Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons. This extension for WooCommerce allows you to render coupon information and show content based on the validity of coupons. Customers can be motivated to proceed with their purchase, offering them to use specific coupons when the contents in the cart qualify for it, or by offering them to purchase additional items so they can use a coupon. Extended coupon discount info for volume discounts is shown automatically, if the WooCommerce Volume Discount Coupons is installed. It also works with WooCommerce Group Coupons and WooCommerce Coupons Countdown. Conditional Shortcodes It provides the following conditional shortcodes that allow to enclose content which is shown if coupons are applied, valid or not valid. [coupon_is_active] [coupon_is_not_active] [coupon_is_applied] [coupon_is_not_applied] [coupon_is_valid] [coupon_is_not_valid] Coupon Info Shortcodes It also provides shortcodes that allow to render the coupon code, its description and an automatic description of the discount: [coupon_code] (this one makes sense mostly when used inside one of the conditional shortcodes). [coupon_description] [coupon_discount] [coupon_show] A coupon enumerator shortcode allows to list all or a set of coupons, to show their code, description or discount information, (or combinations of those using the [coupon_show] shortcode): [coupon_enumerate] Documentation Please refer to the plugin’s documentation pages for detailed descriptions. Examples Show a text when a coupon can be used (active) – this is useful to show promotional info while coupons can be used, as active means that the coupon has not reached its expiration date nor exceeded its usage limits: [coupon_is_active code="eastereggs"] Happy Easter! Use the coupon code [coupon_code] to hop away with a great discount : [coupon_discount] [/coupon_is_active] This is an example of a text shown when a promotion is over: [coupon_is_not_active code="specialdiscount"] Our special discount sale has ended. Come back often to see more! [/coupon_is_not_active] Showing a coupon when the cart contents qualify for a coupon to be applied: [coupon_is_valid code="superdiscount"] You qualify for a discount! Use the coupon code [coupon_code] to take advantage of this great discount : [coupon_discount] [/coupon_is_valid] Showing a coupon that is not valid for the current cart and motivating to add items: [coupon_is_not_valid code="25off"] If you purchase 5 Widgets, you can use the coupon [coupon_code] to get 25% off your purchase! [/coupon_is_not_valid] Show information about three random coupons, including the coupon code, its description and discount info together on each entry: [coupon_enumerate code="*" orderby="rand" number="3"] [coupon_show show="code,description,discount"] [/coupon_enumerate] Show a single random coupon code: [coupon_enumerate code="*" orderby="rand" number="1"] [coupon_code] [/coupon_enumerate] Documentation and Support Full usage instructions and help is provided on these pages: Please refer to the plugin’s documentation pages for detailed information Documentation Questions, feedback and suggestions can be posted on the plugin page WooCommerce Coupon Shortcodes plugin page and Support | ||||||||
Theme Blvd Shortcodes | 1.5.9.1 | 68 | 7 | 68097 |
| |||
This plugin works in conjunction with the Theme Blvd framework to create shortcodes for many of the framework's internal elements. Within themes using the Theme Blvd framework, there are many internal elements and other 3rd-party items integrated, like Twitter Bootstrap and FontAwesome, to make use of. When using a Theme Blvd theme, this plugin gives you an extensive pack of shortcodes to extend the framework's functionality to your pages, posts, and custom layouts via shortcodes. After activating this plugin, you'll know it's ready to go by viewing the Edit Page or Edit Post screen and seeing the plugin's shortcode generator button above your WordPress Editor. You'll then have access to the following shortcodes for use within your website. Theme Compatibility This plugin works with the following themes only. Theme Blvd Framework 2.5+ Themes Jump Start Denali Theme Blvd Framework 2.2-2.4 Themes Akita Alyeska Arcadian Barely Corporate Breakout Commodore Swagger Full shortcodes and compatibility table: See Table Documentation and Usage Examples Theme Blvd Framework 2.5+ Themes: View Documentation and Examples Theme Blvd Framework 2.2-2.4 Themes: View Documentation and Examples NOTE: For this plugin to do anything, you must have a theme with Theme Blvd framework v2.2+ activated. | ||||||||
Simple Membership Form Shortcode | 1.1 | 100 | 2 | 19696 |
| |||
Simple Membership Addon to generate registration form shortcode for specific membership access level. This addon allows you to create a registration form for a particular membership level on any post or page. You can use it to give access to various different membership levels for free. You will be able to select a membership level from the dropdown and it will generate a registration form shortcode for that level. After you install this addon, go to the “Form Shortcode” menu from the admin dashboard to use it. More details here This addon requires the Simple Membership Plugin. | ||||||||