davidzupec
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Blurred images after updating to 3.3.2YES Thank you! I’m glad someone finally found the solution to this!
Forum: Networking WordPress
In reply to: Can’t access sub-domain dashboard of multisite networkHey Kyle, I’m having the same issue! I can’t login to my sub domain dashboard! Besides having to wipe out everything, did you find what was causing this?
Thanks, I discovered yesterday I had to log out of those accounts myself first!
I can’t seem to get his Facebook account connected, it wants to connect to mine instead?
Hi Jeremy, I created a wordpress.com account for my client and connected them to Jetpack but when I try to connect to publicize it still wants to connect to my social media accounts?
Forum: Plugins
In reply to: Payment gateway for WooCommerce store in NicaraguaHey Drewo, I sure did and it works perfect : )
Forum: Plugins
In reply to: [WooCommerce] Cannot add any products to cart after WordPress 4.5 updateThe same happened to me Musiphilos! I upgrade to WordPress 4.5 and lost all my products on the Shop page. I reverted back to the earlier version and got everything back! I still don’t know what the issue is though!
Forum: Fixing WordPress
In reply to: Updated to 4.5 and woocommerce shop page not showing product imagesThe same thing happened to me! I upgraded to 4.5 and lost my products on my shop page. I’m using the Storefront theme so you would think everything would have been compatible! I reverted back to the earlier version for now until there’s a solution.
Forum: Themes and Templates
In reply to: [Storefront] Adding additional tabs in product details pageGreat, thank you Mikey. I appreciate your help!
Great, thank you!
Forum: Themes and Templates
In reply to: [Storefront] Adding additional tabs in product details pageHey Mikey, this is the code for adding the second tab…
add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' ); function woo_new_product_tab( $tabs ) { // Adds the new tab $tabs['shippinginfo_tab'] = array( 'title' => __( 'Shipping Info, 'woocommerce' ), 'priority' => 50, 'callback' => 'woo_new_product_tab_content' ); return $tabs; } function woo_new_product_tab_content() { // The new tab content echo '<h2>Shipping Info</h2>'; }
Thank you!
Forum: Themes and Templates
In reply to: [Storefront] Change Additional Information Tab and TitleI followed FieldDrafts code to add an additional tab and it worked great. However, I need to add another tab so I just duplicated the code but that didn’t work. Any Suggestions? Thank you!
Forum: Plugins
In reply to: [Homepage Control] Plugin doesnt work with latest storefrontThank for the update Alexandre! I’m having the same problem as well!
Forum: Themes and Templates
In reply to: [Zerif Lite] Disable moving textThank you Alexandra!
Forum: Themes and Templates
In reply to: [Storefront] How to display On Sale products on home pageThank you!