General (11 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Uncache Script | 1.2.0 | 100 | 3 | 1074 |
| |||
Force your scripts and style to uncache Uncache Script is a small plugin to uncache all your style & script after you editing them. So they don't keep any cache in your WordPress site 🙂 Features : Uncache all your script and style Dead simple to use, just one-click Zero configuration Plugin Demo You can try the plugin on this url: http://coba.tonjoostudio.com username: coba password: 123456 *If you have any questions, comment, customization request or suggestion please contact us via our Tonjoo Forum Find more detail and guide please visit Uncache Script Manual Page Or you can find our best plugins at Tonjoo Studio We can also modify your WordPress plugins according to your needs. Visit us: Tonjoo WordPress Developer Usage Instruction Install the plugin. In the Admin Panel, Go to Setting -> Uncache Script. Click Uncache Script to uncache | ||||||||
TC Custom JavaScript | 1.1.0 | 100 | 5 | 7389 |
| |||
Add custom JavaScript to your site from a professional editor in the WordPress admin. Add custom JavaScript to your site from a professional editor in the WordPress admin. TC Custom JavaScript's still in early stage. If you have any troubles when using it, or any ideas to improve its features to fit with your work, please do not hesitate to contact us. | ||||||||
Tracking Script Manager | 1.1.6 | 92 | 5 | 8976 |
| |||
Easy tag management. Manage the tracking tags, codes and scripts you use in your WordPress site; easily add, update, reorder, delete, as required. With Tracking Script Manager you can place tracking tags and scripts globally in the header or footer or specifically on specific pages and posts. Easily add tags, scripts and code, or manage existing tags, scripts and code including editing, updating, reordering and deactivating. Tracking Script Manager is especially useful for managing advertising tags, social media tracking and retargeting scripts, Facebook and adwords for example, analytic scripts including Google Analytics, and promotional scripts. It can also be used to manage conversion tracking tags and scripts for marketing automation or ecommerce or any other desired action. | ||||||||
Scripts n Styles | 3.3.1 | 92 | 18 | 38136 |
| |||
This plugin allows Admin users the ability to add custom CSS and JavaScript directly into individual Post, Pages or any other registered custom post types. You can also add classes to the body tag and... the post container. There is a Global settings page for which you can write Scripts n Styles for the entire blog. Admin's can also add classes to the TinyMCE "Formats" dropdown which users can use to style posts and pages directly. As of Scripts n Styles 3+ styles are reflected in the post editor. Because only well trusted users should ever be allowed to insert JavaScript directly into the pages of your site, this plugin restricts usage to admin type users. Admin's have access to even more sensitive areas by definition, so that should be relatively safe 😉 Notes about the implementation: Admin users, or more specifically, any user with the manage_options and unfiltered_html capabilities (which by default is only the admin type user) can use this plugin's functionality. Some plugins extend user rolls, and so this plugin would naturally extend include rolls that have the appropriate capability. CSS Styles are embeded, not linked, at the bottom of the head element with style tags by using wp-head. If your theme doesn't have this hook, this plugin (as well as most others) won't work. JavaScript is embeded, not linked, at the bottom of the body (or head) element with script tags by using wp-footer (or wp-head). If your theme doesn't have this hook, this plugin (as well as most others) won't work. There is no input validation. This plugin puts exactly what you type in the meta box directly into the html with no error checking. You are an Admin, and we trust you to be carefull. Try not to break anything. Do to the licensing of the libraries used, this plugin is released "GPL 3.0 or later" if you care about those things. Contact: You'll have better luck contacting the other if you try me on Twitter and Github. If that fails, I have an open thread on the support forums that will trigger an email. | ||||||||
Scripts To Footer | 0.6.1 | 92 | 28 | 75545 |
| |||
Move your scripts to the footer to help speed up perceived page load times and improve user experience. This small plugin moves scripts to the footer. Note that this only works if you have plugins and a theme that utilizes wp_enqueue_scripts correctly. You can disable the plugin on specific pages and posts directly via the post/page edit screen metabox. You can disable the plugin on specific archive pages (blog page, search page, post type and taxonomy archives) via the settings page. Sometimes moving scripts breaks something. There are many javascript-based plugins like many sliders, some social media sharing scripts, that rely on jQuery to be loaded prior to the HTML elements. This is so common, I've created an option to fix it. If you experience issues, click the "Keep jQuery in Header" option in Settings > Scripts to Footer. If that doesn't work, refer to the walkthrough below for using the stf_exclude_scripts filter for the script that is causing the issue. Check out the documentation on GitHub or some quick walkthroughs below. Keeping specific Scripts in the Header As of version 0.6 you can now keep specific scripts in the header. Note: this will print any scripts they depend on as well (if you want to keep jquery-effects-core in the header, you'll also get jQuery in the header, so no need to add both). Specifically for jQuery, see the settings page option, as it is a common request we've built it into the settings. For any other scripts, use this filter: add_filter( 'stf_exclude_scripts', 'jdn_header_scripts', 10, 1 ); function jdn_header_scripts( $scripts ) { $scripts[] = 'backbone'; // Replace 'backbone' with the script slug return $scripts; } You will need the correct script slug, which is used when the script is registered, and the script will only be printed into the header if it's enqueued. Check out the scripts that come registered out-of-the-box with WordPress. Custom Post Type Support If you're comfortable with code you can use the scripts_to_footer_post_types filter to change the post types this applies to (it only applies to pages and posts by default). For example, if you have a custom post type called "project" you could add support for this metabox via the post type filter like this: function stf_add_cpt_support( $post_types ) { $post_types[] = 'project'; return $post_types; } add_filter( 'scripts_to_footer_post_types', 'stf_add_cpt_support' ); Excluding Pages/Posts/Templates Via Filter As of version 0.5 you can either use the checkbox option to disable the plugin's action on a specific page/post, or you can utilize a filter (updated with version 0.6). The filter also passes the post/page id, if there is one (archive templates don't have ids!). For example, for the "page" post type: function stf_exclude_my_page( $exclude_page, $post_id ) { if( is_front_page() ) { $exclude_page = 'on'; // this turns on the "exclude" option } return $exclude_page; } add_filter( 'stf_page', 'stf_exclude_my_page' ); Replace stf_page with stf_post for posts, or the slug of your custom post type. For instance, a post type called "project" can be filtered with stf_project. More Documentation View this plugin on GitHub. View on GitHub View this plugin on GitHub. | ||||||||
WP Deferred JavaScripts | 2.0.5 | 68 | 28 | 78676 |
| |||
Defer the loading of all JavaScripts added with `wp_enqueue_script()`, using LABJS (an asynchronous javascript library). This plugin defer the loading of all JavaScripts added by the way of wp_enqueue_script(), using LABJS. The result is a significant optimization of loading time. It is compatible with all WordPress JavaScript functions (wp_localize_script(), js in header, in footer...) and works with all well coded plugins. If a plugin or a theme is not properly enqueuing scripts, your site may not work. Check this page: Function Reference/wp_enqueue_script on WordPress Codex. LABjs (Loading And Blocking JavaScript) is an open-source (MIT license) project supported by Getify Solutions. We performed a range of tests to determine the potential benefit of loading time. On wabeo we executed webwait (150 calls by test). Result is this plugin could improve your loading time by 25%!! More information in the Screenshots section. You can find more information about WP Deferred JavaScripts and technical information about asynchronous scripts on authors blogs. | ||||||||
OH Add Script to Individual Pages Header Footer | 2.1 | 98 | 16 | 46874 |
| |||
Simple plugin to add script to header and footer for individual pages & posts Create a simple way to add javascript code to individual page post or custom post type header and footer, for example: add conversion code to thank you pages add google re-marketing code to individual pages and much more... added in version 1.3 the option to add script \ style to all pages not only individual pages, this will allow you to add Google re-marketing code to the entire site or Google Analytics to use it goto "settings" - "Header Footer Settings" New Features (version 1.4): we support now exclude individual pages form printing the header and footer scripts, this is supported by 2 checkboxes in each page\post buy check it the script will not be display on this page we added support to limit the script only for certain post type \ page if you like it \ use it - please rate us. usage: You need to paste the code with the script tag, for example: you js code | ||||||||
Javascript Per Page | 1.0.1 | 74 | 3 | 11323 |
| |||
Add custom javascript, IE specific javascript and even iOS specific javascript, to any page or post on your Wordpress website. Javascript Per Page adds a custom javascript file to all of the pages on your WordPress install with options to check for the existence of the javascript file before adding. Allows for adding IE specific javascript all the way back to version 6. Just enable in the plugin options and add the javascript files to your theme directory. Javascript Per Page also allows adding of an iOS specific javascript file. Simply enable in the plugin options and add the javascript to your theme directory. This plugin supports use with custom post types, category, and tag pages. | ||||||||
Very Simple Meta Description | 3.6 | 80 | 4 | 18620 |
| |||
This is a lightweight plugin to add a meta description to your WordPress website. About This is a very simple plugin to add meta description in the header of your WordPress website. Search engines such as Google and Bing use the meta description in their search results. You can set a custom post or page excerpt that will be used as meta description for that post or page. This plugin supports the required Open Graph and Twitter Cards tags. For more info please take a look at the Installation section. Question? Please take a look at the Installation and FAQ section. Translation Not included but plugin supports WordPress language packs. More translations are very welcome! Credits Without the WordPress codex and help from the WordPress community I was not able to develop this plugin, so: thank you! Enjoy! | ||||||||
Head and Footer Scripts Inserter | 3.3 | 100 | 3 | 31074 |
| |||
Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without An easy to use and lightweight WordPress plugin that gives you the ability to easily insert custom scripts (HTML, JavaScript, and CSS) in the head or/and footer section of your website. No need anymore to editing a files of your theme or plugins in order to add custom scripts (HTML with JavaScript, CSS and else). You can add they on plugin's page. Just add your scripts in the field on the plugin's page and this plugin will do the rest for you. It adds required scripts to the head section of your website automatically, without changing any of your themes file and without slowing down your website. It's really useful in case of any theme update, because your scripts would never be lost! Your scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins. Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Head and Footer Scripts Inserter" is a simple but effective SEO plugin. Features Light weight User-friendly No configuration required Inserts scripts in beginning or/and end of tag Inserts scripts in beginning or/and end of footer Ready for translation (POT file included) Translation Please keep in mind that not all translations are up to date. You are welcome to contribute! English (default) Russian Polish Supported HTML JavaScript (in HTML tag) CSS (in HTML tag) Contribution Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to: Donate to support ongoing development. Your contribution would be greatly appreciated. Rate and Review this plugin. Share with me or view the GitHub Repo if you have any ideas or suggestions to make this plugin better. | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Header and Footer Scripts | 1.3.4 | 84 | 6 | 73347 |
| |||
Requires PHP: 5.6 Header and Footer Scripts plugin allows you to add scripts to WordPress site's and just before closing tag. Many WordPress Themes do not have any options to insert header and footer scripts in your site <head> or <footer>. It helps you to keep yourself from theme lock. But, sometimes it also causes some pain for many. like where should I insert Google Analytics code (or any other web-analytics codes). This plugin is one stop and lightweight solution for that. With this "Header and Footer Script" plugin will be able to inject HTML tags, JS and CSS codes to <head> and <footer> easily. Benefits of the plugin: You will be able to insert Google Analytics or other Web-analytics code, meta-informations, CSS and JS codes to <head> You will be able to insert html and/or JavaScript codes to footer of your site. Good place for Clicky Web Analytics, Twitter, Facebook or any other social media script. Easily insert codes to single post and page headers, in addition to default codes. Please note, If the plugin is not working check for wp_head and wp_footer hooks. more information or ask for support. Important Links Latest FAQs and Help Article GitHub Repo Support Donate PS: For any troubleshooting ask your question in the BlogSynthesis Forums. I can't check WordPress forums regularly. | ||||||||
JSON SubCategory (8 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Mobile APP Dashboard Custom Fields Json API | 1.0 | 100 | 2 | 708 |
| |||
Plugin for provide Configuration page or Dashboard for your mobile APP so you can add custom fields as many as you want and get data in Jason API. Plugin for provide Configuration page or Dashboard for your mobile APP so you can add custom fields as many as you want and get data in Jason API. you just need to install and activate the plugin and add your data in custom fields tab under settings menu after that you need to create a post with jason API type and hit on front end of your post you get jason data of your fields. | ||||||||
JSON-LD for Article | 0.1 | 90 | 4 | 2349 |
| |||
JSON-LD for Article is simply the easiest solution to add valid schema.org microdata as a JSON-LD script to your blog posts or articles. Search engines such as Google are using structured data markup in many ways—for example, to create rich snippets in search results. Search results with rich snippets will improve your click through rates and increase the number of visitors on your website. It has been a tedious task to add the complicated Schema.org markup to your website - sometimes it wasn’t even possible due to technical constraints. Now, thanks to JSON-LD, almost any website can enjoy the benefits of structured data. For WordPress users it’s even easier thanks to this plugin. JSON-LD for Article is simply the easiest solution to create valid schema.org microdata markup on your Wordpress site automatically from your web content and its metadata. All you need to do is install and activate the plugin, and it will generate JSON-LD markup of your posts that Google and other search engines can use for rich snippets using the schema.org for articles. Some WP themes include traditional schema.org markup embedded in the html code the theme produces. If you are using one of these themes, this plugin is probably not necessary. If the markup produced by the theme contradicts the data specified in the JSON-LD, the added information might be not be helpful at all. Thus you should check the markup provided by the theme before adding possibly unnecessary JSON-LD to your site. On the other hand, if you use a custom theme, it is easier to use the functionality provided by the plugin than to invent the wheel again and add the markup in html. Very often, this leads to html code that is difficult to read and is not valid structural markup according to Google’s validator. Our plugin: Helps your site to earn rich snippets in Google’s SERP. Does not depend on other plugins or external code. Is simple to install: plug-and-play, no need to configure anything. | ||||||||
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. | ||||||||
JSON API Auth | 1.8 | 94 | 10 | 12237 |
| |||
Requires PHP: 5.3 Extends the JSON API Plugin for RESTful user authentication JSON API Auth extends the JSON API Plugin to allow RESTful user authentication. Features include: Generate Auth Cookie for user authentication Validate Auth Cookie Get Current User Info For documentation: See 'Other Notes' tab above for usage examples. Credits: http://www.parorrey.com/solutions/json-api-auth/ | ||||||||
WPSSO Schema JSON-LD Markup - Schema / Structured Data / Rich Snippet Markup | 1.11.6-1 | 88 | 7 | 11528 |
| |||
Google Rich Results and Structured Data for Articles, Carousels, Events, FAQ Pages, How-Tos, Local SEO, Products, Recipes, Ratings, Reviews, and More. Features accurate and comprehensive Schema / Structured Data markup — including images, videos, organization (publisher), person (author and co-authors), product variations, product ratings, recipe details, event information, collection pages, and much more. Override missing or innaccurate Schema markup in your theme templates. Select a another Schema than BlogPosting for AMP webpages. Include all WooCommerce product images and variations the Schema Product markup! (Pro version) Provides unique Schema markup and optimization features for Pinterest — Pinterest does not (currently) read the standard JSON-LD format. WPSSO and its WPSSO JSON extension include special provisions to provide Schema meta tags for Pinterest, along with methods to avoid conflicts between incompatible Pinterest and Facebook Open Graph meta tags. Prerequisite — WPSSO Schema JSON-LD Markup (WPSSO JSON) is an extension for the WordPress Social Sharing Optimization (WPSSO) plugin, which automatically creates complete and accurate meta tags and Schema markup for Social Sharing Optimization (SSO) and Search Engine Optimization (SEO). Quick List of Features WPSSO JSON Free / Basic Features Extends the features of WPSSO Free or Pro. Includes support for Automattic's Accelerated Mobile Pages (AMP) plugin. Includes contributor markup for Co-Authors Plus authors and guest authors (requires WPSSO Pro to retrieve co-author information). Adds an additional "Schema Markup" settings page to the SSO menu: Website Alternate Name Organization Logo Image URL Organization Banner (600x60) URL Maximum Images to Include Schema Image Dimensions Maximum Description Length Author / Person Name Format Item Type for Blog Home Page Item Type for Static Home Page Item Type for Archive Page Item Type for User / Author Page Item Type for Search Results Page Item Type by Post Type (for Posts, Pages, Media, and custom post types). Default Reviewed Item Type Recipe Ingredients Custom Field Adds Schema / Structured Data JSON-LD markup for: Schema Type schema.org/BlogPosting Schema Type schema.org/WebPage Quick List of Features (Continued) WPSSO JSON Pro / Power-User Features Extends the features of WPSSO Pro. Adds additional custom options in the Social Settings metabox: Schema Item Name (aka Title) Schema Description Main Entity of Page Schema Item Type Article Publisher Article Headline Event Organizer Event Performer Recipe Preparation Time Recipe Cooking Time Recipe Total Time Recipe Total Calories Recipe Quantity Recipe Ingredients Reviewed Item Type Reviewed Item URL Reviewed Item Rating Adds Schema / Structured Data JSON-LD markup for: Schema Type schema.org/CreativeWork Schema Type schema.org/Article Schema Type schema.org/BlogPosting Schema Type schema.org/NewsArticle Schema Type schema.org/Report Schema Type schema.org/ScholarlyArticle Schema Type schema.org/SocialMediaPosting Schema Type schema.org/TechArticle Schema Type schema.org/Book Schema Type schema.org/Blog (includes hasPart property with posts) Schema Type schema.org/Recipe Schema Type schema.org/Review Schema Type schema.org/WebPage Schema Type schema.org/AboutPage Schema Type schema.org/CheckoutPage Schema Type schema.org/CollectionPage (includes hasPart property with posts) Schema Type schema.org/ContactPage Schema Type schema.org/ItemPage Schema Type schema.org/ProfilePage (includes hasPart property with posts) Schema Type schema.org/QAPage Schema Type schema.org/SearchResultsPage (includes hasPart property with posts) Schema Type schema.org/WebSite Schema Type schema.org/Event Schema Type schema.org/BusinessEvent Schema Type schema.org/ChildrensEvent Schema Type schema.org/DanceEvent Schema Type schema.org/DeliveryEvent Schema Type schema.org/EducationEvent Schema Type schema.org/ExhibitionEvent Schema Type schema.org/Festival Schema Type schema.org/FoodEvent Schema Type schema.org/LiteraryEvent Schema Type schema.org/MusicEvent Schema Type schema.org/PublicationEvent Schema Type schema.org/SaleEvent Schema Type schema.org/ScreeningEvent Schema Type schema.org/SocialEvent Schema Type schema.org/SportsEvent Schema Type schema.org/TheaterEvent Schema Type schema.org/VisualArtsEvent Schema Type schema.org/Organization Schema Type schema.org/Airline Schema Type schema.org/Corporation Schema Type schema.org/EducationalOrganization Schema Type schema.org/CollegeOrUniversity Schema Type schema.org/ElementarySchool Schema Type schema.org/MiddleSchool Schema Type schema.org/Preschool Schema Type schema.org/School Schema Type schema.org/GovernmentOrganization Schema Type schema.org/MedicalOrganization Schema Type schema.org/Dentist Schema Type schema.org/Hospital Schema Type schema.org/Pharmacy Schema Type schema.org/Physician Schema Type schema.org/NGO Schema Type schema.org/PerformingGroup Schema Type schema.org/DanceGroup Schema Type schema.org/MusicGroup Schema Type schema.org/PerformingGroup Schema Type schema.org/TheaterGroup Schema Type schema.org/SportsOrganization Schema Type schema.org/SportsTeam Schema Type schema.org/Person Schema Type schema.org/Place (WPSSO PLM extension required to manage Place / Location information) Schema Type schema.org/AdministrativeArea Schema Type schema.org/CivicStructure Schema Type schema.org/Landform Schema Type schema.org/LandmarksOrHistoricalBuildings Schema Type schema.org/LocalBusiness Schema Type schema.org/AnimalShelter Schema Type schema.org/AutomotiveBusiness Schema Type schema.org/ChildCare Schema Type schema.org/DryCleaningOrLaundry Schema Type schema.org/EmergencyService Schema Type schema.org/EmploymentAgency Schema Type schema.org/EntertainmentBusiness Schema Type schema.org/FinancialService Schema Type schema.org/FoodEstablishment Schema Type schema.org/Bakery Schema Type schema.org/BarOrPub Schema Type schema.org/Brewery Schema Type schema.org/CafeOrCoffeeShop Schema Type schema.org/FastFoodRestaurant Schema Type schema.org/IceCreamShop Schema Type schema.org/Restaurant Schema Type schema.org/Winery Schema Type schema.org/GovernmentOffice Schema Type schema.org/HealthAndBeautyBusiness Schema Type schema.org/HomeAndConstructionBusiness Schema Type schema.org/GeneralContractor Schema Type schema.org/HVACBusiness Schema Type schema.org/HousePainter Schema Type schema.org/Locksmith Schema Type schema.org/MovingCompany Schema Type schema.org/Plumber Schema Type schema.org/RoofingContractor Schema Type schema.org/InternetCafe Schema Type schema.org/LegalService Schema Type schema.org/Library Schema Type schema.org/LodgingBusiness Schema Type schema.org/MedicalOrganization Schema Type schema.org/ProfessionalService Schema Type schema.org/RadioStation Schema Type schema.org/RealEstateAgent Schema Type schema.org/RecyclingCenter Schema Type schema.org/SelfStorage Schema Type schema.org/ShoppingCenter Schema Type schema.org/SportsActivityLocation Schema Type schema.org/Store Schema Type schema.org/AutoPartsStore Schema Type schema.org/BikeStore Schema Type schema.org/BookStore Schema Type schema.org/ClothingStore Schema Type schema.org/ComputerStore Schema Type schema.org/ConvenienceStore Schema Type schema.org/DepartmentStore Schema Type schema.org/ElectronicsStore Schema Type schema.org/Florist Schema Type schema.org/FurnitureStore Schema Type schema.org/GardenStore Schema Type schema.org/GroceryStore Schema Type schema.org/HardwareStore Schema Type schema.org/HobbyShop Schema Type schema.org/HomeGoodsStore Schema Type schema.org/JewelryStore Schema Type schema.org/LiquorStore Schema Type schema.org/MensClothingStore Schema Type schema.org/MobilePhoneStore Schema Type schema.org/MovieRentalStore Schema Type schema.org/MusicStore Schema Type schema.org/OfficeEquipmentStore Schema Type schema.org/OutletStore Schema Type schema.org/PawnShop Schema Type schema.org/PetStore Schema Type schema.org/ShoeStore Schema Type schema.org/SportingGoodsStore Schema Type schema.org/TireShop Schema Type schema.org/ToyStore Schema Type schema.org/WholesaleStore Schema Type schema.org/TelevisionStation Schema Type schema.org/TouristInformationCenter Schema Type schema.org/TravelAgency Schema Type schema.org/Residence Schema Type schema.org/TouristAttraction Schema Type schema.org/Product (supported e-Commerce plugin required) Schema Type auto.schema.org/BusOrCoach Schema Type auto.schema.org/Car Schema Type auto.schema.org/Motorcycle Schema Type auto.schema.org/MotorizedBicycle Schema Type auto.schema.org/Vehicle Markup Examples Markup Example for a Restaurant using the WPSSO PLM extension to manage the Place / Location information (address, geo coordinates, business hours – daily and seasonal, restaurant menu URL, and accepts reservation values). Markup Example for a Tech Article published on surniaulula.com. Markup Example for a WooCommerce Product, including its name, description, images, videos, sku, price, availability, ratings, colors, category, width, height, weight, all product variations, and much more. Extends the WPSSO Plugin The WordPress Social Sharing Optimization (WPSSO) plugin is required to use the WPSSO JSON extension. Use the Free version of WPSSO JSON with both the Free and Pro versions of WPSSO. The WPSSO JSON Pro extension (along with all WPSSO Pro extensions) requires the WPSSO Pro plugin as well. Purchase the WPSSO Schema JSON-LD Markup (WPSSO JSON) Pro extension (includes a No Risk 30 Day Refund Policy). | ||||||||
JSON Content Importer | 1.2.17 | 100 | 13 | 22167 |
| |||
Plugin to import, cache and display a JSON-Feed / JSON-API: Connect your Wordpress to an API / Webservice and display live JSON-data. Display live data from a JSON-feed / API on your wordpress-site! This is the answer when you ask: Why Do I Need this Plugin on my Website? JSON Content Importer - API- and Webservice-Connector - Powerful and Simple JSON-Import Plugin: Use a template engine to display the data of an JSON-Feed. Define the url of the JSON-Feed, a template for it and other options like number of displayed items, cachetime etc.. The template engine inserts the JSON-data in the template provided in the wordpress-shortcode inside a page - whereby some extras like urlencoding can be invoked. How to start and help Step 1 to 9 using this plugin, plus: examples and the PRO-Version. Simple Example of wordpress-shortcode '[jsoncontentimporter url="http://...json" numberofdisplayeditems="number: how many items of level 1 should be displayed? display all: leave empty or set -1" urlgettimeout="number: who many seconds for loading url till timeout?" basenode="starting point of datasets, the base-node in the JSON-Feed where the data is" oneofthesewordsmustbein="default empty, if not empty keywords spearated by ','. At least one of these keywords must be in the created text (here: text=code without html-tags)" oneofthesewordsmustbeindepth="default: 1, number: where in the JSON-tree oneofthesewordsmustbein must be?" ] Any HTML-Code plus "basenode"-datafields wrapped in "{}" {subloop:"basenode_subloop":"number of subloop-datasets to be displayed"} Any HTML-Code plus "basenode_subloop"-datafields wrapped in "{}". If JSON-data is HTML add "html" flag like "{fieldname:html}" {/subloop:"basenode_subloop"} [/jsoncontentimporter]' templates like "{subloop-array:AAAA:10}{text}{subloop:AAAA.image:10}{id}{/subloop:AAAA.image}{/subloop-array:AAAA}" are possible: one is the recursive usage of "subloop-array" and "subloop". the other is "{subloop:AAAA.image:10}" where "AAAA.image" is the path to an object. This is fine for some JSON-data. Some special add-ons for datafields "{street:purejsondata}": Default-display of a datafield is NOT HTML, but HTML-Tags are converted : use this to use really the pure data from the JSON-Feed "{street:html}": Default-display of a datafield is NOT HTML: "<" etc. are converted to "&,lt;". Add "html" to display the HTML-Code as Code. "{street:htmlAndLinefeed2htmlLinefeed}": Same as "{street:html}" plus "\n"-Linefeeds are converted to HTML-Linebreak "{street:ifNotEmptyAddRight:,}": If datafield "street" is not empty, add "," right of datafield-value. allowed chars are: "a-zA-Z0-9,;_-:<>/ " "{street:html,ifNotEmptyAddRight:extratext}": you can combine "html" and "ifNotEmptyAdd..." like this "{street:ifNotEmptyAdd:,}": same as "ifNotEmptyAddRight" "{street:ifNotEmptyAddLeft:,}": If datafield "street" is not empty, add "," left of datafield-value. allowed chars are: "a-zA-Z0-9,;_-:<>/ " "{locationname:urlencode}": Insert the php-urlencoded value of the datafield "locationname". Needed when building URLs "{locationname:unique}": only display the first instance of a datafield. Needed when JSON delivers data more than once JSON Content Importer PRO This free version of "JSON Content Importer" can put together many JSON-Feeds and is flexible with it's template-engine. But sometimes you might need more: using as Widget application building by creating a searchform and connect it to a JSON-API in the background: pass GET-Variables to use a dynamic JSON-Feed-URL ("talk to API / webservice") usage on multisite installations store Templates independent of pages more Shortcode-Parameters executing Shortcodes inside a template and more features... If the free version comes to your limit, I'm looking forward that you COMPARE PRO and FREE of the JSON Content Importer. | ||||||||
JSON API User | 2.5 | 86 | 12 | 24131 |
| |||
Requires PHP: 5.3 Extends the JSON API Plugin to allow RESTful user registration, authentication and many other User Meta, BuddyPress functions. A JSON API User extends the JSON API Plugin with a new Controller to allow RESTful user registration, authentication, password reset, RESTful Facebook Login, RESTful User Meta and BuddyPress xProfile get and update methods. This plugin is for WordPress/Mobile app developers who want to use WordPress as mobile app data backend. Features include: Generate Auth Cookie for user authentication Validate Auth Cookie RESTful User Registration RESTful Facebook Login/Registration with valid access_token RESTful BuddyPress xProfile fields update Get User Meta and xProfile fields Update User Meta and xProfile fields Delete User Meta Password Reset Get Avatar Get User Info Post Comment The plugin was created for mobile apps integration with the web app using WordPress as backend for all the data. WordPress helped in putting together the web app quickly and then Mobile iOS and Android apps were integrated via this plugin. There were some app specific customized methods which are not included but rest have been made generic for community usage. My other JSON API Auth plugin has also been integrated with this from version 1.1. since most methods required user authentication via cookie for data update. You can also write your own methods by copying the existing methods if you need any user related features. Hope this will help some. Pro Version - JSON API User Plus A pro version of this plugin, JSON API User Plus, is available here http://www.parorrey.com/solutions/json-api-user-plus/ that supports BuddyPress Messages component, BuddyPress avatar upload and other BuddyPress related functions to integrate BuddyPress features in your mobile app via REST. 'JSON API User Plus' includes API key which protects and restricts the endpoint calls. This key can be updated from Settings > User Plus options page. Your app must include this key with every call to get the data from REST API. Please see documentation for calling endpoints examples for 'JSON API User Plus'. JSON API User Plus features include: Generate Auth Cookie for user authentication Validate Auth Cookie RESTful User Registration RESTful Facebook Login/Registration with valid access_token RESTful BuddyPress xProfile fields update Get User Meta and xProfile fields Update User Meta and xProfile fields Delete User Meta Password Reset Get/Upload Avatar Get User Info Post Comment Add Post, Update Post, Delete Post Add/Edit/Delete Custom Post Type, Custom Fields Search User BuddyPress Activities BuddyPress Members BuddyPress Friends BuddyPress Notifications BuddyPress Settings & many more | ||||||||
JSON REST API (WP API) Categories and Tags | 1.01 | 100 | 2 | 4799 |
| |||
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=58CC2KYQR64XW Allows tags and categories to be set when creat The JSON REST API (WP API) as of version 1.1.1 does not allow you to specify tags or categories when createing or editing posts (it appears this will be added in a later release). This plugin addresses that problem by allowing categories and tags to be passed in the JSON data when creating/editing posts. An example JSON post that can be made using the JSON REST API (WP API) (described in detail here) to create a post in Wordpress would be: {"title":"Hello World!","content_raw":"Content","excerpt_raw":"Excerpt"} In order to add tags/categories you would add an array called "x-categories" and/or and array called "x-tags" to the JSON data, for example: {"title":"Hello World!","content_raw":"Content","excerpt_raw":"Excerpt","x-tags":["tag1","tag2"],"x-categories":["General","15"]} The example creates a post and assignes the tags "tag1" and "tag2" as well as placing the post in the category named "General" and category ID 15. The tags do not have to exist prior to use. Categories must exist prior to use and may be expressed and either category names or category IDs. The "x-" prefixes were used to avoid any conflicts in functionality with the JSON REST API (WP API) plugin. Because this plugin relies on the JSON parsing functionallity provided by the JSON REST API (WP API) plugin the alternate syntax using a multi-part-form body should also work. By default the tags/categories specified when editing a post will replace any tags/categories already assigned to the post. This behavior can be changed so that tags/categories are appened instead, simply open the json-rest-api-wp-api-categories-and-tags folder in the Wordpress plugins folder and edit json-rest-api-patch.php. On line 12 of the file is a variable that should be set to true in order to have tags/categories appended instead of replaced. | ||||||||
jQuery SubCategory (6 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
WP jQuery qTip | 1.9.0 | 94 | 3 | 2120 |
| |||
WP jQuery qTip is a plugin that uses qTip v1.0 and v2.0 to display nice looking, user friendly tooltips. Colors and position are easily changeable. WP jQuery qTip is a light-weight plugin that uses Craig Thompson's qTip jQuery plugin to display nice looking, user friendly tooltips. It comes with a handy configuration page, where you can easily change the color of the tooltips and the position. Please note that Craig Thompson is the creator of the qTip plugin. WP jQUery qTip is a rewrite of JR qTip for WordPress by Jacob Ras to be made compatible with WordPress 3.x. Note: Version 0.9.0+ requires a minimum of WordPress 3.3. If you are running a version less than that, please upgrade your WordPress install before installing or upgrading. | ||||||||
WP jQuery Plus | 1.1.2 | 100 | 8 | 19873 |
| |||
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EEMPDX7SN4RFW Loads jQuery from a CDN using the exact version a Get the speed benefits of loading jQuery (and jQuery Migrate) from a CDN while providing a fallback to the local version in the event the CDN is down. It also uses the same version as WordPress does - automagically, so you're never out of sync. Loading jQuery from cdnjs By default, jQuery is loaded from Google with jQuery Migrate being loaded from cdnjs. If you'd like to also load jQuery from cdnjs, add the following to wp-config.php define('WPJP_USE_CDNJS', true); | ||||||||
jQuery Vertical Scroller | 2.9.1 | 96 | 11 | 29933 |
| |||
Requires PHP: 5.2.4 Use jQuery Vertical Scroller plugin to display posts as a vertical scroll in a widget, post or page. Supports multiple instance jQuery Vertical Scroller plugin is our attempt to create a easy to use widget for adding vertical scrolling to your wordpress site. jQuery vertical Scroller is a versatile vertical scroller that allows you to scroll any post type or page. You can scroll anything from your recent posts to custom posts you might have created for other plugins. The scroll is flexible to allow you to scroll in 2 vertical directions. Top-to-Bottom or Bottom-to-Top. Do you need more than one scroller? No problem with this plug-in. All you need to do is drag-&-drop another copy of the scroller into your widget area and set it up. No need to leave the widgets screen. Want to see a working copy before deciding? Just scroll on over to our website to see this plugin at work: http://sirisgraphics.com Looking for Gapless Scroller We now have a premium scroller that allows you to scroll data on your site. Please visit out website to download Siris Scroller, our new gapless scroller and more... Widget Widget Features Easy to install and configure. It scrolls vertically so you can display more posts. You can scroll top-to-bottom or bottom-to-top. You can hide the title of posts and pages being scrolled. You can customize the height and width of the widget. You can customize the type of recent posts to display. You can customize the category of posts to display. You can customize the number of recent posts to display. You can customize to display either the content, excerpt or just the heading. You can customize to display the post date in various date formats. Supports custom 'read more...' text so you can add your own custom text Localization jQuery Vertical Slider supports full localization. Just place your .mo files in the languages folder and set your language code in the wp-config.php file. Translation Files included: Italian by Vamsi Pulavarthi (Google Translate) Serbo-Croatian by Borisa Djuraskovic Shortcode Usage: [sgvscroller postcount="5" sortby="post_date" sortorder="DESC" category="1" posttype="post" width="250px" height="200px" startfrom="bottom" includecontent="excerpt" showdate="true" showdateformat="F, Y"] postcount (optional, default value = 5): Sets the number of posts displayed by the scroller. Usage: postcount="5". sortby (optional, default value = post_date): Set the Order By option for getting posts. Valid Values: 'none' - No order (available with Version 2.8). 'ID' - Order by post id. Note the capitalization. 'author' - Order by author. 'title' - Order by title. 'date' - Order by date. 'modified' - Order by last modified date. 'parent' - Order by post/page parent id. 'rand' - Random order. 'comment_count' - Order by number of comments (available with Version 2.9). Usage: sortby="post_date" sortorder (optional, default value = DESC): Sorts the posts in ascending or descending order of post date. Usage: sortorder="ASC" or "DESC" category (optional, default value = 1): Sets the category to be displayed by the scroller. Usage: category="1". posttype (optional, default value = post): Sets the category to be displayed by the scroller. You can either use 'post', for normal posts. For scrolling custom post types, replace it with the custom post type Usage: posttype="post". width(optional, default value = 1): Sets the width of the scroller. Usage: width="250px". height (optional, default value = 200px): Sets the height of the scroller. Usage: height="200px". startfrom (optional, default value = bottom): Sets the direction of scroll for the scroller. Usage: startfrom="bottom". Options: ‘bottom’ or ‘top’. includecontent (optional, default value = none): Allows you to display excerpt, if desired. Usage: includecontent="excerpt". Optons: 'content', 'excerpt' or 'none' showdate (optional, default value = false): Allows you to display the post date for each post displayed in the scroller. Usage: showdate="true". Options: 'true' or 'false' showdateformat (optional, default value = 'F, Y'): Allows you to configure format in which the post date for each post is displayed in the scroller. Usage: showdateformat="F, Y". You can use any valid format described in the Date Formats page Shortcode Features Easy to install and configure. It scrolls vertically so you can display more posts. You can scroll top-to-bottom or bottom-to-top. You can hide the title of posts and pages being scrolled. You can customize the height and width of the widget. You can customize the type of recent posts to display. You can customize the category of posts to display. You can customize the number of recent posts to display. You can customize to display either the excerpt or just the heading. You can customize to display the post date in various [date formats](http://codex.wordpress.org/Formatting_Date_and_Time). Displays 'read more...' text at bottom of scroller Support Contact us at our website for any kind of support. We promise to get back to you as soon as possible. Like our plugin? Please rate us and send us a comment so we can make the plugin better for you. | ||||||||
jQuery Smooth Scroll | 1.4.1 | 92 | 41 | 114366 |
| |||
Requires PHP: 5.6 Activate the plugin for smooth scrolling and smooth "back to top" feature. This plugin makes your anchor text to smooth scroll adds a smooth scroll to top feature/link in the lower-right corner of long pages. Appears after a set scrolling point and hides after scrolling near the top. This plugin is based on cudazi's plugin "Scroll to Top", and you may use this plugin if you need "Scroll to top" feature. Features include: Smooth Scrolling for all anchor texts. A back to top button on right hand side. No unnecessary menu item in WordPress Dashboard. Easy customization with some css/js code edit. All CSS and JS files are compressed to score high in Google Page Speed score. Now change easing effect with the help of jQueruyUI Free Support available here Important Links: Docs Support Github Repo Donate WordPress Tips BTW, The plugin might not be now compatible with some plugins. If there are some specific tabs or anchor links we may exclude them mannually. Ask in support forums for help. Please report compatibility issues here or on the GitHub repository. You are more than welcome to contribute towards the development of the plugin. For any support ask here: http://www.blogsynthesis.com/support/. However, I have checked the plugin is working fine on Firefox, Chrome, IE and Safari for Windows. | ||||||||
jQuery UI Widgets | 0.38 | 88 | 19 | 78342 |
| |||
Simple, flexible, and powerful way to add jQuery UI widgets to your site posts, pages, or widgets. Works right out of the box! So, just how easy is it? Install and activate the Plugin. Add your jQuery code to the 'Custom jQuery Code' text box in Plugin settings. Add the corresponding HTML markup to a post, page, or or text widget, That's it!! You can easily tweak further settings such as the jQuery UI theme used to render the jQuery widgets, choose which scripts are added to your site, and overriding default CSS. All standard pre-defined jQuery themes are supported, or you can upload your own custom theme built with the jQuery ThemeRoller. See the FAQ page for detailed instructions on uploading your own custom theme. No need to mess about with cryptic shortcodes! Just enter clean, valid, HTML markup and the Plugin does the rest, adding all the necessary jQuery scripts and styles for you! Note: This Plugin uses the Google CDN to load the CSS for the official jQuery UI themes. Please rate this Plugin if you find it useful. It only takes a moment but it's very much appreciated. 🙂 We're proud to announce that jQuery UI Widgets Pro is now available! Upgrade today for great features such as syntax highlighted code editors and dozens of pre-made jQuery UI templates ready to use! Also, you can now add jQuery UI (and custom JavaScript and CSS code) to specific pages for the first time via the page/post editor. Take complete control over which pages have jQuery UI scripts added. You can choose to add to ALL pages or ONLY to the ones you want. It's so simple! Checkout the screenshots, or click here for more details. See our WordPress plugin site for more top plugins! | ||||||||
jQuery Updater | 3.1.1 | 92 | 33 | 471554 |
| |||
Requires PHP: 5.6 This plugin updates jQuery to the latest stable version on your website. This plugin updates jQuery to the latest official stable version, which is most likely not available within the latest stable release of WordPress. Since jQuery 2+ was used in this plugin, making jQuery 1.x obsolete, jQuery Migrate is also included. No files are replaced, therefore deactivation of this plugin returns your site to it`s original state. Warning If you are not familiar with beta testing, bugfixing, javascript or running bleeding edge software it`s not recommended. I will not provide help on JavaScript and jQuery! Reporting problems Please post bug reports and request for help on WordPress.org Support Forums. I will only provide help on issues caused by the plugin, not on JavaScript and jQuery related matters! Please report feature requests and code changes on GitHub Issues page If you run into any bugs, turning this plugin off will fully deactivate everything. Work in Progress Options screen to enable/disable Option to choose a specific jQuery version Automatic cache flushing For more information on the development visit the plugins GitHub | ||||||||
Unsorted Plugins (8 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
jQuery Post Splitter | 2.4 | 90 | 24 | 9671 |
| |||
Requires PHP: 7.0 This plugin will split your post and pages into multiple pages with a tag. A button to split the pages and posts is available in t jQuery Post Splitter is compatible with almost all themes and it can be implemented in 4 different ways from which you might will require one. For user friendliness, this plugin come up with a button "Split Page" and easy usage within the text editor. It is light weight and comparatively optimized so it will not interrupt your scripts uselessly. Wordpress has an excellent, but little known, feature for splitting up long posts into multiple pages. However, a growing trend among major news and blog sites is instead to split up posts into dynamically loading sliders. While there are many slider plugins available for Wordpress, none of them quite tackles this functionality. That's where the jQuery Post Splitter comes in: it takes normal multi-page posts from Wordpress and replaces them with jQuery transition, ajax and page-refresh methods. What the slider does: Provides an awesome functionality to combine many posts/pages into one with the shortcodes. Example: [JPS_CHUNK id="62" type="title"] Replaces Wordpress' built-in post pagination funtionality with jQuery, ajax-based carousel and page-refresh method. Uses hash based URLs for easy direct linking to specific slides. This also preserves the functionality of the browser's Back button. Automatically adds slide navigation and a slide counter (e.g. '1 of 7') to sliders according to the preferences you set. Adds the 'Insert Page Break' button to the TinyMCE post editor so that you can easily split your content into multiple pages/slides. Provides an optional stylesheet for (very) basic styling of the slider navigation. Optionally allows infinite looping of slides. Optionally provides a link to view all slides on a single page. Optionally allows for scrolling back to top when each slide loads. For a complete tutorials, join me here | ||||||||
WP Scripts & Styles Optimizer | 0.4.1 | 86 | 6 | 2720 |
| |||
Improve your site-rendering speed by customizing all of your JavaScript- and CSS-files. Deactivate, set conditions or change positioning of files Optimization of included JavaScript- and CSS-files can be a very important thing, if you want a faster site. Many WordPress plugins comes with multiple third-party and/or own JavaScript-files that are then often be included on every page of your site. In worst cases you have more than one of the same file included on your site. That slows down your site! But also "Render blocking" can easily slow down a website. Every external JavaScript- or CSS-file, that is included in the head of your site, blocks the site from rendering, until all files are completely processed. It's a common practice to move all these Scripts and Styles (except critical CSS) to the footer of your site, so the rendering is no longer blocked and your website loads faster. This is where WP Script Optimizer helps you! It makes it possible to control the output of every registered JavaScript or CSS-file. You can easily create rules for it or deactivate files completely. You can also move files to the footer of your site or vice versa. Check out the following lists for all currently avaiable and planned features. If you like this plugin, please upvote and comment. That would be really helpful. What you can currently do with WP Script Optimizer Get an overview of all frontend JavaScript and CSS files, that are included on your site (divided in categories) Control scripts and styles for as many single pages as you want or simply globally Change the positioning (Header/Footer) of specific JavaScripts / CSS or all at once Deactivate specific Javascripts or CSS-files completely, if not needed Easily create logical rules to control under which conditions a file is included or not (by use of wordpress's conditional tags) What you can do in future with WP Script Optimizer (planned, but not currently implemented) Minify and/or encrypt JavaScript- and CSS-files Include your own JavaScript/CSS files or JavaScript/CSS inline code, without do it manually through functions.php Add extra code to any registered JavaScript or CSS-file Concatenate two or more (or all) files of one type (JS or CSS) to speed up loading times Better overview of dependents and its dependencys ... feel free to make suggestions 🙂 IMPORTANT - Please read: This plugin can not decide if a file is needed or not needed in a specific situation. Your settings have the potential to break features and functions of your site. If that is the case, you can easily change or delete your settings via the admin panel, so everything will be like it was before. tl;dr: you have to know what you're doing 😉 If You had any problems with this plugin, please contact me, so i could fix it. Please don't write a negative review without gave me the chance to correct any issues. Thanks. | ||||||||
Quicksand Post Filter jQuery Plugin | 3.1.1 | 84 | 13 | 11578 |
| |||
Filter posts by their categories using the Quicksand jQuery filter plugin on any page. Filter posts by their categories using the Quicksand jQuery filter plugin on any page. You can select the categories you want to use in the admin area, choose to show post thumbs or titles. Works will with other jQuery effects such as Overlays and Lightboxes (not included in this plugin). Demo at http://www.developingtheweb.co.uk | ||||||||
WP jQuery DataTable | 1.0.2 | 84 | 5 | 7084 |
| |||
Features can be settings to meet your exact needs for your table implementations. like Paging,Ordering,search, etc... Plugin's settings will display 'WP jQuery DataTable' tab WP Jquery Data table plugin can help the WordPress website owner to insert table anywhere for displaying any information in tabular form, which will also have some cool features like option of selecting no. of pages, columns and pagination to be displayed in one page along with the search option to access the relevant data immediately from the long table, saving time and effort. This plugin is useful for exact needs for your table implementations. Short code is : [wp_jdt id="table id here"] You can apply this short code into page/post's editor or also can add into PHP file. Like <?php echo do_shortcode('[wp_jdt id="table id here"]');?> Features Show information about the table Allow table pagination, number of rows to display on page and pagination button display options. Show table entries options Allow table column ordering, define which column(s) the order and apply order (asc or desc. Allow table searching | ||||||||
Super Simple jQuery Parallax Background | 1.0 | 100 | 5 | 12444 |
| |||
For themes with background images, creates a parallax effect when scrolling. Super simple; no configuration. Just works. Super Simple jQuery Parallax Background enables a parallax effect with your theme's background image. Just set a background image in your theme's "customize" options (optionally setting it to "fixed" position) and activate this plugin. Done. "It just works." It relies on jQuery, which comes with WordPress and is probably built into your theme. Tested and works with the "Twenty Twelve" theme out of the box. Looks best with seamlessly-tiling background images. | ||||||||
Collapse-O-Matic | 1.7.3 | 100 | 168 | 483502 |
| |||
Requires PHP: 7.0 Remove clutter, save space: display and hide additional read more content in a SEO friendly way by wrapping content in an [expand Collapse-O-Matic adds an [expand title="trigger text"]hidden content[/expand] shortcode that will wrap any content, including other shortcodes, into a lovely jQuery expanding and collapsing div. A complete listing of shortcode options and attribute demos are available, as well as free community support. | ||||||||
T(-) Countdown | 2.3.15 | 92 | 74 | 367021 |
| |||
Requires PHP: 7.4 jQuery T(-) Countdown Widget will display a highly customizable, HTML5 countdown timer as a sidebar widget or in a post or page u T(-) Countdown will display a highly customizable HTML5 countdown timer as a sidebar widget or in a post or page using a shortcode. Perfect for informing one's website visitors of an upcoming event, such as a pending space voyage. Using Jedi Mind-tricks and CSS... but mostly CSS, the countdown timer is highly customizable for your viewing pleasure. A complete listing of shortcode options are available, as well as free community support. This plug-in was inspired by littlewebthings' CountDown jQuery plugin. Intergalactic planetary thanks to g2.de, siliconstudio.com and be.net/arturex for the included css styles. | ||||||||
WP jQuery Lightbox | 1.4.8 | 84 | 34 | 560602 |
| |||
Requires PHP: 5.2 A drop-in replacement for Lightbox 2 and similar plugins, shedding the bulk of Prototype and Scriptaculous. Improved for mobile de This plugin lets you keep the awesome Lightbox 2-functionality, but sheds the bulk of the Prototype Framework and Scriptaculous Effects Library. Warren Krewenki ported Lightbox to jQuery and this plugin is mostly a wrapper to his work: providing localization support, an admin panel for configuration, (optional) auto-boxing of your image links and support for WordPress galleries, including media library titles and captions. This version is also adjusted for mobile devices; Swipe gestures for flicking between images on touch devices Improved scaling maximizes use of screen space Live adjustment to the browser window and orientation of your phone See the plugin in action here: http://game.hgo.se/blog/motion-capture/ You can browse images with your keyboard: Arrows, P(revious)/N(ext) and X/C/ESC for close. If you value my plugins, there's several ways you can help me out; Help me out by Flattr-ing them or sign up to Microsoft OneDrive using my referral link - we both get 0.5GB extra for free! or sign up to RealPlayer Cloud using my referral link - we both get 1GB extra for free! get me anything from my Amazon whislisth (used items are OK!) Any help is greatly appreciated. Thanks! //Ulf Benjaminsson 1.4.8 (2015-12-31) Fixed translations not being loaded properly Fixed support for WordPress 4.4 1.4.7 (2015-09-21) Support for WordPress' new translation system. Updated translation for Portugese (Thanks: Pedro Mendonça) Added images and CSS for Portugese (Thanks: Pedro Mendonça) 1.4.6 (2015-03-20) "Download link" now correctly open a download dialogue instead of displaying the file Title, caption and all control elements can now be turned on / off individually Added support for custom style sheets (just copy original to your theme's style folder, and hack away) Restructured the HTML slightly, making styling easier Added specific CSS selectors for all elements Fixed animation speed setting being ignored Dropped quirks support for Internet Explorer 8 Removed help-text setting 1.4.5 (2013-06-09) Fit to screen edge on low rez displays (<500px) Added global setting to hide title & caption Reduced the amount of code running for each image shown Updated German translation (thanks Niko23) Fix: swipe direction Fix: slideshow now waits for images to display before starting timer. Fix: support for latest jQuery Fix: WordPress encoding wrong quote mark in captions, causing duplicate texts to display. 1.4.1 (2013-02-03) Added swipe gestures on touch devices Added slideshow Added support for multiple sets in one post (use: group with the gallery-shortcode) Added support for arbitrary Download links via the data-download-attribute Added support to pick text from the image ALT-attribute (if title is not available) Added translations: Norwegian Bokmål (thanks Ole Martin Kristiansen!) Fix regexp to deal with urls like http://www.gif.org. (Thanks Yannick Berker!) Fix changed common IDs to avoid collisions. (you'll have to update your CSS now!) (Hat tip; Pollmann Frederic) Fix better support of Infinite Scroll and similar Fix toggling visible state on unrelated object, embed and select nodes. mwolfe02 Fix leaky CSS on admin page Older changelogs moved here. | ||||||||