Space between amount and currency symbol

[ad_1]

Hi,

you should be able to do that by adding the code below in your theme functions.php file or even better by creating a new blank plugin (https://wpadverts.com/blog/how-to-use-code-snippets-in-wordpress/) and pasting it there

add_filter( "adverts_currency_list", function( $l ) {
    $space = array( "EUR", "PLN" );
    foreach( $l as $k => $a ) {
        if( in_array( $a["code"], $space ) ) {
            $l[$k]["sign"] = " " . $l[$k]["sign"];
        }
    }
    return $l;
} );

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer