Posts related to: WP-Plugins

DropzoneJS & WordPress REST API

The plugin provides drag’n’drop file uploads and uses the wp rest api to upload the file. BTW, I've written a similar plugin that uses the WordPress AJAX API for file uploads. dropzonejs-wp-rest-api.php dropzonejs-wp-rest-api.js Installation Save dropzonejs-wp-rest-api.php in wp-content/plugins/dropzonejs-wp-rest-api/ Save dropzonejs-wp-rest-api.js in wp-content/plugins/dropzonejs-wp-rest-api/js/ Use After activating the plugin, add the [dropzonerest]...

DropzoneJS & WordPress AJAX API

  The plugin below demos how to integrate DropzoneJS with WordPress. BTW, I've written a similar plugin that uses the WP REST API for file upload. Install and activate the plugin, and use the `[dropzonejs]` shortcode to display the drop zone. Plugin customize_dropzonejs.js Here's a sample customize_dropzonejs.js, the options are documented...

A faster load_textdomain() for WordPress

Somehow, living outsite the 7 bit world of the US, we've missed that loading translations in WordPress is extreamly slow. Using the pluging below, you can improve your pageload by 40ms per request.

Metro Share Social Fonts

Metro Share Social Fonts is a lightweight add-on plugin to the Metro Share plugin. It will replace the default Metro Share social icons with icomoon social fonts   Lightweight CSS 2849 Bytes Fonts 9405 Bytes (icomoon.min.eot 1927B, icomoon.min.svg 2606B, icomoon.min.ttf 1880B and icomoon.woff 2992B) Prerequisite The Metro Share plugin. Download The...

TablePress Extension: Chartist

[gallery link="file" ids="4467,4468,4469,4470,4471,4472,4484,4494,4495"]   Using Chartist.js, this TablePress extension creates a responsive chart based on the data in a TablePress table. Usage Add the Shortcode [table-chart id=123 /] to a post or page to create a chart from the TablePress table 123. Optional parameters Show/hide chart line: showline=true (default: true)...

MEXP 23, a 23 Video extention for WordPress Media Explorer

This plugin is an extension for WordPress Media Explorer plugin that adds the 23 Video service. The extension allows user to search vidoes from 23 Video by text and tag. Development of this plugin is done on GitHub. Pull requests welcome. The plugin is also available from the WordPress plugin directory. Requirements and...

WordPress Twitter Widget Pro with mentions

Added support for GET statuses/mentions_timeline. The user can select, in the widget and shortcode, if he wants to display mentions or not (default = false). Mentions are merged into GET statuses/user_timeline and the merged timeline is sorted on created_at Here's some of changes [diff] - $response = $this->_wp_twitter_oauth->send_authed_request( 'statuses/user_timeline', 'GET', $parameters ); -...

WordPress - Hook into another hook

This is a hack, so if you know a better way of doing this please tell me. I wanted to add a filter to get_permalink, but only when get_permalink was called from a function in another plugin. Here's the function I wanted to hook into, it's part of the Digg...

WordPress Debug Bar, List Script & Style Dependencies

We all know that when we're add a script or style to WordPress, we should use wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer ) and wp_enqueue_style( $handle, $src, $deps, $ver, $media ) as in: <br /> function themeslug_enqueue_style() {<br /> wp_enqueue_style( 'core', 'style.css', array('twentytwelve-style') );<br /> }</p> <p>function themeslug_enqueue_script() {<br />...

MemCachier backend for the WP Object Cache

I have a test site at AppFog running WordPress. Being the geek I am, I had to test MemCachier (you'll find it in AppFog Add-Ons) MemCachier manages and scales clusters of memcache servers so you can focus on your app. Memcache is commonly used to speed up page load time and increase...

WordPress plugins and permalinks, how to use pretty links in your plugin

I'm working on a plugin, Read Offline, and one of the wishes was for url friendly links. After intensive googling, here's how I did it: "My Permalink Demo" plugin: <br /> &lt;?php<br /> /*<br /> Plugin Name: My Permalink Demo<br /> Plugin URI: https://soderlind.no/archives/2012/11/01/wordpress-plugins-and-permalinks-how-to-use-pretty-links-in-your-plugin/<br /> Description: Demo plugin to show...

Read Offline

[gallery link="file" columns="4" ids="4239,4537,4538,4539"] 19.1.2015: v 0.2.0 is avaliable at GitHub, please read the changelog prior to installing this version.  Issues Please report issues at https://github.com/soderlind/read-offline/issues To-do Widget Shortcode Footnotes apply_filters Reduce plugin size (aka remove fonts) PDF Font management Features Add download links to the top and bottom of a...

WordPress plugin: Remove "Comments are closed"

On posts where comments are closed, the plugin will remove the text 'Comments are closed.' The plugin supports any languages/text domains, and will remove the text from themes and plugins. Prerequisite: Since the plugin is filtering gettext, your theme/plugin must be localized. The plugin is available in the WordPress plugin...

Adding custom headers to the WordPress plugin directory

As an experiment, Matt has turned on custom headers for the plugin directory. How to add a custom header: Make a 772×250 pixel jpeg or png In the plugin root directory, create a new directory "assets": [shell light="true"]mkdir assets[/shell] After you've created the assets directory, you should have the following...

WordPress and WebPutty

I've written a simple plugin that allows you to modify your WordPress sites using WebPutty. So what's WebPutty? WebPutty is a simple CSS editing and hosting service. WebPutty gives you a syntax-highlighting CSS editor you can use from anywhere, the power of SCSS and Compass, a side-by-side preview pane, and...

Front-end editor in WordPress 3.3 is easy

Update: Things will have to change, TinyMCE 4.0 is in core: New UI and UI API. New theme. Revamped events system/API. Better code quality, readability and build process. Lots of (inline) documentation. And generally many improvements everywhere. TinyMCE 4.0 Highlights Demos Thanks to sushkov, WordPress 3.4 adds support for DFW...

Fade away and hide the WordPress 3.1 Admin Bar

Instead of disabling the WordPress 3.1 Admin Bar, use this plugin, based on Codrops Fixed Fade Out Menu, to fade away the WordPress Admin Bar when you scroll down the page. The plugin is availeable in the WordPress Plugin Directory Changelog: 1.0.1 - Thanks to @TheFrosty, added is_admin_bar_showing() 1.0.0 -...

SimpleModal Janrain Engage

Images: Login Register Welcome back SI Captcha SimpleModal Janrain Engage adds Janrain Engage (aka rpx) to your SimpleModal Login Download the plugin from the WordPress Plugin Directory If you like and use the plugin, please rate it (if you feel it deserves less than 5 stars, please tell me why in the comment...

[lorem] shortcode

Images: Shortcode, Nested shortcode, Example, Lightbox I needed dummy text for a blog I'm working on, and since I like to code I wrote a simple plugin I'd like to share, you'll find it  in the WordPress Plugin Directory   Plugin: You’ll find the plugin at https://wordpress.org/extend/plugins/lorem-shortcode/ Installation: Download the plugin and save...

WordPress plugin template

UPDATE: As of WordPress 3.3, you shouldn't use the wp_print_styles hook, I've updated the Adding JavaScript section below to reflect this change. You can create a personalized plugin template by using my WordPress Plugin Template Creator When I  rewrote my WP-DenyHost plugin, I wanted to do it as fast as...

Fighting spam

I have reduced the number of  splog attacks on my site I use the Akismet and WP-DenyHost anti-spam plugins for WordPress. Akismet is a must-have and has, since I installed it, caught 304,056 spams (!!).  When Akismet catch a spammer, it logs the spammers IP address. WP-DenyHost, written by me, prevents spammers from getting access...

delicious tagroll for WordPress

The Delicious tagroll for WordPress plugin adds a new shortcode to WordPress, the shortcode. The shortcode creates a tag cloud or a list of tags (see parameters below). Demo: https://soderlind.no/bookmarks/ Plugin: You'll find the plugin at https://wordpress.org/extend/plugins/delicious-tagroll-shortcode/ Installation: Download the plugin and save it in wp-content/plugins (remember to activate in...

CSS Editor for WP and WPMU

Still work in progress, but here's a teaser: The Soderlind CSS Editor will be ready when it's done (that is, I don't have a release date) Prerequisites: WordPress and WordPress MU 2.8.4 or newer PHP 5.x The Sandbox theme It will use HTML Purifier to validate the CSS code before...

AHP Sitewide Recent Posts Widget for WPMU

AHP Sitewide Recent Posts Widget for WPMU makes it  easy to add and configure the AHP Sitewide Recent Posts plugin. Prerequisite: AHP Sitewide Recent Posts plugin Version history (change log): 0.9 (Mars 4 2009) [download id="35"] Initial release Installation: Download the latest zip file and extract the files Copy ahp_recent_posts_widget_ps.php...

toksta* chat plugin for BuddyPress

The toksta* chat plugin for BuddyPress makes it easy to add toksta* chat and webcam to your BuddyPress site. The plugin doesn't working any more. A new version will be released soon. Features: Chat widget, click on an online user to invite to a chat. Chatbar, shows friends online, number...

WP-DenyHost

This is a plugin that will block a spammer if he already has been tagged as a spammer. I use it together with the Akismet plugin. Akismet tags the spammer, and wp-denyhost prevents him from adding more comment spam. If you have a CloudFlare account, the plugin can add spammers...

Sandbox Skin Editor

Note: This is work in progress, when the editor is done, it will be announced here. I’m coding a skin editor for the sandbox theme. The code will be gpl, so you can adjust it to other themes, but I will only support the sandbox theme. Here’s a demo of...