alby54
Forum Replies Created
-
The soulution you posted works only if you have one currency. Otherwise, I would reccommend using CSS:
span.woocommerce-Price-currencySymbol {margin-left: 3px;}
Of course margin is related to font-family…adjust accordingly.
- This reply was modified 4 years, 10 months ago by alby54.
Forum: Plugins
In reply to: [Email Address Encoder] EAE with Tablepress problem (reloaded)Adding the ‘s’ solved the problem…I got the script from this post: https://www.ads-software.com/support/topic/using-email-address-encoder-with-tablepress-2/ where the s was missing. Thank you Till.
Forum: Fixing WordPress
In reply to: Custom link as a parent pageNope, I used Custom Permalinks but I had to give up on breadcrumbs.
Forum: Plugins
In reply to: [CatalogX - Product Catalog Mode For WooCommerce] Privacy checkboxYes, failing to accept the Privacy policy (marking the checkbox) should generate an error message like “Privacy policy acceptance is missing”. Also in the email that the admin is receiving there should be something like ‘Privacy acceptance= true”, because that’s the proof that the user has accepted the policy.
Forum: Plugins
In reply to: [CatalogX - Product Catalog Mode For WooCommerce] Privacy checkboxHi, I’m using ver. 2.3.4 of the plugin with WP 4.7. You can check it @ angolodeiricordi … all I need is to make the checkbox acceptance required with the relative error message in case of non-acceptance and possibly make it show as verified on the receiving email. Thank you.
Forum: Plugins
In reply to: [Product Enquiry for WooCommerce] Privacy checkboxThanks for your reply. It’s a typical Privacy acceptance checkbox (required) that has to be placed right before the submit button and must be followed by couple of strings of explanatory text containing a link to Privacy & Cookies page.
Forum: Plugins
In reply to: [WooCommerce] Unable to place order. No parent product set for Variation.It does help! you saved my life, my client was freaking out because orders would be all blocked with $0 amount but disabling giftcard put every thing back to work. Thank you.
Forum: Fixing WordPress
In reply to: Custom link as a parent pageThank you Kevin, Custom Permalink solved the problem with the URL and that’s what I mainly needed in this project. Unfortunately it doesn’t work with breadcrumbs.
Forum: Fixing WordPress
In reply to: Set media default size as full image sizeThank you Will, it worked perfectly!
Forum: Plugins
In reply to: [Agreeable] bug with last updateI have ver. 1.4 and still see HTML in lightbox…. I wonder if this plugin has ever worked properly before.
Forum: Fixing WordPress
In reply to: Load different headers based on post parent categoryOk, I solved the problem using this code in functions.php
if ( ! function_exists( 'post_is_in_descendant_category' ) ) { function post_is_in_descendant_category( $cats, $_post = null ) { foreach ( (array) $cats as $cat ) { // get_term_children() accepts integer ID only $descendants = get_term_children( (int) $cat, 'category' ); if ( $descendants && in_category( $descendants, $_post ) ) return true; } return false; } }
and placing this other code in single.php
if ( in_category( 'approfondimenti' ) || post_is_in_descendant_category( 24 ) ) { get_header('regular-approfondimenti'); } elseif ( in_category( 'le-tue-campagne-salute' ) || post_is_in_descendant_category( 25 ) ) { get_header('regular-le-tue-campagne-salute'); } else { get_header('regular'); }
where 24 and 25 are the ID of the two categories…and it worls like a charm. Thanks anyway.
Forum: Plugins
In reply to: [m1.DownloadList] Icons not showingYes, it’s working fine now. Thnx
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Weird mouse trap behaviorUnfortunately I followed the wrong suggestion to regenerate thumbnails and now even the products on main page have the problem. My official site though, still shows what I mean: Mouse trap OK(square)
Weird mouse trap (rectangular)Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Weird mouse trap behaviorAfter one month of support-silence, I guess it does NOT work on products which are not in the main list ….period!
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Weird mouse trap behaviorLink to the correct behavior in a single product page: mouse trap OK
Link to an accessory page (product list by category): wrong mouse trap