PHP code example of jazzsequence / progress-bar

1. Go to this page and download the library: Download jazzsequence/progress-bar library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jazzsequence / progress-bar example snippets


add_filter( 'wppb.currency_symbol', 'my_custom_currency_symbol' );
function my_custom_currency_symbol( $symbol ) {
	return '£';
}

add_filter( 'wppb.currency_symbol', 'my_custom_currency_symbol' );
function my_custom_currency_symbol( $symbol ) {
	$allowed_symbols ### `[`
	if ( in_array( $symbol, $allowed_symbols ) ) {
		return $symbol;
	}

	return '$';
}