Skip to content

Instantly share code, notes, and snippets.

View StefsterNYC's full-sized avatar
💭
Surfing

Stef StefsterNYC

💭
Surfing
View GitHub Profile
@StefsterNYC
StefsterNYC / wp-login.php
Created June 30, 2026 22:42
Customize The WordPress Login / Admin Page
<?php
function my_login_logo_url()
{
return home_url();
}
add_filter('login_headerurl', 'my_login_logo_url');
function my_login_logo()
{ ?>
<style type="text/css">
html {
@StefsterNYC
StefsterNYC / add-gtin-to-woocommerce.php
Created June 30, 2026 21:45
Add GTIN to WooCommerce
<?php
/**
* @snippet Adds a column for the new GTIN input field on Products so when you export the column shows
* @author Serafin Tech
* @compatible WooCommerce 9+
* @website https://serafintech.io
*/
// Add the GTIN/UPC/EAN/ISBN to the export column names
add_filter('woocommerce_product_export_column_names', 'add_custom_gtin_export_column');
@StefsterNYC
StefsterNYC / add-atc-counter.php
Last active April 18, 2025 20:04
Adds a Counter Log in the WP-Content Folder
<?php
/**
* @snippet Adds an ATC Counter
* @author Serafin Tech
* @compatible WooCommerce 7+
* @website https://serafintech.io
*/
<?php
/**
* @snippet Adds a column for the new GTIN input field on Products so when you export the column shows
* @author Serafin Tech
* @compatible WooCommerce 9+
* @website https://serafintech.io
*/
// Add the GTIN/UPC/EAN/ISBN to the export column names
add_filter('woocommerce_product_export_column_names', 'add_custom_gtin_export_column');
<?php
/**
* @snippet Utilizes the Product Category Thumbnail to apply itself in place of the PDP's Main image on all products in that category.
* @author Serafin Tech
* @compatible WooCommerce 9+
* @website https://serafintech.io
*/