Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] productlist for mobile deviceThis is something the theme didn’t account for. You will need to contact the theme authors about this, else switch to a theme with more fitting styles for your needs 🙂
My recommendation would be https://woocommerce.com/storefront/
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Shortcodes Displaying At Top Of ContentThe theme decides where content is placed. If you were to write normal text in the same place as the shortcode, wouldn’t it show up in the same spot on the page?
You can also temporarily switch to a default theme to test this.
Forum: Plugins
In reply to: [WooCommerce] Rows not filled up on product catalog pageThere is likely a conflict happening where products are being incorrectly filtered out of the archives.
Follow this guide to rule out other plugins and the theme as the conflict culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Compose orderAre you referring to the products search that pops up after you click this: http://cld.wthms.co/o0cxM6 ?
And if so, what is wrong with the search? A list of all products does not scale, search is arguable faster than selecting from a list of even just 15-20.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 3.3.3 import variation productProduct’s do not have “authors” by default, so there is no CSV column. If you need an author on a product, then it’s likely you have a vendors type setup? In which case, this is up to the Product Vendors plugin you are using.
Forum: Plugins
In reply to: [WooCommerce] Discount by total cart value?Yea, definitely going to require an extension. Give that one a try ^, looks neat.
Dynamic Pricing is another option.
Forum: Plugins
In reply to: [WooCommerce] Bookable products and Zapier bugHello,
I’m afraid this forum can only be used for WooCommerce core support. Both Bookings and Zapier are separate products, and integrated with separate (likely premium) extension that make it against the forum rules to support here.
You will need to contact the authors from where you got the Zapier connection plugin as I believe the issue is there. But first double check your Zaps and check the data coming into Zapier.
Forum: Plugins
In reply to: [WooCommerce] Sync 2 storeIt should be done through an app like Insomnia or Postman? Is there any other ways?
Those two apps are for testing/building with the REST APIs, they aren’t an end result. To truly use the REST API in the way you want, you’ll need to built out a custom solution that integrated with the api.
You are probably going to need to hire a developer for this if you want a polished solution:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/Otherwise, you can give import/exporting a shot – though it could get tricky with multiple languages: https://docs.woocommerce.com/document/product-csv-importer-exporter/
Forum: Plugins
In reply to: [WooCommerce] Order notification mails not receiving> No logs generated for orders.
Hmm, that means the emails aren’t even trying to be sent. Are new orders coming in and saying at the “pending payment” order status maybe? Emails will only be sent at “processing” / “completed” order statuses. If stuck in pending, that means your payment gateway is having trouble connecting back to your site to confirm the payment. That is what this section refers to in the email FAQ: https://docs.woocommerce.com/document/email-faq/#section-2
Secondly, just installing the “WP SMTP plugin” won’t do anything by default, as it still uses server email functionality as a default I believe. You’d need to switch to connecting to a third party SMTP to rule out server email troubles: https://docs.woocommerce.com/document/email-faq/#section-7
Forum: Plugins
In reply to: [WooCommerce] Add required billing address on registrationRight, you can have as many validation lines in the function as you need. It just needs to be hooked into the
woocommerce_process_registration_errorshook.Can change your function name and the hook callback to be something more generic if you want multiple validations. Also be careful about re-using variable names 😉
Forum: Plugins
In reply to: [WooCommerce] WooCommerce – blocking JavaScripts slow page load speedSome scripts need to be loaded in the header. My advice would be to focus on some other areas of site speed first, before getting into the management of scripts like this.
You do have full control of when and where scripts are enqueued in WordPress though, so all of this can be customized. However this is outside the scope of the support we can offer, because different plugins/theme will be expecting different things.
Forum: Plugins
In reply to: [WooCommerce] Paypal conversion tracking > return to shopOnce payed for, if the order status is automatically going to “processing payment” in WooCommerce then the IPN is already set up and working. If however the order status stays at “pending payment”, then you have IPN problems.
Forum: Plugins
In reply to: [WooCommerce] 10% discount for all itemsThat I’m not sure about, you’ll need to ask the plugin authors.
Otherwise, you can export products and bulk edit the sale price column to be empty.
Forum: Plugins
In reply to: [WooCommerce] since update woocommerce variations cannot be seenThe code that goes into your child theme’s functions.php file will be:
add_filter( 'woocommerce_hide_invisible_variations', '__return_false' );Forum: Plugins
In reply to: [WooCommerce] Cant Integrate paypal to my woocommerceI’m not familiar with that plugin, but the email form under post plugin, or something that will sound similar, has a Mandrill key area that you need to fill out. Else disable this plugin for now.
As for PayPal logs, you can enable debug mode in the settings for PayPal: https://docs.woocommerce.com/document/paypal-standard/#section-3
Then once the next PayPal error occurs, it will be logged at WooCommerce > Status > Logs. You will need to click on the log list and switch to the PayPal logs. Again though, do not post the logs here – there is likely sensitive data after you do a test purchase. So just do your best to read them and see what errors there are.