jlstysis
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Shop Page – Align Product Images to BottomThank you
Forum: Plugins
In reply to: [WooCommerce] Shop Page – Align Product Images to BottomThis might be a workaround. Thank you.
Forum: Plugins
In reply to: [WooCommerce] Shop Page – Align Product Images to BottomAlso, if small images are positioned on a white background like the link above suggests, then all badges (new, sale, out of stock, etc) will appear above the actual image on the white space, which is not desirable.
Forum: Plugins
In reply to: [WooCommerce] Shop Page – Align Product Images to BottomHello again,
I’m selling children’s books. They all have varying sizes and aspect ratios and can’t be cropped.
My current shop page looks like this:
https://www.stysis.com/staging-backup-6-21-22/product-category/library/But I’d like it to look like this:
https://www.stysis.com/staging-backup-6-21-22/example1.jpgIn the example, all images are of different sizes but aligned to the bottom and badges are at the tops of images whatever height that may be.
Thank you for all your help!
Forum: Plugins
In reply to: [WooCommerce] Shop Page – Align Product Images to BottomThank you. Both of these posts are very old and don’t seem to help. ??
Creating a horizontal container rather than vertical is an effective workaround.
Also the following CSS resolves the issue. Thanks WooLentor support!.elementor-widget-woolentor-universal-product { width:100% }
Thank you! This does fix the issue.
I also found that creating a horizontal container rather than vertical is an effective workaround.Thanks for your help!
Forum: Plugins
In reply to: [WooCommerce] Shop Page – Align Product Images to BottomHi Igor. Both prod and staging are currently password protected, but this is standard behavior for any default woocommerce installation. I’m using astra. I reached out to them for assistance, but they told me to reach out to woocommerce instead.
- This reply was modified 2 years, 8 months ago by jlstysis.
Forum: Plugins
In reply to: [Sold Out Badge for WooCommerce] ElementorFound the fix!!!!
https://github.com/elementor/elementor/issues/5574
WebmonitorBondis on Apr 28Forum: Plugins
In reply to: [Sold Out Badge for WooCommerce] Change by catogoryWorks beautifully!
Thank you so much!!!Resolved
This helped a lot! Thank you very much!!!!
For anyone else who needs this, here’s the code:
add_action( 'woocommerce_before_shop_loop_item_title', 'display_author', 10 ); add_action( 'woocommerce_single_product_summary', 'display_author', 10 ); function display_author() { global $product; $author = $product->get_attribute( apply_filters( 'author_attribute', $attribute = 'writer' ) ); if ( $author ) { echo '<span class="author">' . esc_attr( $author ) . '</span>'; } }
Forum: Plugins
In reply to: [WooCommerce] Force Currency/Decimal FormatYes, of course. But that only affects Woocommerce. I have a membership plugin that works outside of Woocommerce and does not inherit the format settings from Woocommerce. It’s a global WrodPress setting somewhere. That’s why I did not post this in the Woocommerce forum, but in the general WordPress forum.
- This reply was modified 2 years, 9 months ago by jlstysis.
Forum: Plugins
In reply to: [WooCommerce] Force address fields to EnglishThank you for your replies.
“Checkout field editor” works on the checkout page (as designed), but it does not affect address fields on the My Account page (still working as designed).
Loco Translate seems like the path to go. I was just hoping to find a way to set locale for the address section of the page to have WordPress display it in English automatically rather than having to go into Loco and manually rename every state into English as well as the address field labels.
But I guess Loco it is.
Thanks again!Forum: Plugins
In reply to: [WooCommerce] Product Attributes Table FormattingWorks beautifully! THANK YOU SO MUCH FOR YOUR HELP!!!!!!
I also added the following:
.woocommerce table.shop_attributes th {text-align: right; !important;}- This reply was modified 2 years, 11 months ago by jlstysis.