The issue close to the line 260 where extra space icluded for no reason.
echo ' , ';
if ( $nb_of_cat !== 0 ) {
echo '<h6 class="category">';
foreach ( $product_categories as $product_category ) {
if ( $index < $nb_of_cat || $nb_of_cat < 0 ) {
$product_cat_id = $product_category->term_id;
$product_cat_name = $product_category->name;
if ( ! empty( $product_cat_id ) && ! empty( $product_cat_name ) ) {
if ( $i ) {
echo ' , ';
}
echo '<a href="' . esc_url( get_term_link( $product_cat_id, 'product_cat' ) ) . '">' . esc_html( $product_cat_name ) . '</a>';
$i = true;
}
$index ++;
}
}
echo '</h6>';
}
Please to fix
]]>I hope you can help me with my issue. I installed the plugin to implement the Meta Pixel in this shop.
It seems like the ViewContent product values are being tracked correctly by the pixel. Once I add the product to the cart and proceed with checkout, the AddToCart and Purchase events show the value without the decimal separator (turning a 43.50 value into a 4350 value).
The shop is German, so the decimal separators in the settings need to be (.) for thousands and (,) for decimals.
Is there a way to track the correct value without changing the global WooCommerce decimal settings?
Thanks.
]]>This configuration will be displayed everywhere, in the cart, in the checkout page, in the checkout page, in the order received page, in the emails, in the woocommerce backend and frontend.
At the moment: $1.500,25
Required configuration: $1,500.25
]]>I have my adresses for a ical event on one line seperated by commas:
location name, street nr, zip city
i d love to have the adress field on seperate lines instead of just one:
location name
street
zip city
any ideas? php? java script? modify php of plugin? css?
thx!
daniel