Mina
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] text on shop page not-logged in customers onlyI am glad it helped.Thank you Ronald and Lorro!!
You can change the configuration settings from Admin Panel: WooCommerce -> Settings -> General Screen. Here go to section Currency Options.
https://docs.woocommerce.com/document/configuring-woocommerce-settings/Forum: Plugins
In reply to: [WooCommerce] Remove text “On-hold” emailYou can change On-Hold email text by changing it in the template file of your child theme folder.
woocommerce/templates/emails/customer-on-hold-order.phpForum: Plugins
In reply to: [WooCommerce] Manually define DONOTCACHEPAGE constant for cart pageForum: Plugins
In reply to: [WooCommerce] doubled stars on rating reviewsI am glad it helped!!
Forum: Plugins
In reply to: [WooCommerce] No prices in the price.php loopGreat!!! I am glad you found the solution.
Forum: Plugins
In reply to: [WooCommerce] Can’t See The Add to Cart ButtonSend me the site URL.
Forum: Plugins
In reply to: [WooCommerce] No prices in the price.php loopHi, Try this code:
if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly
}global $product;
?><?php if ( $price_html = $product->get_price_html() ) : ?>
<!–<span class=”price”><?php echo $price_html; ?></span>–>
<span class=”price”><?php echo “Price: “; echo $product->get_price(); ?></span>
<span class=”price”><?php echo “Sell Price:”; echo $product->get_sale_price();; ?></span>
<?php endif; ?>Forum: Plugins
In reply to: [WooCommerce] doubled stars on rating reviewsRight Iorro. Thanks for correction!!
Forum: Plugins
In reply to: [WooCommerce] text on shop page not-logged in customers onlyTry each term enclosed in a ‘
add_action( ‘woocommerce_archive_description’, ‘pbs_woo_product_archive_additiona_details’, 20 );
function pbs_woo_product_archive_additiona_details( ){
if(! is_user_logged_in() )
{
echo ‘<div>Additional Information Goes here</div>’;
}
}Forum: Plugins
In reply to: [WooCommerce] doubled stars on rating reviewsAdd below CSS to your child theme’s style.css file
comment-text div.star-rating:first-child {
display: none !important;
}Forum: Plugins
In reply to: [WooCommerce] Can’t See The Add to Cart ButtonJust make sure each product has price assigned to it. Main reason for Add to cart not showing up is: price is not programmed on product page.
Forum: Plugins
In reply to: [WooCommerce] Wide Quantity Buttons in CartIssue can be resolved using CSS without affecting conversion. Please send me site URL.
Forum: Plugins
In reply to: [WooCommerce] Change button textGlad you got the direction ??
Forum: Plugins
In reply to: [WooCommerce] Change button textMake changes in your theme’s template file and not WooCommerce plugin files.
Here is the link how you can override WooCommerce template files in your Child theme:
https://docs.woocommerce.com/document/template-structure/
https://www.skyverge.com/blog/how-to-override-woocommerce-template-files/