adamparr01
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Edit Activity] Edit – ReplyHi, did you ever find a solution for this?
Forum: Plugins
In reply to: [BuddyPress Edit Activity] Editing edit buttonI had the right element, my changes simply weren’t saving!
Forum: Plugins
In reply to: [WooCommerce] Hide menu cart when empty@ief_dr I added the following PHP to custom-functions.php
add_action(‘wp_head’, ‘hook_css’, 99999);
function hook_css() {
// If cart is empty hide the item count
if(WC()->cart->is_empty())
echo ‘<style type=”text/css”> .main-navigation .grimlock-woocommerce-navbar_nav_menu{display:none !important;}</style>’;
}If you find the right element on yours hopefully it will work for you too.
Forum: Plugins
In reply to: [WooCommerce] Hide menu cart when emptyThank you for explaining! Could you possibly suggest the necessary PHP to fix?
Forum: Plugins
In reply to: [Kirki Customizer Framework] Loading timeAt a first test that appears to have completely fixed the issue for me – will keep an eye on it but thanks for the quick response and nice fix!
Forum: Plugins
In reply to: [Kirki Customizer Framework] Loading timeHi, I’m also experiencing something similar. I didn’t develop my website myself but got it done externally (I don’t have a technical background).
https://lvl-up.com/social-wall/ is my website and https://imgur.com/a/P4G9HCE is the results of a pingdom speed test.
Is there anything I can do to speed this up?
Thanks in advance!
Thank you! I decided to remove the whole product meta area once you identified what was causing the issue.
Thanks again for the quick help!
In case anyone ever gets this issue I used the below code in my custom-functions.php file:
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 40 );That worked perfectly thanks!
Just so I understand, is there anything else that could potentially change?
Thanks,
Adam