Select Page

Type of information that is represented in a language.

Parameters

  1. currency_text – array with types. Sorting is important. Array can contain these values:
    • text – currency name from WooCommerce;
    • flag – country flag where currency uses;
    • symbol – currency symbol from WooCommerce;
    • image – currency image from plugin settings;
    • space – whitespace character.

Usage

<?php
function change_ce_widget_text_builder ( $currency_text ) {
//your code here
    return $currency_text;
}

add_filter( 'ce_widget_text_builder', 'change_ce_widget_text_builder' );
?>