Woo Commerce using Blocksy and PPOM Pro: several questions
-
Hi all,
A brief summary of my site: Unpublished, thus no link. Child theme: Blocksy. I mostly sell variable products using PPOM Pro – whose support have helped me a lot – however, some issues they refer to WooCommerce. Note that my products are all set as “simple products” in Woo, the PPOM plugin overrides it and creates it’s own variations. Also, last but not least: I’m a total newbie to all of this. I’ll write my issues in a list in hope that some of the experts here might know a solution.
1 – Right now the prices are shown as “kr”, I want them to be shown in “SEK” instead though, as “kronor” is a currency used also in DK and N, thus there is also DKK and NKK. I found the following CSS that I presume goes into Blocksy > Core > Customizing > Additional CSS? I don’t know where to add my changes though? I played around a bit with no result.
/**
- Custom currency and currency symbol
*/
add_filter( ‘woocommerce_currencies’, ‘add_my_currency’ );
function add_my_currency( $currencies ) {
$currencies[‘ABC’] = __( ‘Currency name’, ‘woocommerce’ );
return $currencies;
}add_filter(‘woocommerce_currency_symbol’, ‘add_my_currency_symbol’, 10, 2);
function add_my_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case ‘ABC’: $currency_symbol = ‘$’; break;
}
return $currency_symbol;
}2 – As I mostly sell highly variable products, I need almost all product prices to be stated as “from XXX SEK“. I found a CSS to change this here in the WP forums, but it was written to apply to “variable products”. However, I need a solution that works with the PPOM plugin. As described above, I add my products as “simple products” in Woo and make them variable via the PPOM plug. Any suggestions?
3 – I have a menu of the left of the screen where there is a “product tree” showing main categories with the subcategories one tab stop inwards. Currently both main and subs are displayed in the same font weight. I’d like to change this so that the main categories becomes bold. Is there any way to change this?
4 – In the category “tiles”, it shows the amount of products within parenthesis, i e: Collars (6), I can’t find a place where I remove this?
I have more things, but I’ll guess I start here! ??
- Custom currency and currency symbol
- You must be logged in to reply to this topic.