hsaada
Forum Replies Created
-
Forum: Plugins
In reply to: [Phone Orders for WooCommerce] realtime shipping in phone order pageHi there,
Thanks for the fast response. I did test it with the free version of the plugin and the shipping method is not available in the admin order page.Could you please look into this? we would be interested in developing a custom solution to integrate the two plugins.
How can we discuss further?
Thank you very much for your time!
Hi there,
I’m seeing the same error on 2 pages of my website. https://weldedwirefence.com/welded-wire-fence/vinyl-coated/1-x-3-x-12-5-gauge-galvanized-steel-core/amp/
both of the pages failed on the AMP validator:
https://validator.amp.dev/#url=https%3A%2F%2Fweldedwirefence.com%2Fwelded-wire-fence%2Fvinyl-coated%2F1-x-3-x-12-5-gauge-galvanized-steel-core%2Famp%2FAny help would be greatly appreciated. Thanks!
Forum: Plugins
In reply to: [Firelight Lightbox] Alt text of the imageGood to know! Thanks again for your help! ??
Forum: Plugins
In reply to: [Firelight Lightbox] Alt text of the imageThanks man! it worked!! I tried to correctly traverse the DOM to get to it but wasn’t successful.
Thank again and enjoy the rest of your day/night! ??
Forum: Plugins
In reply to: [Firelight Lightbox] Alt text of the imageThanks for looking into this. The photo description is available in the thumb view page but it’s hidden with CSS.
Here’s a direct link: https://www.academyfence.com/codes-and-permits/new-jersey/morris-county/madison/
(gallery is at the bottom of the page)
Thanks again! ??
Forum: Plugins
In reply to: [Firelight Lightbox] Alt text of the imageHi there,
Thanks very much for the great plugin. How can I pull the photo or media’s description in the overlay instead of displaying the “alt text”?
I tried the this code but it did not work. Thanks very much!
<script type="text/javascript"> jQuery(document).ready(function($){ $('a[href*=".jpg"],a[href*=".jpeg"],a[href*=".png"]').each(function(){ var capt = $(this).parent().find('p.gallery-item-description').text(); if (capt.length > 0) { $(this).attr('title',capt); } }); }); </script>