ACF put a comma after the last repeater field value

I’ve the following code <?php if(have_rows('ore')):?> <?php while( have_rows('ore')): the_row(); $start = get_sub_field('start'); $end = get_sub_field('end'); ?> <?php if( get_row_index() != 1 ){ echo '/'; }?> <?php echo $start;?> – <?php echo $end;?> <?php endwhile;?> <?php endif;?> Which outputs the two fields (“start” & “end”) in this form: 12.00 – 13.00. In case there are … Read more

Woocommerce – Problem sorting and filtering products with different tax rates by price

Setup (wordpress and woo only; fresh install): Prices entered with tax: No, I will enter prices exclusive of tax Display prices in the shop: Including tax Display prices during cart and checkout: Including tax Tax Rates: Standard 23%, Reduced 5% Product 1: price 100, tax rate standard (23%), front end price 123 Product 2: price … Read more