Mina
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce password reset not showing formURL for reset password is wrong. It must be something like this
https://example.com/my-account/lost-password/?key=s31uOL4iYQ8937rSuaRb&login=usernameUse exact URL you receive in email to reset password, it is working fine on my site.
Thank you ??
Have a wonderful week ahead!!
Send the site URL.
Change Regular price to non-zero value in #4131 variation, this will stop displaying that message.
Hi,
Method 1
If you would like to add custom text within woocommerce-variation-add-to-cart div, add it after statement “<button type=”submit” class=”single_add_to_cart_button button alt”><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>”in woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php file.
Method 2
Other way is to use below snippet in functions.php. Note this will add custom text outside woocommerce-variation-add-to-cart divadd_action( ‘woocommerce_single_variation’, ‘pbs_woo_add_single_variation_add_to_cart_button’, 25 );
function pbs_woo_add_single_variation_add_to_cart_button( ) {
echo ‘<div style=”clear:both”></div>’;
echo ‘<div class=”content-section”>Add Your HTML, Text Or Image Content Here!</div>’;
}Can you share the site URL?
Forum: Plugins
In reply to: [WooCommerce] Add to cart is not hidden for the first productOk. But changing something in Parent Theme is not an good idea.
Forum: Plugins
In reply to: [WooCommerce] Top Rated ProductsCould you please share site URL?
Forum: Plugins
In reply to: [WooCommerce] Add to cart is not hidden for the first productChange remove action
remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’);To This:
remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’, 10 );Hi,
It is a bit complex process.
As you want to make changes just for display purpose – You can start with manipulating Price display in WooCommerce Template files:
WooCommerce/Templates/loop/price.php
WooCommerce/Templates/single-product/price.phpBut this will change it on product pages only. To make it applicable on other pages like Cart, Checkout etc, you need to dig deeper. If you are not programmer yourself, it is better to hire one.
Forum: Plugins
In reply to: [WooCommerce] How can I remove the shipping details from woocomerce checkout?Ok.
So you need $3,99 to be $399
and $99,60 to be $1960
and $999,08 to be $99908 for display purpose only, right?In backend decimal point will be “.” instead of “,” so that price is calculated properly?
Please confirm.
Hi,
You can change it from Admin Panel
YITH Plugins -> Wishlist – General Settings Section.Use below snippet in function.php file
function woo_remove_password_strength_meter() {
if ( wp_script_is( ‘wc-password-strength-meter’, ‘enqueued’ ) ) {
wp_dequeue_script( ‘wc-password-strength-meter’ );
}
}
add_action( ‘wp_print_scripts’, ‘woo_remove_password_strength_meter’, 100 );Forum: Plugins
In reply to: [WooCommerce] Change the product page tabs title/contentAdd below code snippet in your child theme’s function.php file
add_filter( ‘woocommerce_product_tabs’, ‘pbs_rename_woo_product_tabs’, 98 );
function pbs_rename_woo_product_tabs( $tabs ) {
$tabs[‘description’][‘title’] = ‘Product Description New Title’;
return $tabs;
}Hi,
Look at the configuration at https://www.dropbox.com/s/0i3e01ypxy8ggrs/Screen%20Shot%202016-09-22%20at%203.45.57%20pm.png?dl=0
This gives result: https://www.dropbox.com/s/yk2ntq6d84yff7f/Screen%20Shot%202016-09-22%20at%203.48.16%20pm.png?dl=0