mother.of.code
Forum Replies Created
-
Hey there @flamekebab – I hear what you’re saying, that’s a frustrating thing to have happen! If you want, this would be a good thing to post to the WooCommerce GitHub page: https://github.com/woocommerce/woocommerce/issues
Doing that will bring it straight to the attention of the core developers, and they can address your idea directly.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce sorting is not working on affiliate shopHey @kamal612 – I can’t replicate this on my staging site and suspect there might be something going on with your theme. Can you temporarily switch to Twenty Twenty or Storefront and see if that improves things?
Forum: Plugins
In reply to: [WooCommerce] Time Zone in Confirmation emailsHey there!
This is something that is added by the plugin you’re using, as it’s not typical behavior for WooCommerce core. Can you let us know which plugin you’re using, so we can point you in the right direction?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce 4.0Hey there @themefour! Thanks for submitting your ideas, we appreciate you being part of the community.
Enhancement requests are best placed on our ideas board: http://ideas.woocommerce.com – that way our developers know what solutions our customers need as they can be voted up and prioritized based on demand.
Thank you!
Forum: Plugins
In reply to: [WooCommerce] Attibute and WoocommerceNo need to be sorry, it’s totally understandable that you’re trying to get help. Especially if you’ve been given links to specific forums.
I’m happy to close this topic but also still open to pointing you in the right direction. That will at least give you a solid starting off point to continue your search. What have the other parties said so far?
Forum: Plugins
In reply to: [WooCommerce] remove the Archive, Meta & search bar sectionHi Chris – I’ve taken a look, thanks for disabling the coming soon page for a bit.
The archive and meta sections are widgets that are set in the sidebar. I believe what you want to achieve is to remove the sidebar entirely, making the page full width – is that correct?
If that’s the case, I’d recommend against doing this purely via CSS hacks. It can be done, but a better approach is to set up a child theme and to remove the sidebar through there. You’ll want to ask the developer of your theme for guidance on the parts you need to edit, as they’ll have the best overview of this.
If you do want to go the CSS hack route, here’s a starting point:
div#secondary {display: none;} media (min-width: 992px) .col-md-9 { width: 100%;}Forum: Plugins
In reply to: [WooCommerce] Customizations on product pagesIf the Dokan theme is including the vendor functionality, you will need to ask the developers of the theme for assistance.
Forum: Plugins
In reply to: [WooCommerce Admin] Woocommerce dashboard showing no data.@s10dulkar please open a new topic for your request, as per @jdembowski’s recommendations above.
@edicolablack let us know how things go with WP Staging, I think that’s your best option here!
Forum: Plugins
In reply to: [WooCommerce] Remove Invalid Passoword noticeThe password hint you’re seeing is generated by the default WordPress login flow, and outputted in a WooCommerce notice. You could address it via CSS, similar to:
.page-id-XX .woocommerce-error { display: none; }You’ll need to replace
XXwith the ID of the login page. You can find that in the source code of the page: https://snipboard.io/gN7Hbf.jpgOtherwise, you’ll need to programatically remove the notice all together, but I’m not 100% sure on the function needed for that. You may want to ask in the general WordPress forums on that one.
Forum: Plugins
In reply to: [WooCommerce] Change URL woocommerce “Return to shop”Echoing what @crslz already said: please get in touch with the developer of the plugin you are using for the comparison page. They can point you directly to where the link of that button is located.
Forum: Plugins
In reply to: [WooCommerce] Problem of compatibility between woocommerce and elementorThanks!
Can you please confirm that you have gone through these exact steps:
1. Temporarily switch your theme back to the Storefront theme (it’s free)
2. Disable all plugins (even the ones you don’t think have any effect) except for WooCommerce
3. Test to see if the issue has been resolved.
4. If that resolves the issue, then slowly re-enable features until you find the one that’s causing the conflict.Forum: Plugins
In reply to: [WooCommerce] Attibute and WoocommerceHey Sam, I totally understand your frustration – I’d be frustrated too if it felt like different plugins were just pointing at each other!
The thing is this: this particular forum is meant for support of how WooCommerce core works. We’d love to help point you in the right direction (I’ll follow up on that shortly), but this is not the best location for help that is specific to a different product. The people who know most about those products you’re using typically do not visit here. Does that make sense?
Now, as for pointing you in the right direction: can you tell us what the other parties have said? Why is it WordPress’ or WooCommerce’s fault? Did they point to specific errors? Any further information that you can give us will help us help you further.
Thanks in advance!
Forum: Plugins
In reply to: [WooCommerce] Customizations on product pagesHey Chris,
add a vendor’s shop name under the product title in an item page?
That depends on the vendor plugin you are using – please include that information when opening a topic.
It’s something that’s automatically done when using Product Vendors.
show “VAT included (where applicable), plus shipping” under price (but when US sales tax or Canadian tax is to be charged, this should be incidated here too).
This needs custom code.
Remove all tabs here and have info show on page instead
This needs adjusting of your theme’s
single-productfiles. You can learn more about template overwriting here: https://docs.woocommerce.com/document/template-structure/Disabling tabs can be done through code snippets: https://docs.woocommerce.com/document/editing-product-data-tabs/
Include a field in the backend to show “additional information” (material, weight, size) above product description & not in tab.
You can use custom fields for this, no need to install anything. Go to Products > Add new > Screen options > Custom fields, then add a new field and fill in its contents: https://snipboard.io/yCb5hZ.jpg
€21.46 shipping to Germany” <-based on IP address but germany can be switched here
Again, this needs custom coding or a plugin.
I would like to add more products & reviews to be visible (instead of having tabs)
The answer for this is the same as your tab removal question; you’ll need to edit your theme to reflect this. It’s absolutely possible, but it requires some heavy customisation work. It’s best to hire a developer for this kind of extensive stuff, as it’s not something that you’ll achieve with a single line of code: https://woocommerce.com/customizations
Hope that helps. Have a wonderful day ahead!
Hi @arwah12 – I have to echo what @crslz has already mentioned. The best place to get help on the specific plugin you’re using is with the developer(s) who created it.
As a helpful answer has been given and further support has to come from elsewhere, I am setting this topic to ‘resolved’. Should you need more help, feel free to open a new topic!
Forum: Plugins
In reply to: [WooCommerce] Wrong price in WooCommerce after schedule sale date ending“special sale” Is the regular sale on woocommerce
In that case, you’re likely having a problem with WP cron jobs. More info on that can be found here:
– https://github.com/woocommerce/woocommerce/issues/16827
– https://nicola.blog/2016/11/01/scheduled-events-wordpress-cron-jobs/I recommend installing WP Crontrol – that should help.
Hope that helps. Have a wonderful day ahead!