Viewing 3 reply threads
You must be logged in to reply to this topic.
Because it does not let me modify the translation of the word “SALE!” and “Out of stock”? The words are translated and the locotraslate is correct but does not effect the change. Is there anything that interferes from the subject? You can help?
Hello,
Both strings are translatable. If they are not present in the .PO file, you can add them by editing the file with PoEditor.
Here is where they are locaetd in theme files:
1-Sale! -> june\woocommerce\loop\sale-flash.php (line 28)
<?php echo apply_filters( 'woocommerce_sale_flash', '<span class="onsale">' . esc_html__( 'Sale!', 'june' ) . '</span>', $post, $product ); ?>
2-Out of Stock -> june\woocommerce\loop\sale-flash.php (line 34)
<?php echo apply_filters( 'woocommerce_outofstock_flash', '<span class="outofstock">' . esc_html__( 'Out of Stock', 'june' ) . '</span>', $post, $product ); ?>
–june\includes\codeless_functions_woocommerce.php (line 1313)
<div class="cl-info outstock"><span class="out-stock"><i class="cl-icon-alert-circle"></i><?php esc_attr_e( 'Out of Stock', 'june' ); ?></span></div>
Best regards!
You must be logged in to reply to this topic.