Senff - a11n
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Bottom Page ProductsThese items appear when you set your homepage’s Template to “Homepage”:
Image link: https://d.pr/i/3cMmczIf you set it to “Default”, the products will not appear on your site’s homepage anymore.
Forum: Plugins
In reply to: [Smooth Page Scroll Up/Down Buttons] Only for BackendHey @cello1611
Sorry, the buttons are currently only for the front end of a site.
Forum: Themes and Templates
In reply to: [Storefront] removing blank space above footerHi @lynwoodt
The following CSS code should reduce the blank space above the footer:
.site-footer, .site-footer .site-info { padding-top: 5px; }Please let us know if that works! 🙂
Forum: Plugins
In reply to: [WooCommerce] Simple question; Is this link findable?Hi @calimellow
Scanning the page will not reveal the original location of the file. Just make sure you don’t share it publicly! 🙂
Whenever someone purchases the product, they will get a unique, encrypted link, so that will also not show the location.
Forum: Themes and Templates
In reply to: [Storefront] Woocommerce pagination shows on top and bottomHi @kristinubute !
You can do 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.archive #main .storefront-sorting:nth-of-type(1) .woocommerce-pagination { display: none; }Select “Save Changes” from the top, and your changes will be applied to your site.
If this doesn’t work for you, please share a link to your site so we can take a look.
Forum: Plugins
In reply to: [WooCommerce] I cant bulk edit products in percentHappy to hear it’s working now. I’ll mark this as resolved 🙂
Forum: Themes and Templates
In reply to: [Storefront] I want to fix this myself – how to?Hey @laithwark
Looks like you managed to find a solution, and the buttons are now centered. Are you all set with this?
Forum: Themes and Templates
In reply to: [Storefront] 2 column mobile view on homepageHey @aliaramli
You can do 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: 480px) { .wc-block-grid__products .wc-block-grid__product { width: 50%; float: left; } }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Themes and Templates
In reply to: [Storefront] Aligning logo and primary nav barHi @rawantxf
You can do 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 (min-width: 768px) { .woocommerce-active .site-branding { float: left; } .woocommerce-active .site-header .main-navigation { clear: none; width: 350px; } #menu-main-nav a { padding-top: 10px; } .site-header-cart { clear: both; } }You should see the changes right away, but this is just a preview for you, so you can experiment a little if you like.
Once you’re happy with it, select “Save Changes” from the top, and your changes will be applied to your site.Forum: Plugins
In reply to: [WooCommerce] Fatal Error member function get_sku() on null MetaHey @sameernxb
The Quick View functionality is not part of WooCommerce itself, so that comes from your theme or another plugin. I would suggest to check with your theme/plugin’s support team (depending on where this Quick View option comes from) to see if they can help with this.
Forum: Plugins
In reply to: [WooCommerce] I cant bulk edit products in percentHey @johanekman
Which of the three options do you use from the dropdown?
– Increase existing sale price
– Decrease existing sale price
– Set to regular price decreased byIf you use any of the first two, it will only work if the product is already on sale. If it’s not, it will indeed change it to 0.
If you want to set a sale price but the product is not on sale yet, use the third option.
Forum: Plugins
In reply to: [WooCommerce] I cant bulk edit products in percentHi @johanekman
Can you tell us a bit more about this, and what happens when you change the product’s prices in bulk?
Does it not apply the price change at all, or does it use the wrong amount?
Forum: Plugins
In reply to: [WooCommerce] products images in product menu are goneHey @lorseen
Could you please send me a copy of your site’s System Status Report? You can find it by going to your admin Dashboard and select WooCommerce → Status.
From there, select “Get system report” and then “Copy for support“. Once you’ve done that, you can paste it here in your response.
Forum: Plugins
In reply to: [WooCommerce] can’t delete guest userHey @mrunge
The Customers menu is basically a history of customers who placed an order, so in order to remove that, you’ll probably need to remove it from a few other places in the database than just the orders table.
In general, guest customers are part of the wp_wc_customer_lookup table, so you could look into that one, but I would do a full database search to look for other traces.
Of course, as always, make a backup before you make any changes 🙂
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart Overlap issueHey @ltribble
It looks like this issue (as with some others that you reported) are directly related to your theme. Have you checked this with their support team yet?
If they can’t help, I would recommend the conflict-testing steps here to isolate the source of the issue:Â
https://docs.woocommerce.com/document/how-to-test-for-conflicts/The best way to determine if the issue is being caused by a theme and/or plugin is to do the following:
– Temporarily switch your theme back to a default theme, such as Storefront.
– Disable all plugins except for WooCommerce.
– Clear your browser cache, and the cache on your site if you have one there.
– Test to see if the issue has been resolved.If that resolves the issue, then one-by-one you can switch back your theme and re-enable your plugins, testing in between, until the problem appears again. This will then give you an idea about which plugin is the one causing the conflict.