luanne12
Forum Replies Created
-
Has this been updated yet to the fixed version? I added the above code to my website theme functions php, but when I add a private note to an order, the email still gets sent to the customer, not me.
The problem I have is that on the orders page in the vendor dashboard there is no icon for tracking information. There are only view and edit icons.
Forum: Plugins
In reply to: [YITH WooCommerce Gift Cards] Multiple Gift Card notices on checkoutI have the same exact issue on my site. I tried the codes you suggested to him, and they didn’t work for me, either. I need some code to delete the gift card info that displays at the beginning of the checkout page, because clicking that just opens the gift card info in the second spot – in a jerky manner, like the thread starter stated.
When I went back to check the customizer, everything seems to be displaying fine. I didn’t do anything to it, but I’m not complaining! Thank you.
Hi, when I choose an order from the dropdown, nothing loads and the only thing that displays inside the customizer is the twirling “Z” icon.
Forum: Plugins
In reply to: [Asset CleanUp: Page Speed Booster] unloading hardcoded STYLE/SCRIPTThe “Plugins Manager” option is only available for the pro version also.
I don’t understand why the “Smart Slider” plugin isn’t listed in the “From Plugins” section, or any section except the “Hardcoded Styles and Scripts” section on the backend page edit under “Asset Cleanup: CSS and JavaScript Manager/Page Options”.
Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] header mobile viewHi,
I have remedied this logo issue, but I am experiencing a different one.
Using the one page option, the checkout page is displaying two order summary sections, and three ‘place order’ sections! These sections also change on the mobile view.
Do you have any idea why?Thank you
Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] change website name text in headerI am so relieved; the first example worked!
You guys are the best – thank you!Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] change website name text in headerThank you for replying. I do not want to screw anything up on my website, so could you show or highlight the exact locations in that code where I would insert my website home page URL?
Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] header mobile viewForum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] paypal field not loadingOk, thanks, I will check on these things.
I found an older post that shows how to accomplish this in case anyone else needs it:
In order to remove the “Vendor tab” and “FAQ” tab, add the following code to the function.php :
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 99 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘wcmp_customer_qna’] ); // FAQ
unset( $tabs[‘vendor’] ); // Vendor
return $tabs;
}`Is it going to display publicly on this page? I’d rather not do that. The vendor tab I’m referring to is on the single product pages along side the other tabs such as ‘description’ ‘policies’ etc.
Let me know if you still need a screen shot that will be private.Thank you