shereew
Forum Replies Created
-
Unfortunately not as I have had no reply ??
Forum: Plugins
In reply to: [ACF Theme Code for Advanced Custom Fields] Security updatesHi there,
Thanks for this – apologies if I am not understanding but as an example, for a text field, the output is:<?php the_field( 'text_heading' ); ?>
But the ACF recommendation is:
<?php echo esc_html( get_field('text_heading') ); ?>
I don’t know much about escaping, so perhaps I am missing something, but I have warnings generated by ACF if I don’t use the latter.
Thanks again
ShereeForum: Plugins
In reply to: [Page scroll to id] mPS2id_params is not definedHave done – thank you so much
Forum: Plugins
In reply to: [Page scroll to id] mPS2id_params is not definedHi there, I can – but I can’t post it publicly, is it possible to send to you privately?
ThanksHi there, sorry your last post told me to wait so I was.
It’s okay, I’ve managed to fix some of the site anyway. I’ll get there. Still can’t open any DAF files with the Mac download though. Would be great if there was an app or something
thanks
I second this. When flying scripts is enabled, all links have to be clicked twice. I see this reported ages ago but was marked as resolved (basically says it’s not the plugin) but I’m afraid it definitely is.
It’s a great plugin, and thank you, but unfortunately we can’t have people needing to click twice.Forum: Themes and Templates
In reply to: [Astra] Set Dropdown TargetSo sorry – i just found it!
Hi there
That Link is from 2017 but I have read the documentation for the major browsers and it should be allowed as long as it is muted with no audio track present
Thanks
Sheree
That’s fantastic – thanks for this
Sheree
Forum: Plugins
In reply to: [Meow Lightbox] Lightbox no longer working with WordPress 6.0Hi Jordy
Thanks for your message.
the two domains are
https://jacobitescotland.org/explore/castle-menzies/and
https://dpyachting.com/yachts/princess-56-2017/
For some reason this thread has been marked as resolved but unfortunately it’s not working on either.
I’m not sure I could replicate the issue.
For both sites it’s the latest WP and PHP Version 7.4.30
I have tried adding all of these as selectors but the meow classes that trigger the lightbox just never get added to the images and I can’t work out why
Yachting:
.the-image, .the-image img, .the-image a, .preview-image-container, .preview-image-container img, .listing-preview-gallery
Jacobite:
.gallery, .gallery-image
I disabled every plugin except the ones I had to have in order to display the images which are Advanced Custom fields, FacetWP and scroll triggered animations (I already tested scroll triggered animations by disabling the plugin and undoing the classes that initially hid the gallery items)
The code that displays the gallery on the yachting site is
<div class="preview-images-container"> <?php $gallery_images = get_field( 'gallery' ); ?> <?php if ( $gallery_images ) : ?> <?php foreach ( $gallery_images as $gallery_image ): ?> <div id="preview-image-container"> <div class="the-image"> <a href="<?php echo esc_url( $gallery_image['url'] ); ?>"> <img src="<?php echo esc_url( $gallery_image['sizes']['medium'] ); ?>" alt="<?php echo esc_attr( $gallery_image['alt'] ); ?>" /> </a> </div> </div> <?php endforeach; ?> <?php endif; ?> </div>
And for the Jacobite website
<?php if( get_field( 'gallery' ) ) : $images = get_field( 'gallery' ); $size = 'full'; // (thumbnail, medium, large, full or custom size) ?> <div class="gallery"> <?php foreach( $images as $image_id ): ?> <div class="gallery-image"> <?php echo wp_get_attachment_image( $image_id, $size ); ?> </div> <?php endforeach; ?> </div> <?php endif; ?>
If that is of any help
Thanks again for your help
Forum: Plugins
In reply to: [Meow Lightbox] Lightbox no longer working with WordPress 6.0Hi @tigroumeow
Unfortunately I have just had an email from another client saying the lightbox is not longer working for them either – but again I am getting no errors.
Are you able to take a look – I am happy to purchase the pro version if this would allow me to have the extra support?
Thanks
ShereeForum: Plugins
In reply to: [Meow Lightbox] Lightbox no longer working with WordPress 6.0Okay no problem.
thanks for this
Sheree
Forum: Plugins
In reply to: [Meow Lightbox] Lightbox no longer working with WordPress 6.0Hi Jordy,
I actually don’t get any php issues at all, which I know is not helpful sorry.
It just doesn’t work anymore.
Thanks
ShereeForum: Plugins
In reply to: [Meow Lightbox] Lightbox no longer working with WordPress 6.0Hi Jan
The issue I have with using full URL’s is that when someone googles that business name, this question will now pop up in Google search results. I have the exact same issue with Stack Overflow.
I generally prefer if clients and general web users do not see search results related to site issues, though in this case it does not matter.
In the future I will try emailing the URL to them or maybe even stop using business names in dev site URLS.
I will keep this in mind in the future.
Thanks
SHeree- This reply was modified 2 years, 4 months ago by shereew.
Forum: Themes and Templates
In reply to: [Astra] Mobile Breakpoint (new astra Builder)When I use your code
// Update your custom tablet breakpoint below - like return 921; add_filter( 'astra_tablet_breakpoint', function() { return 921; });
It shows ALL the pages on the website, not just the menu item
EDIT ** I set ALL the menu locations to my primary one, working now
- This reply was modified 2 years, 8 months ago by shereew.