cabbola
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 5.3Phew! Fixed. Thank you very much, I really appreciate the fast response.
Bob
Forum: Plugins
In reply to: [WooCommerce] woocommerce-variation-descriptionHi Laurena,
I had been waiting a while for a response, and didn’t think you were going to help, so I had to use a backup database to restore and fix the problem. Lost 2 weeks worth of data, but its all ok now.
Thanks anyway
Bob
Forum: Plugins
In reply to: [WooCommerce] woocommerce-variation-descriptionHi there,
All plugins were deactivated one at a time, cache cleared and problem still there.
Bob
Forum: Plugins
In reply to: [WooCommerce] woocommerce-variation-descriptionHi Andrew,
Thanks for quick response.
The problem is still there, I ask a friend to check to see if they saw the problem, and they did.Go to a different product page and see if you see the problem. If you refresh the page the problem goes away.
This is an image to the problem: https://www.buyatestkit.com/forms/BATK%20screen%20grab1.PNG
After refreshing the same page, this is what it looks like: https://www.buyatestkit.com/forms/BATK%20screen%20grab2.PNGPlease note, once the page is refreshed the problem gos away.
Bob
Forum: Plugins
In reply to: [Woo SEO by Squirrly] SSL errorIncredible! Great service! All fixed.
Thank you
Bob
Web address: https://www.buyatestkit.com/
I only noticed the reported error after Jetpack was installed. It is currently deactivated. I will reactivate now.
Thanks
I have reactivated the plugin and the fault is not there anymore.
I guess it fixed itself.
One final thing, I want to post some articles to facebook and google from 2015 but the Publicize Settings checkboxes are grayed out. How can I make them live again?
Thank you for responding.
Bob
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] PDF won’t displayProblem resolved
I have a similar problem. I checked wp.log and I multiple entries similar to this…. Non-static method EasyContactFormsApplicationSettings. I deactivated the plugin, cleared the cache. Deactivated JetPack, cleared cache, reactivated JetPack but Jetpack still wont let me authorize.
Please help.
Bob
Forum: Plugins
In reply to: [Booster for WooCommerce] Cant see error textMark as fixed
Forum: Plugins
In reply to: [Max Mega Menu] CSS settings dont workHi Tom,
Update. I renamed the the theme menu title and now it works. So sorry to have wasted your time.
Bob
Forum: Plugins
In reply to: [Max Mega Menu] CSS settings dont workHi Tom, so it seems I cannot type correctly. What I meant to say was… I cannot change capitalize to uppercase. But that was just an example. If I make any change, it is not reflected in the menu. For example if I change the Responsive Menu Text from MENU to MAIN MENU that does not change either. Colors, font size, borders, shading all have no effect. I can put the various element changes in my CUSTOM.css file but that’s not the way it is supposed to work.
Bob
P.S. Thanks for the quick response.
Site: https://www.buyatestkit.comForum: Plugins
In reply to: [WooCommerce] Calculate sales tax on manual orderResolved
Forum: Plugins
In reply to: [WooCommerce] Up-sells in a tabI added ( ‘priority’ => 29, ) Copy and paste the code between >>
>>
// Remove standard Related Products section
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’, 20 );
// Remove the WooCommerce Upsell hook
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_upsell_display’, 15 );
remove_action( ‘woocommerce_after_single_product_summary’, ‘woo_wc_upsell_display’, 15 );
// Add a custom action to display Upsells
add_action( ‘growdev_after_single_product_summary’, ‘woocommerce_upsell_display’, 15 );// A filter to add a custom tab
add_filter(‘woocommerce_product_tabs’,’growdev_add_tab’);// Callback for add_filter that defines the filter. You can change ‘New tab’ to the desired
// tab title
// growdev_custom_tab is the function callback
function growdev_add_tab( $tabs ) {
$tabs[‘upsell_tab’] = array( ‘title’ => ‘Related Products’,
‘priority’ => 29,
‘callback’ => ‘growdev_custom_tab’);
return $tabs;
}// The function callback for the custom tab.
// This does the display upsells action inside of the tab
function growdev_custom_tab( $key, $tab ) {do_action(‘growdev_after_single_product_summary’);
}
>>
You can change… ‘priority’ => 29, from 25 to 29 and this will move the tab placement.Forum: Plugins
In reply to: [WooCommerce] Up-sells in a tabHi again, found the problem.
I am using canvas and found this did the trick… remove_action( ‘woocommerce_after_single_product_summary’, ‘woo_wc_upsell_display’, 15 );
Its now working as I wanted. Thanks so much
Bob
Forum: Plugins
In reply to: [WooCommerce] Up-sells in a tabDaniel, you are a genius. Thank you very much for this snip-it.
Couple of problems, and this may be that I am using 2.1.2
I have renamed the tab “Related Tests” to suit my needs and that works fine.
1. The problem is that: remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_upsell_display’, 15 ); does not remove Upsell below the description.
2. Is there any way to rename the “You may also like…” to “Related Tests”? or remove “You may also like…” altogether.
I can add this to my css…
.upsells h2 {display: none;}
.upsells {margin-top: 1.5em;}But I am sure there is a better way.
https://www.buyatestkit.com/products/5-panel-urine-drug-test/
Thank you for help in this matter, I really appreciate it.
Bob