Senff - a11n
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Storefront Cart Page Blank space obscuring contentHey @michaelcubey
It looks like this is caused by a DIV called “wp-autoterms-footer”, which appears to be coming from the WP AutoTerms plugin.
If you deactivate that plugin, do things look better? If so, I’d recommend reaching out to the plugin’s own support team right here:
https://wordpress.org/support/plugin/auto-terms-of-service-and-privacy-policy/Forum: Themes and Templates
In reply to: [Storefront] Header widthHey @sripujastore
It’s not entirely clear what you mean exactly. From what I can see, the header doesn’t push any categories down and it actually looks great. Here’s what I see on my end:
Image link: https://d.pr/i/d0mIZnCan you explain a bit more what you mean, perhaps with a screenshot to illustrate/highlight the issue?
Forum: Themes and Templates
In reply to: [Storefront] Menu IconHey @condadocouple,
You can fix this with a little bit of custom CSS code.
Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
@media screen and (max-width: 767px) { button.menu-toggle::after, button.menu-toggle::before, button.menu-toggle span::before { background-color: #1e73be; } button.menu-toggle, button.menu-toggle:hover { color: #1e73be; } }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Themes and Templates
In reply to: [Storefront] Single Product Image Not ShowingHey @georgebounacos
Do you have any form of lazy loading enabled on your site? I can’t see if your site is connected with Jetpack, but if it is, check if you have it enabled under Jetpack → Settings → Performance.
Forum: Plugins
In reply to: [WooCommerce] Shortcode displays different in edit mode vs liveHey @stianand
By default, WooCommerce doesn’t have a quick view button, so it looks like this was added by a plugin — I think it’s this one you have on your site/
For any assistance on that, I’d recommend reaching out to the plugin’s own support team.
While we’re experts on our own products, third party plugins are best supported by their own resp. developers (and more importantly, I’d rather not give you any incorrect information).
It looks like that plugin’s info and support page can be found here:
https://wordpress.org/support/plugin/woo-quick-view/Forum: Plugins
In reply to: [WooCommerce] Display registration success messageHey @triros
To check if your message got through, could you share your WooCommerce.com username that you used when you purchased the extension? We can then look it up for you.
Forum: Plugins
In reply to: [WooCommerce] Agree to T&CHey @nobleshrimp
Sometimes, you may need to “nudge” your Permalink settings for this to work. To do this, go to Settings → Permalinks, change the setting to something else (and save), and then change it back to how it was before (and save again).
Let us know if that works! 🙂
Forum: Plugins
In reply to: [WooCommerce] woocommerce subscription or similarHey @lifecolorline
If I understand correctly, a subscription purchase means that the customer will have to pay once a month, for the duration of 6 months — in other words, they pay 6 times and then they won’t have to pay anymore. Is that right?
If that’s the case, you can set it up as a monthly subscription (renewing every month), and let it expire after 6 months.
Let me know if I understood that correctly!
- This reply was modified 5 years, 2 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] Critical error WooCommerce ReportsHey @jorisbudel
The Disable WooCommerce Bloat removes some “unnecessary” functionality from WooCommerce to lighten the load on your site/server, but that also means that when you do need this functionality (for example, by trying to access the Reports feature), it won’t work properly anymore.
Forum: Themes and Templates
In reply to: [Storefront] CSS Problem for Search Results Page HeaderHey @anasrahmoun
You can fix this with a little bit of custom CSS code.
Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
body.search-results #masthead { margin-bottom: 30px; }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Themes and Templates
In reply to: [Storefront] Mobile Menu has no background all of a sudden.Hey @popimp3069
By default, the background color of the mobile menu is transparent. However, that will not look great when you select a background image (as you’ve seen with your site) so that’s why it needs some extra styling.
To stop the header image from repeating, you can use the following CSS code:
#masthead { background-size: cover; }Forum: Themes and Templates
In reply to: [Storefront] Largeur de l’image avec widgets et bouton couleursHey @chezlibellule
If you want to make the main image as wide as possible,go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
.home .wp-image-3499 { width: 100%; }Select “Save Changes” from the top, and your changes will be applied to your site.
To change the colors of the buttons (or other elements), go to Appearance → Customize → Buttons, and you can choose different colors there.
Forum: Themes and Templates
In reply to: [Storefront] Customize Storefront Child ThemeHey @cntech
If you want the color changes to apply to non-mobile screens only, you can use this instead:
@media screen and (min-width: 768px) { .site-branding a { color: #fcc70d; } .site-header { background-color: #444444; } .site-branding .site-description { color: #ffffff; } .storefront-primary-navigation { background-color: #fcc70d; } .site-footer { background-color: #444444; } .site-info { color: #fcc70d; } }To change the colors in your footer, use this:
.site-footer .widget .widget-title { color: #fcc70d; } .footer-widgets .widget_text { color: #ffffff; }Forum: Themes and Templates
In reply to: [Storefront] Site Identity Logo DimensionsHey @eg1217
To stretch the logo image to fill up the entire space, and to reduce the space below the menu, you can use a little bit of custom CSS code.
Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
@media screen and (min-width: 768px) { .site-header .custom-logo-link, .site-header .custom-logo-link img { width: 100%; max-width: 100%; } .site-content .col-full { padding-top: 0; } }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Themes and Templates
In reply to: [Storefront] Order of elements on mobileHey @dvk8
Since these elements are spread out over different DIVs (e.g page title + text and products are in #primary, while search and filters are in #secondary), you won’t be able to mix them up on the order you want, at least not with CSS — you can only move the order of elements within the same DIV).
You’ll need to create a child theme, and then you can change the placement of elements by moving PHP code around in the templates.