jessepearson
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] wp_1_wc_privacy_cleanup running amock@alexast Would you mind going to WooCommerce > Status, then using the button near the top left to copy the System Status Report then paste it here for me?
It almost sounds like a database update needs to be processed and the System Status Report would show that.
Forum: Plugins
In reply to: [WooCommerce] Remove meta info from specific email@maginem If you only want it to for the New Order email, then that seems correct. I added the below and the animation shows my result with the New Order email vs the Customer Invoice email:
if ( 'new_order' == $email->id ) { echo 'This is only in the new order email.'; }
Link to image: https://d.pr/i/w6RgEUForum: Plugins
In reply to: [WooCommerce] Create / Update Product when image not foundI’m wondering if there is a way to trigger the insert / update of the record even if the image is not found when importing products using a csv?
I am not sure what you mean by this.
Also when I have uploaded a new batch of images I would like to just upload the same complete csv again so that they start showing up.
If a csv is uploaded and the SKUs match, the data from the csv will overwrite the existing product information. This would add the new images to the products.
Forum: Plugins
In reply to: [WooCommerce] 695 sec to fully load an admin view of a product@wilfriedsdv Did you find a solution to this issue? I know that prior versions of WooCommerce had some issues with Action Scheduler adding more actions than needed if there was a conflict, which would slow down the admin. Other than that, it may be the front end has caching and the admin doesn’t, and the database server itself is quite slow.
Forum: Plugins
In reply to: [WooCommerce] Ability for client to update products from mobile@kristinubute There is the WooCommerce app, but presently it only allows for basic updates of Simple products. For complete store management, it’s much easier to work from the website admin area on a larger screened device.
Forum: Plugins
In reply to: [WooCommerce] Display selected shipping class on cart / checkout@piepie2 If you’re using Flat Rate shipping and need to display the class that was chosen based upon the most expensive shipping class, this would take custom development to be able to display something like that.
As an alternative, would it be better to charge per class and ship the cheaper items via one method and the more expensive items via another method?
There are a couple other solutions that provide conditional shipping methods, if you’re interested:
https://woocommerce.com/products/woocommerce-advanced-shipping-packages/
https://woocommerce.com/products/conditional-shipping-and-payments/Forum: Plugins
In reply to: [WooCommerce] Importing attribution variations as global@kontinyu This sounds like something similar that was happening with a previous version of WooCommerce. Can you confirm if the same thing still happens on the current version. If so, can you confirm that the parent product with the attributes is being imported before the children variations?
@mamashi Did you find a solution for this?
I would expect this code:
add_action('woocommerce_shop_loop_item_title', function() { echo '<div class="product_excerpt_archive"><a>bla</a></div>'; }, 15);
to first output the content from the
woocommerce_template_loop_product_title
function, which is theh2
and it’s contents.
https://github.com/woocommerce/woocommerce/blob/4.3.2/includes/wc-template-functions.php#L1125After that, then your added
div
should be next. So like this:<h2 class="woocommerce-loop-product__title">Chambre 1</h2> <div class="product_excerpt_archive"><a>bla</a></div>
Forum: Plugins
In reply to: [WooCommerce] Shop Thumbnail crop doesnt work@stelios1111 The theme itself may have set up custom image sizes and are using those thumbnails instead. Can you confirm if you’re still having the issue or have found a solution?
Forum: Plugins
In reply to: [WooCommerce] Setup failedWe haven’t heard back from you in a while, so I’m going to mark this as resolved. If you have any further questions, a new thread can be opened.
Forum: Plugins
In reply to: [WooCommerce] Remove meta info from specific email@maginem This really depends on the information you’re looking to have removed. Do you have an example or a screenshot of what you’d like removed?
Forum: Plugins
In reply to: [WooCommerce] Update all woocommerce sub sites database under network@vidishp Due to plugins can be activated network wide or on a site by site basis, it’s not wise for the WooCommerce plugin to assume all sites on a network are up to date with the current WooCommerce version and then push database updates to all sites. Database updates are typically also a manual process due to we recommend backing up first.
I am sure a custom solution could be created to solve the issue, but you may need to reach out to a developer for that: https://woocommerce.com/customizations/
Forum: Plugins
In reply to: [WooCommerce] BtoBtoC on Woocommerce@arthurpel If you’re wanting to allow a group leader to give access to members of a group, then the members are able to purchase through a site, the Teams for WooCommerce Memberships extension would work for this.
The leader controls the membership, yes, but each member can then purchase through the site.
https://woocommerce.com/products/teams-woocommerce-memberships/
Forum: Plugins
In reply to: [WooCommerce] Upload unrecognised server response@mattmco Did you determine a way to resolve this? I seem to remember working on something like this before and the issue was that the site’s server itself is still acting as a pass through for the file, and due to that it times out. The direct links work since they are directly to the source and not through the site.
Forum: Plugins
In reply to: [WooCommerce] Imported products are not visible unless manually updatedWe haven’t heard back from you in a while, so I’m going to mark this as resolved. If you have any further questions, a new thread can be opened.