nikhilpatel123
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product cancel and faild email not received by customerHello
This is not for multiple user. it for booking cancelled mail send for customer.
Please see following filter
add_filter( ‘woocommerce_email_recipient_booking_cancelled’, ‘wc_send_booking_cancelled_multiple_addresses’ );
Above filter for when booking cancelled mail send for customer
Forum: Fixing WordPress
In reply to: color issue with the menuok.. sorry
Forum: Fixing WordPress
In reply to: color issue with the menuYes I will do it
Forum: Fixing WordPress
In reply to: color issue with the menuHello
Put into child-theme/style.css following code only
.omega-nav-menu a {
border: medium none;
color: #333333;
display: block;
padding: 10px 20px;
position: relative;
text-transform: uppercase;
}Forum: Plugins
In reply to: [WooCommerce] Product cancel and faild email not received by customerHello
Please try following code into your functions.php.
function wc_send_booking_cancelled_multiple_addresses( $recipient ) {
global $pending_conf_vendor;$recipient = rtrim( trim( $recipient ), ‘,’ );
$new_recipients = array(
‘yourmeail@domain.com’,
‘onemore@anotherdomain.com’,
//Add more email addresses if needed
);$recipient .= ‘,’ . implode( ‘,’, $new_recipients );
return $recipient;
}
add_filter( ‘woocommerce_email_recipient_booking_cancelled’, ‘wc_send_booking_cancelled_multiple_addresses’ );Forum: Plugins
In reply to: [WooCommerce] Product cancel and faild email not received by customerfunction wc_send_booking_cancelled_multiple_addresses( $recipient ) {
global $pending_conf_vendor;$recipient = rtrim( trim( $recipient ), ‘,’ );
$new_recipients = array(
‘yourmeail@domain.com’,
‘onemore@anotherdomain.com’,
//Add more email addresses if needed
);$recipient .= ‘,’ . implode( ‘,’, $new_recipients );
return $recipient;
}
add_filter( ‘woocommerce_email_recipient_booking_cancelled’, ‘wc_send_booking_cancelled_multiple_addresses’ );Forum: Plugins
In reply to: [WooCommerce] Product cancel and faild email not received by customerHello
Which issue happen you want to put add above code?
Can you please describe?
Forum: Fixing WordPress
In reply to: color issue with the menuHello
Then You try changes into child theme
Forum: Fixing WordPress
In reply to: color issue with the menuIn your wp-content/themes/lifestyle/style.css
Line Number: 693
Just Copy and replace with below code.
.omega-nav-menu a {
border: medium none;
color: #333333;
display: block;
padding: 10px 20px;
position: relative;
text-transform: uppercase;
}Thanks
Forum: Fixing WordPress
In reply to: color issue with the menuHello
Please change in your css
http://www.bat-mitzvush.co.il/wp-content/themes/lifestyle/style.css?ver=4.4.1Line Number: 693
.omega-nav-menu a{
border: medium none;
color: #333333;
display: block;
padding: 10px 20px;
position: relative;
text-transform: uppercase;}Please replace above css and check. Menu font color will be darker
Thanks
Forum: Plugins
In reply to: [WooCommerce] Product cancel and faild email not received by customerPlease try and let me if it is working or not.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Product cancel and faild email not received by customerTry following code into functions.php located in your themes.
When mail is send then mail will be goes to admin and customer.
/*
* Add customer email to Cancelled Order recipient list
*/
function wc_cancelled_order_add_customer_email( $recipient, $order ){
return $recipient . ‘,’ . $order->billing_email;
}
add_filter( ‘woocommerce_email_recipient_cancelled_order’, ‘wc_cancelled_order_add_customer_email’, 10, 2 );Thanks
Forum: Plugins
In reply to: [WooCommerce] Product cancel and faild email not received by customerLet me check in detail
Forum: Plugins
In reply to: [WooCommerce] remove product-category from urlRemoving /product/, /product-category/, or /shop/ from the URLs is not advisable due to the way WordPress resolves its URLs. It uses the product-category (or any other text for that matter) base of an URL to detect that it is an URL leading to a product category.
There are SEO plugins that allow you to remove this base, but that can lead to a number of problems with performance and duplicate URLs.
Better to avoid
You will make it harder for WordPress to detect what page you are trying to reach when you type in a product category URL.
Also, understand that the standard “Page” in WordPress always has no base text in the URL. For example:
http://yoursite.com/about-page/ (this is the URL of a standard page)
http://yoursite.com/about-page/product-category/category-x/ (this is the URL leading to a product category)What would happen if we remove that ‘product-category’ part?
http://yoursite.com/about-page/about-page/
http://yoursite.com/about-page/category-x/WordPress will have to do much more work to detect what page you are looking for when entering one of the above URLs. That is why we do not recommend using any SEO plugin to achieve this.
Forum: Fixing WordPress
In reply to: Issue When Install New PluginCan you please give your website URL?