This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Autoptimize Inline JS Fault | |
| * Plugin URI: http://www.n7studios.co.uk | |
| * Description: Demonstrates a fault with Autoptimize where "Also aggregate inline JS" is enabled but not honoured. | |
| * Author: Tim Carr | |
| * Author URI: http://www.n7studios.co.uk | |
| * Version: 1.0.0 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Envira Gallery - Remove Image Links on Mobile | |
| * Plugin URI: http://enviragallery.com | |
| * Version: 1.0.0 | |
| * Author: Tim Carr | |
| * Author URI: http://www.n7studios.co.uk | |
| * Description: Removes image links on Envira Galleries if the Lightbox is disabled for mobile devices | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Envira Gallery - Display Image Titles in Lightbox | |
| * Plugin URI: http://enviragallery.com | |
| * Version: 1.0 | |
| * Author: Tim Carr | |
| * Author URI: http://www.n7studios.co.uk | |
| * Description: Display image titles in the Lightbox view | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Comment Rating Field Pro - Remove CSS and JS | |
| * Plugin URI: http://www.wpcube.co.uk/plugins/comment-rating-field-pro-plugin | |
| * Version: 1.0.0 | |
| * Author: WP Cube | |
| * Author URI: http://www.wpcube.co.uk | |
| * Description: Unregisters CSS and JS for CRFP Pro. Remember, you'll now need to supply your own CSS and JS | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: WordPress to Buffer Pro - Change Featured Image | |
| * Plugin URI: https://www.wpcube.co.uk | |
| * Version: 1.0.0 | |
| * Author: Tim Carr | |
| * Author URI: https://www.wpcube.co.uk | |
| * Description: Demonstrates how to use any image URL as your status' Featured Image | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $entries = GFAPI::get_entries( 0, array( | |
| 'status' => 'active', | |
| 'field_filters' => array( | |
| array( | |
| 'key' => 'source_url', | |
| 'operator' => 'contains', | |
| 'value' => 'http://127.0.0.1/nursery', | |
| ), | |
| ), | |
| ) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Envira Gallery - Standalone Addon - Enable Comments | |
| * Plugin URI: http://enviragallery.com | |
| * Version: 1.0.0 | |
| * Author: Tim Carr | |
| * Author URI: http://www.n7studios.co.uk | |
| * Description: Enables comments for Envira CPT | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div.envira-pagination { | |
| width: 100%; | |
| text-align: center; | |
| } | |
| div.envira-pagination span.page-numbers, div.envira-pagination a.page-numbers { | |
| display: inline-block; | |
| height: 43px; | |
| padding: 0 15px; | |
| line-height: 43px; | |
| text-align: center; |