ab
Forum Replies Created
-
thanks
@rwky My issue was caused because in the past I had disabled a bunch of woocommerce scripts. After several updates I started getting issues and had to get rid of the code disabling the scripts. If you have disabled any woocommerce scripts I suggest you re enable them one by one to see if this fixs the issue. I’ve pasted the old code I had, I can’t remember exactly which one was causing the issue with the store notice but I ended removing all of them as I was getting other issues too. Hope this helps
/** Disable All WooCommerce Styles and Scripts Except Shop Pages*/ add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_styles_scripts', 99 ); function dequeue_woocommerce_styles_scripts() { if ( function_exists( 'is_woocommerce' ) ) { if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) { Styles wp_dequeue_style( 'woocommerce-general' ); wp_dequeue_style( 'woocommerce-layout' ); wp_dequeue_style( 'woocommerce-smallscreen' ); wp_dequeue_style( 'woocommerce_frontend_styles' ); wp_dequeue_style( 'woocommerce_fancybox_styles' ); wp_dequeue_style( 'woocommerce_chosen_styles' ); wp_dequeue_style( 'woocommerce_prettyPhoto_css' ); Scripts //wp_dequeue_script( 'wc_price_slider' ); wp_dequeue_script( 'wc-single-product' ); wp_dequeue_script( 'wc-add-to-cart' ); wp_dequeue_script( 'wc-cart-fragments' ); wp_dequeue_script( 'wc-checkout' ); wp_dequeue_script( 'wc-add-to-cart-variation' ); wp_dequeue_script( 'wc-single-product' ); wp_dequeue_script( 'wc-cart' ); wp_dequeue_script( 'wc-chosen' ); //wp_dequeue_script( 'woocommerce' ); - causes store notice to stop working on manual pages wp_dequeue_script( 'prettyPhoto' ); wp_dequeue_script( 'prettyPhoto-init' ); wp_dequeue_script( 'jquery-blockui' ); wp_dequeue_script( 'jquery-placeholder' ); wp_dequeue_script( 'fancybox' ); wp_dequeue_script( 'jqueryui' ); } } }
Forum: Plugins
In reply to: [Payment Plugins Braintree For WooCommerce] Error loading paypal SDK messageThank you guys, it turned out i hadnt put in the sandbox paypal email. Issue is resolved now
Forum: Plugins
In reply to: [Payment Plugins Braintree For WooCommerce] Error loading paypal SDK messageHi thanks for the reply,the paypal and braintree accounts are already connected so the issue must be something else.
sorted it, just had to change some woo commerce settings
Issue fixed, it was something in the themes function file stopping the notice displaying
Thank you for the response, I tried with the storefront theme and the notice shows on all pages at the bottom of the page. So it must be a theme issue
hi thank you for your reply. I think you misunderstood the problem. The store notice shows on all woo commerce generated pages such as product pages, and categories.
the problem is it doesn’t show on other pages such as the homepage. I think this could be solved my adding something to the page template? Or adding something to the functions file to force the notice to show site wide? I don’t know what exactly though.
Forum: Plugins
In reply to: [WP Mobile Menu - The Mobile-Friendly Responsive Menu] change icon right menuissue resolved
Forum: Plugins
In reply to: [WP Mobile Menu - The Mobile-Friendly Responsive Menu] change icon right menufound the setting for it, but the menu still does not update on the site. even when i disable the menu it still shows up on the site. any idea how to fix this?
Forum: Themes and Templates
In reply to: [Pure & Simple] add login/register links in headerresolved
Forum: Themes and Templates
In reply to: [Pure & Simple] changing footer widthThanks, I was able to find this code that did exactly what I needed
#bottom-wrapper{
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}Forum: Themes and Templates
In reply to: [Pure & Simple] add login/register links in headerthanks that did help!
Forum: Themes and Templates
In reply to: [Pure & Simple] use full page template for certain categoriesThanks for the code WEN Solutions
I’ll look through and see if I can work something out.Forum: Plugins
In reply to: [Widget Visibility] not all categorys showingfixed by publishing a post in all categories