Skip to content

Instantly share code, notes, and snippets.

View foliovision's full-sized avatar

Alec Kinnear foliovision

View GitHub Profile
@foliovision
foliovision / bbpress-subscribers-convert.php
Created May 24, 2016 14:34
Convert bbPress 1 favorite topics into topic subscriptions in bbPress 2
<?php
include('wp-load.php');
global $wpdb;
$aUsers = $wpdb->get_results("SELECT user_id,meta_value FROM $wpdb->usermeta WHERE meta_key = 'bb_favorites'");
$i = 0;
foreach($aUsers as $user){
@foliovision
foliovision / FV Player custom Ajax tracking.js
Last active October 12, 2022 12:07
Sample code for FV Player which detects if the user really watched the video to the end (seeking to the end won't suffice) and then sends the post ID using Ajax.
flowplayer( function(api,root) {
var root = jQuery(root);
api.bind('progress', function(e,api,current) {
fv_track(e,api,current);
}).bind('finish ready ', function(e,api) {
for( var j in fv_ga_events ) {
root.removeData('fv_custom_track_'+fv_ga_events[j]);
}
});
@foliovision
foliovision / fv-pb-global-avatar.php
Last active October 24, 2016 11:40
Profile Builder - make the custom avatars global for WP Multisite
<?php
if( is_multisite() && function_exists('switch_to_blog') ) {
add_filter( 'get_avatar', 'fv_pb_global_avatar_start', 20, 5 );
add_filter( 'get_avatar', 'fv_pb_global_avatar_end', 22, 5 );
function fv_pb_global_avatar_start( $avatar ) {
switch_to_blog(1);
return $avatar;
}
@foliovision
foliovision / wp-mu-in-subdirectory.php
Created January 19, 2015 16:28
WP Multisite fix for WP install in a directory
<?php
/*
Our Wordpress is located in https://our-site.com/wordpress
Here's the relevant part of our wp-config.php
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', true);
define('DOMAIN_CURRENT_SITE', 'our-site.com');
@foliovision
foliovision / Textile.sh
Created November 8, 2011 17:35 — forked from dpk/Textile for BBEdit
Working version of Textile.sh filter for BBEdit/TextWrangler. http://foliovision.com/2011/11/08/textile-editing-bbedit
#!/usr/bin/php -q
<?php
// set to true to avoid ' and " converting to HTML special characters
@define('skip_glyphs', false);
// 3+ uppercase span tag is commented out, as everyone hates it
// instruction on how to use it available here: http://foliovision.com/2011/11/08/textile-editing-bbedit
// define these before including this file to override the standard glyphs