Robert Ghetau
Forum Replies Created
-
Hey,
Thank you for sharing the example with us!
This is indeed a little bit odd.
I can’t find a similar case report so far, however, I have a few things that I can recommend checking:1. Can you try to update the GTIN value for that product and try to check again in Google to see if that picks it up?
2. Do you have any caching plugins installed? If yes, could you try to clear the cache and try again?
3. Could you run a conflict test as described here: https://woocommerce.com/document/how-to-test-for-conflicts/Warm regards,
Hey,
Could you send us a copy of the system status report so we can have a better look at this? This can be found in WooCommerce > Status > ‘Get system report’.
If you’re more comfortable, you can also open a new ticket from here:
Hey there,
Could you share with us an example from your website?
Also, could you share a few screenshots of the current settings you have on the WooCommerce PayPal Checkout Payment Gateway?
Warm regards,
Forum: Reviews
In reply to: [WooCommerce Blocks] My IssueHey,
Thank you for your review!
When it comes to express checkout, these are the current compatible payment gateways:
https://docs.woocommerce.com/document/cart-checkout-blocks-support-status/#section-4
If you’d like an Express Checkout feature, please consider this extension as well:
https://woocommerce.com/products/express-checkout-for-woocommerce/
If you have any questions, please reach us through WooCommerce.com > My Account > Open a Support request and we’ll be happy to discuss further details.
Forum: Reviews
In reply to: [Google for WooCommerce] 3 accounts to connect, why ???Hey there,
Thank you for your review!
Could you tell us a little bit more about the accounts you had to connect in the process? Also, did you find any issues during the connection process?
Best wishes,
Forum: Themes and Templates
In reply to: [Storefront] Review rating stars are ‘hollow’Hey @mysellzer,
I encourage you to run a conflict test for now by disabling the other plugins, especially, Contact form 7, Customer reviews for Woocommerce, strong testimonials, Sticky add to cart for Woocommerce, Siteorigin CSS, Pixelyoursite, mystickyelements, mobile menu for now. If this doesn’t help, please try to disable all the other plugins as well. Here’s a guide on how to achieve that:
https://docs.woocommerce.com/document/how-to-test-for-conflicts/
I hope this helps!
Hey,
Ah yes, you are right!
It should work by adding this bit as well in the media query curly brackets:.woocommerce-active .site-branding { z-index: 2; }
- This reply was modified 3 years, 9 months ago by Robert Ghetau.
Forum: Themes and Templates
In reply to: [Storefront] Review rating stars are ‘hollow’Hi there,
We’ve re-tested this and it appears to be a conflict with one of your plugins.
In our testing, we discovered that WooCommerce Product Search was the culprit here and the styling worked as intended once it was deactivated. If you have the same plugin on your site, please note that I’ve already notified the plugin developers about this.
Warm regards,
Forum: Themes and Templates
In reply to: [Storefront] Buttons different on mobile themeHey,
I’m glad to see you were able to find the culprit!
I can encourage you to check this as well with the WPtouch developers as well:
https://www.ads-software.com/support/plugin/wptouch/
I hope this helps!
Hi there,
I can see from your site that the navigation menu component is coming from the Max Mega Menu plugin. Is this the one you’re using?
https://www.ads-software.com/plugins/megamenu/
If yes, I encourage you to check this further with the plugin developers:
https://www.ads-software.com/support/plugin/megamenu/
As a temporary workaround, you can try the following code to adjust its position but because of the way in which it is built, it needs more work:
@media screen and (max-width: 768px){ .woocommerce-active .site-branding { position: absolute; top: 15px; left: 140px; } .storefront-primary-navigation { padding-bottom: 15px; padding-top: 15px; } #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary { margin-top: 25px; } }
I hope this helps!
Forum: Themes and Templates
In reply to: [Storefront] Review rating stars are ‘hollow’Hey,
Thank you for sharing that with us!
I’ve gone ahead and reported this to the developers for now and we’ll reach back with more information about this.
Cheers
Forum: Themes and Templates
In reply to: [Storefront] Show Logo and TitleHey there,
Instead of using PHP, I could also recommend doing it through CSS. Here’s the code I used in the process:
.site-header .custom-logo-link { display: flex; align-items: center; } .site-header .custom-logo-link::after { content: "Site title"; padding-left: 20px; }
I hope this helps!
Forum: Themes and Templates
In reply to: [Storefront] Main Navigation Icon+text alignmentHi there,
I can recommend using the following CSS code to adjust the navigation menu items:
img._mi._before._image.litespeed-loaded { display: block; margin: auto; }
I also noticed the submenu width is off so I can recommend this to tweak it:
ul.sub-menu { width: auto; }
I hope this helps!
Cheers!
Forum: Themes and Templates
In reply to: [Storefront] Storefront integration within existing WP theme?Hi there,
This is a good question! While only one theme can be active at a time on a WordPress site, there are ways to combine the styles of different themes into one, however, it does require some work and the assistance of a developer. Giving that the changes you’re trying to make are pretty complex, I encourage you to use a child theme. Here’s a guide on how to start:
https://docs.woocommerce.com/document/set-up-and-use-a-child-theme/
Another way would be to have a multisite installation and run the website with a specific theme and have another website dedicated for the store. Then you’ll be able to use Storefront only on that site alone. So it would be something like this:
https://petersonsawmills.com/
https://store.petersonsawmills.com/I hope this helps!
Cheers
Forum: Themes and Templates
In reply to: [Storefront] Change Desktop Menu to Click rather than Hover?Hey,
I noticed that your submenus are quite big and having the padding so big around the submenus area isn’t ideal. Changing the behavior of the submenus will require the assistance of a developer, however, a quick workaround this would be to reduce the padding for the submenus. Here’s the CSS code that you can use in Customize > Additional CSS field:
#page .main-navigation ul.sub-menu li a { padding-top: 10px; padding-bottom: 10px; }
I hope this helps!
Cheers