Senff - a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce login requirementHey @erenekm
If you want certain products to be available to logged-in customers only, you could use a plugin. Here are two examples of plugins that can help with that:
https://woocommerce.com/products/woocommerce-memberships/
https://woocommerce.com/products/catalog-visibility-options/Forum: Plugins
In reply to: [WooCommerce] Add required checkbox to my account pageFor this, you might want to use a plugin such as Custom User Registration Fields.
Using that, you can add a checkbox to the user registration form, that your customer has to check in order to be able to register for an account.
Forum: Plugins
In reply to: [WooCommerce] Subscription method for woocommerceHey @alexiirj
There are other subscription-based plugins available, but most of them are paid plugins. Here are a few that appear to be free though:
https://wordpress.org/plugins/paid-member-subscriptions/
https://wordpress.org/plugins/paid-memberships-pro/
https://wordpress.org/plugins/yith-woocommerce-subscription/Forum: Plugins
In reply to: [WooCommerce] Database shrinks – images are deleted by themselvesHey @agunda
Databases don’t usually resize by itself, and images being deleted shouldn’t happen just like that either. Usually this could be caused by optimization plugins, but if you’re 100% sure that you don’t have any installed on your site, you might want to check with your host to see if they have any optimization processes running on the server.
Also, as this doesn’t appear to be a WooCommerce-specific issue, you may want to post it on the WordPress forum instead at https://wordpress.org/support/forum/how-to-and-troubleshooting/
Forum: Themes and Templates
In reply to: [Storefront] Single Product Image Not ShowingCoffee is welcome anytime! Glad it worked out. 🙂
Forum: Themes and Templates
In reply to: [Storefront] Can’t change header background colorHey @noritarte
When I look at your site, the header appears with a white background for me. Has this issue been resolved already, or are you still seeing it with a black background?
Forum: Themes and Templates
In reply to: [Storefront] Displaying product Category listHey @sami35
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:
.page-id-213 .wc-block-product-categories-list li { width: 40%; float: left; clear: none; } @media screen and (max-width: 768px) { .page-id-213 .wc-block-product-categories-list li { width: 100%; text-align: center; margin:0; } }Select “Save Changes” from the top, and your changes will be applied to your site.`
- This reply was modified 5 years, 2 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] Display registration success messageHey @triros
Can you contact us via our support form?
Please make sure you select “Core WooCommerce plugin” as an option (not Custom User Registration Fields or it will be sent to Addify) and include;
– details about what Addify told you exactly
– a link to to this forum threadWe can then look into it a bit more.
Forum: Themes and Templates
In reply to: [Storefront] Single Product Image Not ShowingHey @georgebounacos
I can see that the HTML on that page does not seem to close properly (there is nothing else after
<!-- #primary -->for example), so there are some things missing from your template.Do you see still this issue when you switch your site to Storefront (not the Storefront child theme you have now), and WooCommerce is the only plugin active?
- This reply was modified 5 years, 2 months ago by Senff - a11n.
- This reply was modified 5 years, 2 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] Show billing period after price in client emailsHey @anadavosagency
This may depend on which plugin you’re using to sell subscriptions. Are you using WooCommerce Subscriptions for that, or another plugin?
Forum: Plugins
In reply to: [WooCommerce] Cancel and Return buttonHey @teachermark
You may want to look into the Returns and Warranty Requests plugin, which adds the option for your customers to request a return of an item/order in their orders list.
Forum: Themes and Templates
In reply to: [Storefront] Header widthHey @sripujastore
This space is determined by the logo you’ve uploaded and that’s showing in the top left.
If you’d like to reduce that, you will need to use a smaller logo image. You can also reduce some of the spacing by adding some CSS code:
.site-header, #page { padding-top: 0; } .site-header .site-branding { margin-bottom: 0; }Forum: Plugins
In reply to: [WooCommerce] Display registration success messageHey @triros
It’s possible that this may be caused due to a theme conflict, or possibly any third-party plugin. I’d 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 and Custom User Registration Fields for Woocommerce.
– Clear your browser cache, and the cache on your site if you have one there.
– Place a test order 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.
If the issue still appears when your site is on a default theme, and WooCommerce and Custom User Registration Fields for Woocommerce are the only plugins active, let us know.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce checkout layout buggedHey @winterzoo
The reason for that is that your checkout page is divided into 2 columns, with each column having a maximum width of 8.3333%.
A quick fix would be to add this CSS code:
.woocommerce-checkout .col-1, .woocommerce-checkout .col-2 { max-width: 100%; }However, it’s best to check this with your theme’s support team/developer for any additional help or why it was coded like that.
Forum: Themes and Templates
In reply to: [Storefront] Modify Header Cart and Search sectionsHey @billy-boy-1
1) For changing text strings, we usually recommend using a translation plugin such as Loco Translate (you can find a step-by-step guide on how to do that right here), but if you already have Polypro for translations, it’s best to reach out to their own support team for any assistance with that.
2) This will require some additional custom code. I’m leaving this thread open so that others might be able to help with that.