Skip to content

Instantly share code, notes, and snippets.

Avatar

Anthony Hortin maddisondesigns

View GitHub Profile
@maddisondesigns
maddisondesigns / functions.php
Created August 10, 2022 06:52
Remove the WordPress Site Health Dashboard Widget
View functions.php
/**
* Remove the Site Health Dashboard Widget
*/
function ephemeris_remove_site_health_dashboard_widget() {
remove_meta_box( 'dashboard_site_health', 'dashboard', 'normal' );
}
add_action( 'wp_dashboard_setup', 'ephemeris_remove_site_health_dashboard_widget' );
@maddisondesigns
maddisondesigns / functions.php
Last active May 7, 2021 16:34
Update the version number on child theme stylesheet that's been enqueued from Parent theme
View functions.php
<?php
/**
* If you have a child theme that has had its stylesheet enqueued from within the main Parent theme,
* and you wish to update the version number that’s appended to the url, you can include this in your
* child theme functions.php file.
*
* Obviously, change the version number (‘6.0.0’ in this example) to whatever is appropriate for you,
* along with comparing the approriate stylesheet handle ('ephemeris-style' in this example)
*
* Where:
@maddisondesigns
maddisondesigns / functions.php
Last active January 4, 2023 17:20
Convert Phone Word to Phone Number
View functions.php
<?php
/**
* Convert a phone number containing words, to a plain number. e.g. '1800 CALLME' == '1800225563'
*/
function ephemeris_phone_word_to_number( $phone_number ) {
$phone_word_pattern = array(
'a' => '2',
'b' => '2',
'c' => '2',
'd' => '3',
@maddisondesigns
maddisondesigns / functions.php
Last active January 24, 2023 20:44
Hide those annoying Automattic/WooCommerce/Jetpack/WordPress adverts & promos
View functions.php
<?php
/**
* Turn off WooCommerce Marketplace suggestions
*/
add_filter( 'woocommerce_allow_marketplace_suggestions', '__return_false' );
/**
* Turn off WooCommerce Feature Plugin notice
*/
add_filter( 'woocommerce_show_admin_notice', '__return_false', 'wc_admin_feature_plugin_notice' );
@maddisondesigns
maddisondesigns / functions.php
Created May 22, 2019 08:01
Ephemeris Theme - Filter our social icons to add an email icon on the end
View functions.php
<?php
/**
* Filter our social icons to add an email icon on the end
*/
function ephemeris_add_email_to_social_icons( $social_list ) {
$social_list[] = sprintf( '<li class="%1$s"><a href="%2$s" title="%3$s"><i class="%4$s"></i><span class="assistive-text">%3$s</span></a></li>',
'email',
esc_url( home_url( '/contact' ) ),
__( 'Get in touch', 'ephemeris' ),
'far fa-envelope'
@maddisondesigns
maddisondesigns / functions.php
Last active May 7, 2019 08:03
Hide the progress count on the Site Health screen
View functions.php
<?php
/**
* Hide the progress count on the Site Health screen
*/
function mytheme_load_custom_wp_admin_style() {
$current_screen = get_current_screen();
if ( strpos( $current_screen->base, 'site-health' ) === false ) {
return;
} else {
@maddisondesigns
maddisondesigns / functions.php
Last active December 3, 2022 04:39
Create WordPress Custom Post Types & Taxonomies, and add custom columns to display CPT data
View functions.php
<?php
/**
* Add an action when WP Admin initialises to register our Custom Post Type
*/
function mdsgns_create_custom_post_types() {
$types = array(
// Where the magic happens
array(
'the_type' => 'store',
@maddisondesigns
maddisondesigns / blocks-style.css
Last active April 23, 2019 07:22
Load CSS to style the (Gutenberg) Block Editor like the front-end
View blocks-style.css
/*
Theme Name: Ephemeris
Description: Used to style the Block Editor (Gutenberg)
*/
/* Custom Colours */
/* Eclipse */
.edit-post-visual-editor .has-eclipse-background-color {
background-color: #3a3a3a;
}
@maddisondesigns
maddisondesigns / change-db-collation.php
Last active August 26, 2021 09:09
Change the Collation of all tables in a WordPress Database. Will try to extract Database details from wp-config.php file.
View change-db-collation.php
<?php
/*
* Change the Collation of all tables in a WordPress Database
*
* WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
* Take a backup first, and carefully test the results of this code.
* USE OF THIS SCRIPT IS ENTIRELY AT YOUR OWN RISK. I/We accept no liability from its use.
*
* USE:
* Simply place this script in the root of your WordPress site and run it from your browser.
@maddisondesigns
maddisondesigns / functions.php
Last active April 25, 2023 08:30
WooCommerce Custom Fields for Simple & Variable Products
View functions.php
/*
* Add our Custom Fields to simple products
*/
function mytheme_woo_add_custom_fields() {
global $woocommerce, $post;
echo '<div class="options_group">';
// Text Field