Skip to content

Instantly share code, notes, and snippets.

View j0ssGZ's full-sized avatar
🌳
Programming in nature

Jose Fanjul j0ssGZ

🌳
Programming in nature
View GitHub Profile
<?php
//Address merge types must be handled in a very specific format
function my_pmpro_mailchimp_listsubscribe_fields($fields, $user)
{
$user_info = get_userdata($user->ID);
$new_fields = array(
"FNAME" => $user->first_name,
"EMAIL" => $user->email,
"LNAME" => $user->last_name,
@j0ssGZ
j0ssGZ / woocommercer-tips.php
Created October 10, 2018 19:01
Wocommerce tips
/* Remove meta */
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );