Category: Admin
Add vendor id and name to CSV commissions export
if ( ! function_exists( ‘wcv_add_vendor_id_col_data’ ) ) { /** * Add vendor id to CSV data * * @param array $row_data The row data. * @param int $vendor_id The vendor id. */ function wcv_add_vendor_id_col_data( $row_data, $vendor_id ) { if (…Continue reading
The commission is only log when the order status is completed
if ( ! function_exists( ‘wcv_log_commission_order_status’ ) ) { /** * Log commission when order status is ? * * @param array $order_statuses The order statuses. * @return array */ function wcv_log_commission_order_status( $order_statuses ) { $key = array_search( ‘processing’, $order_statuses, true…Continue reading
Update the author name on published recipes
add_filter( ‘tasty_recipes_recipe_template_vars’, function( $template_vars ) { $template_vars[‘recipe_author_name’] = ‘New name here’; //Replace New name here $template_vars[‘recipe_details’][‘author’][‘value’] = ‘‘ . $template_vars[‘recipe_author_name’] . ‘‘; return $template_vars; } );Continue reading
Active Campaign Snippet
Disable Block Directory
remove_action(‘enqueue_block_editor_assets’, ‘wp_enqueue_editor_block_directory_assets’);Continue reading
Disable Suggested Donation Description In Campaign (Legacy)
add_filter( ‘charitable_sanitize_suggested_amount_description’, ‘charitable_disable_sanitize_suggested_amount_description’ ); function charitable_disable_sanitize_suggested_amount_description() { return false; }Continue reading
Enable Legacy Email Templates
/** * Revert to legacy ‘HTML’ email template, v1.8.4 and below * * @link https://wpforms.com/developers/how-to-enable-legacy-email-template/ * * For support, please visit: https://www.facebook.com/groups/wpformsvip */ $settings = (array) get_option( ‘wpforms_settings’, [] ); $settings[ ’email-template’ ] = ‘default’; update_option( ‘wpforms_settings’, $settings );Continue reading