Senff - a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce SubscriptionsHey @szymmonn
Yes, this can be done. Basically, you will need to use a signup fee and a free trial period of about 15 days.
Example 1: customer signs up on the 12th of January → free trial ends on the 27th of January → next payment is on February 5.
Example 2: customer signs up on the 23rd of January → free trial ends on the 8th of February → next payment is on March 5.You’ll also need to set a Sign-up fee, to ensure that the customer will make their first payment when they purchase the product.
Hope this helps!
- This reply was modified 5 years, 5 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] torefront megamenu does not save changesHey @javierlinares
Could you share 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 this chat.
Forum: Plugins
In reply to: [WooCommerce] Make grey out ”add to cart button” blackHey @rogierthe
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:
.single-product.woocommerce button.button.disabled { opacity: 1; }Select “Save Changes” from the top, and your changes will be applied to your site.
Hey @mixos
By default, you don’t have to do anything. However, if you have implemented any additional security measures to your site that block certain IP addresses, then you would need to update that.
Hope this clarifies it a bit!
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Shipping MethodsHey @thehealthacks
Can you explain this a bit more? The way I understand it, you’d like to set it up like this:
Customers from Germany:
– free shipping if order is over 140Customers from elsewhere:
– free shipping if order is over 140
– 4.95 shipping if order is below 140That doesn’t mention what shipping should be for German customers if the order is below 140 though, what should that be?
Forum: Themes and Templates
In reply to: [Storefront] Left Align Footer Nav Widget without iconsHey @mattperry008
To left-align the menu, you can use the following CSS:
.widget_nav_menu ul li { padding-left: 0; }Forum: Plugins
In reply to: [WooCommerce] shipping zone is not workingCould you also share 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: Themes and Templates
In reply to: [Storefront] Resizing Columns in FooterHey @proximateprose
Thanks for the link. You can use the following CSS code to make the columns a bit wider:
@media screen and (min-width: 768px) { .footer-widgets.col-4 .block.footer-widget-1{ width: 40%; } .footer-widgets.col-4 .block.footer-widget-4 { width: 50%; } }Forum: Plugins
In reply to: [WooCommerce] Shipment costs FranceHey @rickloftdeur
You have quite a few plugins installed so it’s possible one of those is causing the issue here.
Let’s try something else first. Can you go to WooCommerce → Settings → Shipping → Shipping Options, enable Debug Mode and then enter an address in France on the checkout page? You should then see a notification at the top that says which Shipping Zone is being applied here.
Forum: Plugins
In reply to: [WooCommerce] How to grey out out-of-stock productHey @romandas
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:
li.outofstock { filter: grayscale(1); }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Plugins
In reply to: [WooCommerce] Additional field in the cardYou might want to look into using WooCommerce’s default functionality with Attributes: https://docs.woocommerce.com/document/managing-product-taxonomies/#section-6
Using those, you can add brands, countries, manufacturers, etc. to your products.
Forum: Plugins
In reply to: [WooCommerce] Not performing after integrationHey @ekaljain
It’s possible that this may be caused due to a theme conflict, or possibly a 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 your courier plugin (if you have it).
– 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.
If the problem still occurs when all plugins are deactivated, you’ll need to ask for more details from the courier partner about what’s not going right exactly (what “required actions” are they referring to, for example).
Forum: Plugins
In reply to: [NSFW] [WooCommerce] shop is not workingHey @nawwarstore
Could you please share 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 this chat.
Forum: Plugins
In reply to: [WooCommerce] shipping zone is not workingCan you tell us a bit more about what’s not working exactly?
For example, how are your shipping zones set up (and with which shipping methods)?
If you can give us a few more details, it’ll be easier for us to help 🙂
Forum: Themes and Templates
In reply to: [Storefront] Resizing Columns in FooterHey @proximateprose
Can you share a link to your site? That way we can take a look and see what CSS you can add to change this.