Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created September 18, 2020 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pebblo/35b194a7f091dd6346b156f6aa5cd72b to your computer and use it in GitHub Desktop.
Save Pebblo/35b194a7f091dd6346b156f6aa5cd72b to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: EE Custom Functions - Specific Functions Plugin
Description: Use this plugin to add custom functions to your site.
*/
// Change Mini Cart Widget ticket row.
function ee_mer_change_item_name($ticketrowname){
return $ticketrowname . ' (date test)';
}
add_filter( 'FHEE__EE_Mini_Cart_Table_Line_Item_Display_Strategy___ticket_row__line_item_name', 'ee_mer_change_item_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment