nicw.a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Add create account link before the checkout pageHi @pleazo
I think you may find that the following combination of settings is what you are looking for.
Link to image: https://d.pr/i/rkZ1JsIf Dokan requires the customer to be logged in before reaching the checkout page, you may need to take another approach. The login section of the checkout page template, for example, can be modified by a developer.
Hi @zla520
Certainly, you are quite correct: this is not about your SSL certificate expiring – it’s about your host’s certificate trust store that appears to be failing a connection during the Google onboarding.
The platform you are using need to trust the ISRG Root X1 certificate: https://letsencrypt.org/docs/certificate-compatibility/#platforms-that-trust-isrg-root-x1
If you would prefer us to take a closer look, please contact us at WooCommerce.com > My Account > Support. You may need to create an account before you can access that page.
Please include a link to this forum thread, so that we can keep track of what’s already been done.
We will be able to help you further there.
Forum: Plugins
In reply to: [Meta for WooCommerce] Variable products not yncingHi @pierremare
It seems this may not be a memory issue. There are a number of outstanding issues with syncing variable products to Facebook
However, to investigate further would mean digging into your logs, therefore, please contact us at WooCommerce.com > My Account > Support. You may need to create an account before you can access that page.
Please include a link to this forum thread, so that we can keep track of what’s already been done.
We will be able to help you further there.
Hi @yaniparga
There are a number of reasons that tracking events in Google Analytics might not match the events that actually take place on your site.
You can read about some of them Her at Google Analytics Support
They include users who are blocking cookies, through to a mismatch in reporting timezones on your site. Could you take a look through the list and see if any of them might apply to you?
Forum: Plugins
In reply to: [Meta for WooCommerce] Multi Vendor Web SideHi @tniron
Regarding brands
Facebook for WooCommerce supports Product Brands for WooCommerce amongst others – basically any brand liisting using the taxonomy
product_brand.Regarding pricing
Products synced with Facebook must have prices. You can either choose not to syn ch the item or to set a Facebook only price.
Link to image: https://d.pr/i/OWSZVfRegarding product sets
Are you experiencing a specific error when trying to map your Facebook product sets to WC Product categories? Does the system pick up your product sets from Facebook at all, or does nothing display?
Finally, would you be willing to share logs?
Hi @smartlight
Could you confirm that you are trying to adjust the shipping methods available to your customer, changing them based on which payment method they are using?
So method A B and C is available through credit card checkout, while method D and E is only available if you are paying with Google Pay or Apple Pay?
Forum: Plugins
In reply to: [Meta for WooCommerce] PIXEL PROBLEMHi @paolo8913
Thank you for the System Status Report. I have checked your site, and the event data appears to be firing correctly, except that now I am seeing that the pixel is being activated on the site twice.
Link to image: https://d.pr/i/Bkexj7The Pixel Activated Multiple Times error means that a pixel with the same ID and event name was sent multiple times to Facebook. The same event should only occur once upon page loading. If the event is sent with different custom data parameters, those parameters should be aggregated into a single pixel event.
Forum: Plugins
In reply to: [WooCommerce] Apply a coupon after an order is completed using Paypal ProHi @caroso73
Could you please share a copy of your site’s System Status? You can find it via WooCommerce > Status. Select “Get system report” and then “Copy for support”. Once you’ve done that, paste it here in your response.
I’d just like to first of all make 100% sure of which PayPal extension you are using. Or if you know the full name and developer of the extension from your plugins page, just copy that to your reply here, and we don’t need the status report.
Hi @hussinsamir
Thank you for this.
If I could just rewind a little: you are currently experiencing very high CPU usage.
You previously identified deleting images as a cause of CPU spiking. I suggest taking a look at your SQL slow query log to find out more about the possible causes of the issues.
Finally removing the must use drop in plugin you have loaded for WooCommerce Admin Performance fixes (this was for 5.5) might help.
Forum: Plugins
In reply to: [WooCommerce] Sort attributes termsHi @pipoulito
That sounds strange and frustrating! Would it be possible to see see a screenshot of this behavior?
Also – would you be able to view console errors in your browser on this page? If you can, possibly you can report if there are any occurring.
Forum: Plugins
In reply to: [WooCommerce Square] No Locations PopulatingHi @wudman
Thank you for your feedback on this, it’s great to hear what steps you took to fix the issue, and to have them documented here for others who might have the same problem.
It’s what these forums are all about.
Forum: Plugins
In reply to: [WooCommerce Blocks] Cart quantity not updating & product not removingHi @shamar112
If I understand correctly, you are using the cart block and are referring to the cart block in action. Would it be possible to have a link to the site so that we can take a look at the problem in action?
Forum: Themes and Templates
In reply to: [Storefront] Center PaginationRemoving Pagination
Since you are currently using the Storefront theme, you can remove the pagination at the top of the page by adding the following code to your site, either in a child theme functions.php file, or by using a plugin such as code snippets.
function my_custom_remove_storefront_pagination(){ remove_action( 'woocommerce_before_shop_loop', 'storefront_woocommerce_pagination', 30 ); } add_action('init', 'my_custom_remove_storefront_pagination', 999 );This has been tested on the latest version of Storefront. Note the priority – the
remove_actionmust take place after the Storefrontadd_actionhas already happened.Centering pagination
There are a number of different strategies you could use here, and Google is probably your best friend for this, but centering the
<ul>element that contains the pagination can be done like this.woocommerce .storefront-sorting nav{ clear:both; width:100%; } .woocommerce-pagination { text-align:centre }However, as with most CSS, there are almost as many different ways to do this as there are designers writing CSS.
`Forum: Plugins
In reply to: [Meta for WooCommerce] Display prices without VATHi @fdanell
Is it possibly using your shop base address for the calculation? That might explain how the tax is being included.
Setting the Facebook price in the product will override tax settings, and always fall back to the Facebook price.
Link to image: https://d.pr/i/ihjLNuForum: Plugins
In reply to: [WooCommerce Blocks] hook to remove priceHi @jairoochoa
Since the blocks use the API, the traditional PHP hooks you mention here – which work on the shortcode and the traditional WooCommerce loop methods – do not apply to them.
Currently, the “Handpicked Products”, “Products by category”, “Newest products”, “Top rated products” blocks the option to switch cart buttons on and off.
Link to image: https://d.pr/i/NCkAUWIf you really want to hide the button in the All Products Block, you can use some CSS. I hope this is of some help.