crowds90
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] Inventory not syncing correctlyHi @shameemreza,
Thanks for getting back to me. Here is the log from yesterday: https://paste.mozilla.org/G4JREdSt
And the one from today: https://paste.mozilla.org/Srapfmhm
I should mention that I am still going through a bunch of the products to match them up correctly and I use a different name and description in Square vs Woocommerce but the variation SKUs will match. The example product from my previous post was still showing that wrong stock even before I changed the name and description on Woocommerce.
Forum: Plugins
In reply to: [Pofily - WooCommerce Product Filters] Color Attribute SwatchesAlso when I set my size attribute show type to checkbox it doesn’t show this (see image)
https://ibb.co/KyMKHnV
It only shows it when I select show type button and also for some reason when I select show type color swatches.- This reply was modified 1 year, 9 months ago by crowds90.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Change Add to Cart NamePerfect! Thank you again
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Change Add to Cart NameHere is the website
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Change Add to Cart NameHi @juaancmendez,
I tried but it wasn’t changing the ‘Add to Cart’ to ‘Add to Bag’
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Change Add to Cart NameHi @juaancmendez,
Just following up.
With the code, it changes all the carts in the wishlist to add to bag. (Screenshot 1)
Is there a way to have the ‘add to bag’ and keep the ‘select options’ if the customer has not chosen the variations. (Screenshot 2)
- This reply was modified 1 year, 12 months ago by crowds90.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Change Add to Cart NameThank you!
Hi,
I got it to work with the css lines in woo-variation-gallery > asstes > css > fronted.css [line number 376 to 1292] like you said and changed it in my additional css.
Thanks
Hi,
Thanks for the response.
It doesn’t seem to move the thumbnails to the bottom. It just keeps them on the left. Can they be moved to the bottom?
I do have the Small Devices Thumbnail Position set to Bottom if you might have thought that was the problem.
Doing this:
Copy the the media queries from woo-variation-gallery > asstes > css > fronted.css [line number 376 to 1292]
keep them inside appearance > customize > additional css
And replace each 767px with 900px.
Will fix that problem?
Hello,
The code didn’t seem to work.
It didn’t move the thumbnails underneath for a higher px but kept the thumbnail on the left and removed it so only 1 displayed.
The first image is what it originally looked like and the second it what happened when using the code:
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Remove from list textThank you!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Google PayFound it. #wc-stripe-payment-request-button-separator
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Google PayOk Thanks. The CSS kept the ” — OR — ” though between the Apple Pay and the add to cart. Is there something to hide the OR too?
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Same variation with different imageHi, So it is only a feature in the pro version then. Ok thanks.
If no one has found a solution I believe this is the code that works for me with WP All Import. Put in child theme function.php file. It usually deletes 99% of the products. If anyone knows how to get it to delete 100% the would help.
This is how I put in my WP All Import Template https://ibb.co/8r0GV3T
And remember you use Unix Time. So for example (1585480966)
add_action('pmxi_saved_post', 'post_saved', 10, 1); function post_saved($id) { $expiration_date = get_post_meta($id, 'expiration-date', true); if ($expiration_date) { $opts = array(); $opts['expireType'] = 'delete'; $opts['id'] = $id; echo "Setting expiration date for post " . $id . " to the timestamp " . $expiration_date; _scheduleExpiratorEvent( $id, $expiration_date, $opts ); } else { echo "No expiration date set for post " . $id . ". Exiting"; } }