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
# Matomo | |
* Matomo Plugin Version: 4.15.2 | |
* Config exists and is writable.: Yes ("$abs_path/wp-content/uploads/matomo/config/config.ini.php" ) | |
* JS Tracker exists and is writable.: Yes ("$abs_path/wp-content/uploads/matomo/matomo.js" ) | |
* Plugin directories: Yes ([{"pluginsPathAbsolute":"$abs_path\/wp-content\/plugins\/matomo\/plugins","webrootDirRelativeToMatomo":"..\/"}]) | |
* Tmp directory writable: Yes ($abs_path/wp-content/cache/matomo) | |
* Matomo Version: 4.15.1 | |
* Matomo Blog idSite: 1 | |
* Matomo Install Version: 4.15.2 (Install date: 2023-10-17 21:32:21) |
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: Custom Filter for Display Eventbrite Events | |
* | |
*/ | |
add_filter( 'wfea_strip_eb_inline_styles', '__return_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: Quick Event Manager - Hide Events from front end and search | |
* Plugin Description: Custom filter to hide events from front end and search | |
*/ | |
add_filter( 'qem_event_register_event_cpt', function ( $args ) { | |
$args['$publicly_queryable'] = false; | |
$args['$exclude_from_search'] = true; | |
return $args; |
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: count | |
*/ | |
add_shortcode( 'count_wfea_transients', function() { | |
$trans= get_option('wfea_transients'); | |
return 'trans: ' . count($trans); | |
} ); |
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: Adjust Currency for Display Eventbrite | |
*/ | |
add_filter('wfea_currency_symbols', function ($currency_symbols) { | |
$currency_symbols['CAD'] = 'CAD$'; | |
return $currency_symbols; | |
} | |
); |
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: Get Custom Field Shortcode | |
* Description: Display custom fields in your WordPress site | |
* Version: 1.0 | |
*/ | |
/** | |
* Get Custom Field Shortcode | |
* |
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( 'wfea_api_results', function ( $events ) { | |
// remove a specific organiser id | |
$organiser_id = 123456789; | |
$events = array_filter( $events, function ( $event ) use ( $organiser_id ) { | |
return $event->organizer->id != $organiser_id; | |
} ); | |
return $events; | |
}, |
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: Change Slider Speed | |
*/ | |
add_filter( | |
'wfea_layout_slider_slide_speed', | |
function ( $speed ) { | |
return 5000; // 5 seconds | |
}, | |
10, |
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: Display Eventbrite Events - Custom Calendar add image | |
* Plugin URI: https://fullworksplugins.com/ | |
* Description: Add extra javascript to events so the image is loaded in the calendar | |
* | |
*/ | |
add_filter( 'wfea_cal_extra_js', function ( $script, $args ) { | |
$script = |
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: Set Action Scheduler clear down interval | |
* Description: Set Action Scheduler clear down interval | |
* Version: 1.0.0 | |
*/ | |
add_filter('action_scheduler_retention_period', function() { | |
return 2 * DAY_IN_SECONDS; // two days | |
}); |