Francisco
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Gutenberg Block Selector Returns 404 Not Found@georgebest @chenryahts yes, and you can delete the extra form after.
hi, @tuseeqtoor, I solved this creating a different css class for the order-recieved endpoint checkout page depending on the order status:
add_filter( 'body_class', 'thankyou_class' ); function thankyou_class( $classes ){ if (is_wc_endpoint_url( 'order-received' )){ global $wp; $order_id = absint( $wp->query_vars['order-received'] ); $order = new WC_Order( $order_id ); if ( in_array($order->get_status(), ['completed', 'on-hold']) ) { $classes[]='ready-to-go'; } elseif ( $order->get_status() === 'pending') { $classes[]='pending'; } } return $classes; }
You can use the same for the page title as well:
add_filter( 'the_title', 'thankyou_title', 999, 2 );
Forum: Themes and Templates
In reply to: [Online Shop] widgets errorThe new gutenberg widgets are a mess, you can install Classic Widgets
Forum: Themes and Templates
In reply to: [NewStore] Front-page image size in html tagGreat!
Forum: Plugins
In reply to: [WooCommerce Tools] Translation issuesYes, yesterday I updated, thanks!
There’s only one place left I can’t reach easily: the products attribute row names in the compare table.
I did a 100% spanish translation if you are interested.Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] pwb-carousel > hide_empty – fail IIGreat!
Forum: Themes and Templates
In reply to: [Kadence] WooComerce stars inacuracyOh that explains it!
Now it is fixed.
Thanks to all, great support!Forum: Themes and Templates
In reply to: [Kadence] WooComerce stars inacuracyHi @hannahritner, thankyou.
This is so, so weird.
I have this 4 star rated product on a clean Woocommerce/Kadence site and this is what I see:Windows-Edge
Windows-Firefox
Chrome-Linux Mint
Firefox-Linux Mint
Android-Firefox?I’m the only one who get more than 4 star filled out?
Forum: Plugins
In reply to: [Chilexpress Shipping for WooCommerce] Diferencia con plugin oficialAh, perfecto, el tuyo funciona sin ser cliente. Fantástico. Muchas gracias, Esteban!
Forum: Themes and Templates
In reply to: [Kadence] WooComerce stars inacuracyNeither. Look at my screenshots, the star count is inaccurate, there must be 4 filled but it show 4 and a half filled out instead.
In your browser the stars looks bigger, I don’t know why. The issue seems to be related on the star font. But I look in every browser and device I got the same wrong font.Forum: Themes and Templates
In reply to: [Kadence] WooComerce stars inacuracyhI @ethicalimran, thanks, but it doesn’t work for me. The issue isn’t about the colors… this is weird. I see in your screenshot a different star font? more rounded?
here are screenshot of appling your code both in my site and in a complete Kadence-WooCommerce only site.
https://ibb.co/k8tRgp2
https://ibb.co/XVWGqqVEDIT:
When adding more letter-spacing fixs it but now stars are wrong in the review area below that uses the same css classes
https://ibb.co/g7v9F25- This reply was modified 3 years, 7 months ago by Francisco.
Exactly the same here, is sad this no longer get support or updates
Forum: Plugins
In reply to: [Carousel Slider Block for Gutenberg] Enable AutoplayThat’s great, now your plugin is the best, thanks!
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Feature request regarding brand logo classGreat!
Forum: Plugins
In reply to: [Essential Real Estate] “from” email headerI was able to configure the email delivery with a SMTP plugin. My client and its hosting have a mess in mail config I didn’t understand, but now it works.
Anyways maybe your plugin could implement the mail “from” setting?