Caleb Burks
Forum Replies Created
-
Could you please paste a copy of your site’s System Status Report here? You can find it via WooCommerce > Status. Select “Get system report” and then “Copy for support”.
Forum: Plugins
In reply to: [WooCommerce] Upload not possible anymoreCould you take a screenshot of the error that is occurring? I recommend https://snag.gy for easily sharing screenshots.
This is likely a permissions issue, and probably something you should contact your web hosts about.
Forum: Plugins
In reply to: [WooCommerce] Add navigation link at bottom of product category pagesPossible, but will require some customization. The snippet will be something like this:
add_filter( 'woocommerce_after_shop_loop', 'wc_ninja_add_content_on_category_pages', 30 ); add_filter( 'woocommerce_no_products_found', 'wc_ninja_add_content_on_category_pages', 30 ); function wc_ninja_add_content_on_category_pages() { if ( is_product_category() ) { echo '<a class="button" href="http://brossiebellecom.ipage.com/new/rentals/">Back to All Categories</a>'; } }Which utilizes the hooks on this template: https://github.com/woocommerce/woocommerce/blob/master/templates/archive-product.php
Here is a guide on adding custom code to your site: https://calebburks.com/correctly-add-custom-code-woocommerce/
Note this will likely require some custom CSS as well.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce mails not receiving suddenlyThat snippet will set up emails to be sent after an order is created (for performance reasons). Did that solve the problem and now emails are sending, or?
With emails not showing up in the logs at all, that means something is stopping them from even being sent. First, make sure the emails are enabled at WooCommerce > Settings > Emails.
If the problem still happens, the next thing to do is rule out plugin/theme conflicts: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Whole site went downI’m not seeing any other duplicates, maybe missing something?
If you still need some help with this, please add some more info again. Sorry if it was removed incorrectly, but I’m thinking maybe you double posted and forums mods ended up deleting the other as well.
Forum: Plugins
In reply to: [WooCommerce] Error: Invalid parameter(s): imageIt’s looking for an object. So this if the image ID already exists on your site:
wp wc product_cat update 36 --image="{id: 186}" --user=1Or this if is is offsite and needs to be imported:
wp wc product_cat update 36 --image="{src: 'https://example.dev/path/to/image.png'}" --user=1- This reply was modified 8 years, 1 month ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] New Customer Order Emails Suddenly NOT SendingAre you using a custom domain email address for the first recipient? If so, it’s likely there is a problem sending to the custom email address.
Forum: Plugins
In reply to: [WooCommerce] Extra text on cod payment optionOh, my bad. So you only want to return the image source with that filter:
add_filter( 'woocommerce_cod_icon', 'change_cod_gateway_icon' ); function change_cod_gateway_icon() { return 'https://s.w.org/images/home/screen-themes.png?3'; }You would do all of the markup if using this filter: https://github.com/woocommerce/woocommerce/blob/28a4e88811abd53280cc05f20067ce26e54826e4/includes/abstracts/abstract-wc-payment-gateway.php#L306
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Digital Download Link ChangedI’m not sure I understand still. All of the download methods are working correct for me, the download URL is meant to be obscured – and it is only downloadable when you are logged into the account that purchased the product.
Sounds like you got this working to fit your need though? So I am going to go ahead and mark as solved.
Forum: Plugins
In reply to: [WooCommerce] Variable product price free or without priceNeed to set this filter to false: https://github.com/woocommerce/woocommerce/blob/d5e98e8d081574f3ce6ccd1d35357a6e011ff610/includes/class-wc-product-variable.php#L279
So:
add_filter( 'woocommerce_hide_invisible_variations', '__return_false' );Again though, what is the point of showing selections like this when the user can’t add to cart? If it’s a product just for display, might as well just show them a table in the description or something to show the options?
Forum: Plugins
In reply to: [WooCommerce] Redirect The Buy Button To Product PageCould you post your system status report? More specifically, is your theme overriding the
templates/loop/add-to-cart.phptemplate?Forum: Plugins
In reply to: [WooCommerce] Cannot declare class WC_Settings_Products ?You have no other plugins activated on the site? This error happens when only the WooCommerce main plugin is active?
Could you please paste a copy of your site’s System Status here? You can find it via WooCommerce > Status.
Forum: Plugins
In reply to: [WooCommerce] When I click on “All” on the order screen..Check “Screen Options” in the top right corner of the admin orders screen: http://cld.wthms.co/7v5oal
If that does not help, then there is likely a theme/plugin conflict occurring: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Override pluginHere is a guide on how template overrides work: http://docs.woothemes.com/document/template-structure/
This is something best left to the theme author though. You may need to hire a developer if you aren’t comfortable building/coding themes and the theme author isn’t keeping things up to date.
Forum: Plugins
In reply to: [WooCommerce] Update price in cart when price is updated in backendWhat version of WooCommerce are you using? I just tested this and the cart does update the product price after I refresh the page.
Also make sure there is no caching on the cart/checkout pages: https://docs.woocommerce.com/document/configuring-caching-plugins/