Hi borge 77,
Thank your for using our product. I'm so sorry your issue.
1. prev/next
Go to: {root}/wp-content/themes/yolo-canifa/includes/woocommerce.php
Find to about:
965 lines:
<?php echo esc_html($previous_thumb);?> change to <?php echo $previous_thumb;?>
and 997 lines
<?php echo esc_html($next_thumb);?> change to: <?php echo $next_thumb;?>
2. About text
- Go to: wp-content/themes/yolo-canifa/woocommerce/checkout/thankyou.php
About 49 lines:
<strong><?php echo esc_html($order->get_formatted_order_total()); ?></strong>
Change to: ( remove esc_html )
<strong><?php echo $order->get_formatted_order_total(); ?></strong>
- Go to: wp-content/themes/yolo-canifa/woocommerce/order/order-details.php
About 44 lines:
<td><?php echo esc_html($total['value']); ?></td>
Change to ( remove esc_html ):
<td><?php echo $total['value']; ?></td>
If not true, please contact for us, we will check for you soon.
Best regards,
trinhnv