Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Including Single product page into another pageThe
[product_page id=10]shortcode is what you need: https://docs.woocommerce.com/document/woocommerce-shortcodes/#section-10Forum: Plugins
In reply to: [WooCommerce] Order Error in my woo commerceYou need to contact the people that made the plugin and have them fix the error. There is nothing we can do here, as we do not have any control over that plugin.
Forum: Plugins
In reply to: [WooCommerce] Order invoices sometimes don’t display product variationsHmm, that is quite odd. If using the traditional attribute/variations functionality in WooCommerce, then it will always require both to be selected before adding to cart.
There must be something else at play here, perhaps a conflict with your theme or another plugin. Will be hard to find the culprit without this error being consistently reproducible. Have you been able to get the error to occur by doing test checkouts?
Forum: Plugins
In reply to: [WooCommerce] Order Error in my woo commerceThe “wooconnector” plugin is causing this. If you temporarily disable the plugin, this error should go away.
You will need to contact those plugin authors.
Forum: Plugins
In reply to: [WooCommerce] Override pluginWhat are you looking to do exactly? Need to be a bit more specific π
Forum: Plugins
In reply to: [WooCommerce] Am Getting 500 internal error when i click on any categoryThere’s quite a bit going on there.
Best to perhaps narrow down what is involved in this problem. Usually another plugin or the theme is involved, so follow this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4. You’ll be testing this with only the WooCommerce plugin active and a default WordPress theme. If the errors don’t happen then, you can start to enable things until the errors start happening again.
______
As for the error logs,
PHP Fatal error: require(): Failed opening required βC:\wamp64\www\MYDOMAIN\wordpress/wp-includes/class-wp-list-util.phpβ (include_path=β.;C:\php\pearβ) in C:\wamp64\www\MYDOMAIN\wordpress\wp-settings.php on line 97
You should re-install WordPress because of this recurring one. Go to Dashboard > Updates and click “Re-install now”.
Forum: Plugins
In reply to: [WooCommerce] WP Woocom shop page not showing all productsYes, the content will still be there when you re-activate a plugin. Deactivating doesn’t delete any data/settings, deleting / uninstalling a plugin can potentially delete data though. So you are safe to temporarily disable things.
And then not sure what you mean by the last two comments? You can click “Unsubscribe” on the right sidebar to unsubscribe from comments on this thread.
If you subscribed to the whole plugin, you need to unsubscribe with the button at the top of this page: https://wordpress.org/support/plugin/woocommerce/
Forum: Plugins
In reply to: [WooCommerce] Extra text on cod payment optionThe
array()text showed up when only the WooCommerce plugin was active along with a default WordPress theme in use? That seems fairly unlikely as everybody else using this payment gateway isn’t seeing this error. Could you take a screenshot of this happening with the above conditions? (Only WC active and a default WP theme).And then if it does still happen, have you made any code edits to the WooCommerce plugin itself, or do you have snippets like the above one anywhere else?
_______
As for the code snippet, that is incorrect use of the filter. Just need to return a string:
add_filter( 'woocommerce_cod_icon', 'change_cod_gateway_icon' ); function change_cod_gateway_icon() { return '<img src="https://pathtoimage.com/image.png" height="20" />'; }Forum: Plugins
In reply to: [WooCommerce] Redirect The Buy Button To Product PageOhh, what version of WooCommerce are you using? Thanks for the video by the way.
Need to be using a newer versions to use the above code snippets, as the third parameter
$argswas recently added to the filter to make snippets like this possible πForum: Plugins
In reply to: [WooCommerce] Woocommerce Multi VendorsIf you are in control of all products, then it’s really just the billing side of things that needs focus.
PayPal Adaptive Payments used to be perfect for this scenario, but PP seemingly is retiring it by not accepting new signups. https://docs.woocommerce.com/document/paypal-adaptive-payments/#section-9
So instead, this will likely just need a bit of customizations, perhaps using PP Mass Payments: https://www.paypal.com/us/webapps/mpp/mass-payout-payments
Forum: Plugins
In reply to: [WooCommerce] Class WC Background Process on line 101Probably best to find the underlining cause. As issues are temporarily caused by a plugin/theme conflict, let’s start there. Follow this guide to perhaps find a conflicting plugin or theme: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
- This reply was modified 8 years, 1 month ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Shipping classes now showing in productsHey Peter,
So you cannot select a shipping class when editing a product here: http://cld.wthms.co/bEBab6? And you are sure shipping is enabled and the product is not virtual?
Also shows in quick edit for me: http://cld.wthms.co/jSgW6h
If you cannot select a shipping class, even for a newly created non-virtual product, then there must be something causing a conflict. Need to temporarily disable all other plugins except for WooCommerce for testing.
Forum: Plugins
In reply to: [WooCommerce] After updating Woocommerce..It’s hard to say what exactly in your theme is at fault, as it could be anything/anywhere. This is something you will need to contact the theme authors about.
Forum: Plugins
In reply to: [WooCommerce] Admin pageYou’ve said very little about what was happening π
So the problem is that your ajax url is visible? Pretty sure that is unavoidable, at least by default.
Changing the admin location is custom, as will be changing/masking the ajax url.
Forum: Plugins
In reply to: [WooCommerce] WC_Cart::get_cart_url error line 3839So this problem occurs when only the WooCommerce and Jetpack plugins are active along with a default WordPress theme?
That seems odd to me, especially since the error you did post wouldn’t be related to Jetpack.
You said there was an “internal error”, than is usually a 500 internal server error meaning a fatal error happened. So could you ask your web hosts for the PHP Error Logs?