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 | |
class SFN_Group_WP_Admin extends SFN_Group_Purchase_PMPRO{ | |
private static $instance; | |
/** | |
* Spins up the instance of the plugin so that we don't get many instances running at once | |
* | |
* @since 1.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
If you want to read these posts <a href="https://curtismchale.ca/membership">become a member</a>. Members get my <a href="https://curtismchale.ca/education">courses</a> included. |
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
config/app_config.yml | |
config/database.yml | |
config/*.sphinx.conf | |
config/s3_credentials.yml | |
*~ | |
*.cache | |
*.log | |
*.pid | |
tmp/**/* | |
.DS_Store |
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 | |
if ( ! defined( 'ABSPATH' ) ){ | |
exit; | |
} | |
class Nexcess_Add_To_Team_Trigger extends AutomateWoo\Trigger{ | |
/** | |
* Define which data items are set by this trigger, this determines which rules and actions will be available |
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: Nexcess - AutomateWoo Triggers | |
Plugin URI: https://nexcess.net | |
Description: Adds custom triggers to AutomateWoo | |
Version: 1.0 | |
Author: SFNdesign, Curtis McHale | |
Author URI: http://sfndesign.ca | |
License: GPLv2 or later | |
*/ |
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
{"name":"Mac Curtis","device":1,"model":5,"type":"layout","data":{"layer0":[41,30,31,32,33,34,35,36,37,38,39,45,46,42,43,20,26,8,21,23,28,24,12,18,19,47,48,49,41,4,22,7,9,10,11,13,14,15,51,52,40,225,29,27,6,25,5,17,16,54,55,56,229,224,226,227,44,227,192,193,228],"layer1":[53,244,243,60,61,62,63,173,171,172,168,170,169,0,0,0,82,0,0,0,0,0,82,0,70,74,77,0,0,80,81,79,0,0,0,80,81,79,75,78,0,0,0,0,0,0,0,0,0,0,73,76,0,0,0,0,0,0,192,193,0],"layer2":[0,200,201,202,203,0,0,0,246,241,240,244,243,0,0,0,82,0,0,0,0,0,82,0,70,74,77,0,0,80,81,79,0,0,0,80,81,79,75,78,0,0,0,0,0,0,0,0,0,0,73,76,0,0,0,0,0,0,192,193,0],"taps":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,80,81,79]},"crc":"d4ee7910"} |
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
<a href="#" target="_blank">Edit Content</a> |
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 | |
function wpse147453_remove_child_categories_from_permalinks( $permalink, $post, $leavename, $sample ) { | |
if ( in_array( $post->post_type, array( 'focus_courses' ) ) ) { | |
// Allow for slug to be editable | |
$slug = $leavename ? '%' . $post->post_type . '%' : $post->post_name; | |
// Generate premalink prefix based on post type | |
$prefix = 'courses'; | |
// add parent term slug | |
$term_slug = focus_top_term( $post ); |
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
/** | |
* Changes the post types that show the 'remove from menu' and 'remove from my account' checkboxes in the WordPress admin | |
* | |
* @param array $types required The existing allowed CPTs | |
* @return array $types Our modified array of CPTs | |
*/ | |
function change_allowed( $types ){ | |
$types[] = 'forum'; // change this to your registered custom post type name | |
return $types; | |
} |
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 | |
/** | |
* Override topic feedback message | |
* | |
* @param string $translated_text_out the original feedback text | |
* @param string $translated_text_in The text that bbPress sent in to the function, or the 'default' text bbPres uses here | |
* | |
* @return string $translated_text_out the filtered feedback text | |
*/ | |
function custom_topic_feedback_messages( $translated_text_out, $translated_text_in ) { |
NewerOlder