Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] What is the default tracking template for?The form-tracking template is output when the
[woocommerce_order_tracking]shortcode is used on a page. It’s a rather unknown feature, so bonus points to you for being super thorough 🙂Shortcode output: https://github.com/woocommerce/woocommerce/blob/889a3cfdd5a1757b708f4b54d2d69850ab7d4644/includes/shortcodes/class-wc-shortcode-order-tracking.php
Forum: Plugins
In reply to: [WooCommerce] Unable to add Image to Product VariationThere’s probably something in the console if you look there as well. Here’s a guide for Chrome: https://developers.google.com/web/tools/chrome-devtools/console/
The error in the console might point to a specific plugin.
Forum: Plugins
In reply to: [WooCommerce] catt.php, malware?Hello,
Where is the file located exactly? It does look suspicious. There is no file by that name in the WooCommerce plugin. It’s probably in your website root, which means you sever was compromised.
So I recommend removing that file, and changing all passwords. WordPress admin accounts, FTP accounts, Database account, and updating wp-config.php with the new passwords for the database user.
More info: https://codex.wordpress.org/FAQ_My_site_was_hacked
- This reply was modified 8 years, 2 months ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Store is FrozenNeed to rule out plugin / theme conflicts. This guide can help find the plugin or theme culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Unable to add Image to Product VariationSimilar report here as well: https://github.com/woocommerce/woocommerce/issues/19260
So maybe check for the
Measurement Price Calculatorplugin.Forum: Plugins
In reply to: [WooCommerce] WooCommerce Subscription Set Billing IntervalHello,
I’m afraid we can only support the WooCommerce core plugin in the forums here per the forum rules.
You can submit a support ticket to the Subscriptions plugin authors though. If you are using the Subscriptions extensions from WooCommerce.com, you can submit your ticket from there.
- This reply was modified 8 years, 2 months ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] All Images disappeared from homepageThat is quite strange, haven’t heard of that happening before. WooCommerce may be trying to regenerate images though with new image sizes it needs, so could be related.
If that’s the case, you could try activating WC, then regenerating thumbnails all at once using https://wordpress.org/plugins/regenerate-thumbnails/
If that doesn’t help, then there must be another plugin or theme causing a conflict. So I would recommend disabling every plugin except for WC temporarily and test again. If it still happens, temporarily switch to a default WP theme as well. https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Not really sure I follow what you want to do. What is supposed to be in a separate column exactly? What data is not there that you need? Do you have any mockups of what you want?
Override this template in your child theme and remove the conditional: https://github.com/woocommerce/woocommerce/blob/master/templates/checkout/form-coupon.php#L27
Or, to avoid overriding templates, just hook into the
woocommerce_before_checkout_formhook with a priority of 9 I believe. And only output that same markup if coupons are applied.Forum: Plugins
In reply to: [WooCommerce] Customize archive-product.phpUse a hook like
woocommerce_before_shop_looporwoocommerce_archive_descriptionto add your special content to the page.Wrap the content in a conditional like this one: https://docs.woocommerce.com/document/conditional-tags/#section-5. So it only shows on a particular category page.
Forum: Plugins
In reply to: [WooCommerce] Check if product variation has imageEach variation is technically a
postin WordPress. So you can check for a featured image attached to the post/variation ID.https://developer.wordpress.org/reference/functions/get_the_post_thumbnail/
But yes,
$variation->get_image_id()will return the parent product’s featured image if one isn’t set on the variation: https://github.com/woocommerce/woocommerce/blob/826af31e1e3b6e8e5fc3c1004cc517c5c5ec25b1/includes/class-wc-product-variation.php#L351-L359Forum: Plugins
In reply to: [WooCommerce] Product attribute type has changed after WC update@bobteree Please read the full thread above and consider what options there still are.
You can still set the attributes to not be visible on the frontend: http://cld.wthms.co/rM3OPv. And, as you can see multiple times above, you can still enter free flow text using the custom attribute: http://cld.wthms.co/juaHl4. Or you can enter a new term to a global attribute using the add new button: http://cld.wthms.co/vEpkzQ
It seems that you’ve been mis-using the global attribute type. If values aren’t shared among other products, they should be product-level custom attributes.
Forum: Plugins
In reply to: [WooCommerce] Remove button on cart doesn’t worked1) Check for a theme + plugin conflict as this is the problem about 90% of the time. If this issue happens when using a default WP theme and only the WC plugin, then proceed to step 2. https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
2) Caching is likely the next culprit here. If possible, turn off any caching you can from the web hosting side. Else at least make sure the cart page is excluded: https://docs.woocommerce.com/document/configuring-caching-plugins/
3) The payment gateway. Though technically should have been discovered during the first step, see if this problem occurs when using a default payment gateway like Check Payments.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Category Issue “uncategorized”Issue opened here for this: https://github.com/woocommerce/woocommerce/issues/18929
- This reply was modified 8 years, 3 months ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Possible to bypass SHOP base page functionality?> The SHOP BASE PAGE overrides what I want my product page to look like.
Your theme is likely controlling this page, thus it’s your theme you do not like 🙂
1) This isn’t possible by default, but could be done with custom code.
2) There are some places where a shop page will need to be declared a believe. Such as the “continue shipping” notices and empty cart page.
______
What you’re struggling with is the way your theme handles default WooCommerce pages. Rather than trying recreate every page using shortcodes, it’d be better to find a theme that you like, else tailor the theme to look the way you want.