Skip to content

Instantly share code, notes, and snippets.

View duarteixeira's full-sized avatar
🎯
Focusing

Carlos Teixeira duarteixeira

🎯
Focusing
View GitHub Profile
@webdados
webdados / percentage_woocommerce_sale_flash.php
Last active March 22, 2019 08:03
Discount percentage on the WooCommerce "on sale" badge
<?php
add_filter( 'woocommerce_sale_flash', 'percentage_woocommerce_sale_flash', 10, 3 );
function percentage_woocommerce_sale_flash( $html, $post, $product ) {
if ( $html!='' ) {
$perc = round( 100 - ( $product->sale_price * 100 / $product->regular_price ) );
if ( $perc>0 ) $html = '<span class="onsale">-'.$perc.'%</span>';
}
return $html;
}
@webdados
webdados / grep_string.php
Last active April 21, 2017 14:20
Search the whole hosting account for files containing specific string(s)
<?php
//Add the strings to search
$strings = array(
'_0xaae8',
);
//Exclude file extensions
$extensions_ignore = array(
'jpg',
'png',
@gugaalves
gugaalves / custom-login-styles.css
Last active November 14, 2022 12:16
WordPress - Customizing Login, Register and Lost Password pages
/*
*
* This CSS template will customize WordPress.org login pages:
*
* Login page: /wp-login.php
* Register page: /wp-login.php?action=register
* Lost Password page: /wp-login.php?action=lostpassword
*
* @site https://tudoparawp.com.br
* @author Guga Alves
@duarteixeira
duarteixeira / Instructions: How to enqueue the CSS in your theme
Last active February 14, 2019 12:08 — forked from gugaalves/custom-login-styles.css
WordPress - Customizing Login, Register and Lost Password pages
STEPS:
1 - If the theme was not developd by you, first create a child theme (How to create a child theme? Read at https://codex.wordpress.org/Child_Themes) or else modifications will be lost when updating your theme.
2 - Add the following CSS file in your theme/child theme (better if you create a folder to add CSS there).
3 - Add the following snippet in your functions.php file:
function tpw_enqueue_custom_admin_style() {
echo '<link rel="stylesheet" type="text/css" href="' . get_stylesheet_directory_uri() . '/css/admin/custom-login-styles.css" />';
}