This file contains 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 | |
add_filter('site_option_active_sitewide_plugins', 'modify_sitewide_plugins'); | |
function modify_sitewide_plugins($value) { | |
global $current_blog; | |
if( $current_blog->blog_id == 83 ) { | |
unset($value['sendgrid-email-delivery-simplified/wpsendgrid.php']); | |
} |
This file contains 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 | |
/* Apply the following snippet in the functions.php file of your theme (without the PHP tag at the top) */ | |
add_action( 'tribe_events_community_form', function() { | |
$event_form = Tribe__Events__Community__Main::instance()->form; | |
remove_action( 'tribe_events_date_display', array( $event_form, 'loadRecurrenceData' ) ); | |
}, 5 ); |
This file contains 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
#Get the size of each table, ordered by largest to smallest | |
SELECT table_name AS "Tables", | |
round(((data_length + index_length) / 1024 / 1024), 2) "Size in MB" | |
FROM information_schema.TABLES | |
WHERE table_schema = "YOU+TABLE+NAME+HERE" | |
ORDER BY (data_length + index_length) DESC; | |
#Get the size of the entire DB | |
SELECT table_schema "DB Name", | |
Round(Sum(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" |
This file contains 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 | |
// I add a simple function to my functions.php that lets me do clean page-builder checks inside my template files. | |
// This is safe to include regardless of if bb-plugin is active or not. Won't trigger error. | |
function is_builder_layout() { | |
if (class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_enabled()) return true; | |
return false; | |
} | |
// Inside page.php I use is_builder_layout() to determine layout | |
if (is_builder_layout()) { |
This file contains 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 # -*- coding: utf-8 -*- | |
/** | |
* Plugin Name: Plugin Class Demo | |
* Description: How I am using the base class in plugins. | |
* Plugin URI: | |
* Version: 2012.09.29 | |
* Author: Thomas Scholz | |
* Author URI: http://toscho.de | |
* License: GPL | |
* Text Domain: plugin_unique_name |
This file contains 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
map $query_string $new_url { | |
~a=1 http://www.gov.uk/1; | |
~a=2 http://www.gov.uk/2; | |
~a=3&b=1|b=1&a=3 http://www.gov.uk/31; | |
~\ba=4\b.*\bb=2\b|\bb=2\b.*\ba=4\b http://www.gov.uk/42; | |
} | |
server { | |
server_name lrc.businesslink.gov.uk; |
This file contains 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 | |
// Custom bbp_list_forums bbPress code by @Lynq | |
// Demo: http://teamoverpowered.com/forums/ | |
// Code Discussion: http://bbpress.org/forums/topic/customising-bbp_list_forums-last-poster-block/ | |
public function custom_bbp_list_forums( $args = '' ) { | |
// Define used variables | |
$output = $sub_forums = $topic_count = $reply_count = $counts = ''; | |
$i = 0; |
This file contains 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
var el = document.getElementById("bbp-converter-message"); | |
el.addEventListener("DOMSubtreeModified", function(){console.log("New Message at " + new Date())}, false); |
This file contains 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: bbPress - Custom Views | |
Plugin URI: https://gist.github.com/ntwb/8167699 | |
Description: bbPress - bbPress - Custom Views | |
Version: 0.1 | |
Author: Stephen Edgar - Netweb | |
Author URI: http://netweb.com.au | |
*/ |
This file contains 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
function my_custom_roles( $role, $user_id ) { | |
if( $role == 'Keymaster' ) | |
return 'Site Owner'; | |
return $role; | |
} | |
add_filter( 'bbp_get_user_display_role', 'my_custom_roles', 10, 2 ); |
NewerOlder