shereew
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] {all} replacementApologies its specific to Processwire (I initially thought it was more universal)
It’s also looking more complex to swap out than thought one example is
Processwire
Source: link{all}
is equal to WordPress
Source: link(/.*)?
But I have a LOT of variations I need to work through – sorry I thought this might be a quick question that you could possibly help with but turns out it’s not π
Thanks thoughHI there,
Yes the browser guard is the cause – I was hoping there was s solution to this as I am concerned that anyone with the browser guard cannot see the tables etc. I raised it with Malwarebytes but they didn’t offer a solution.
For now I have out a note on the cookie policy page:
Please note, some features may not function correctly when using a browser guard.Forum: Themes and Templates
In reply to: [Astra] Taxonomy terms in search reultsHi there,
Thank you very much for this.
I am actually looking to show terms as a result.
So for example if you search say ‘fair
It would show:
Childrens fair (Custom post type) – which is already working
But it would also show ‘childrens events’ – the taxonomy as a link to the term page with the term title and description as well as showing this result in the live search box
Thanks!
ShereeHi there
thanks for your reply – I will try the workaround.
Do you happen to know – considering the product ID’s have changed, when I then import the customers, will their purchases align up to their accounts, given that the products they previously bought, now have these new IDS.
This is my main concern as I am dealing with products, subscriptions and memberhships
I hope that makes sense!
ThanksThis is happening to me too.
I have followed the steps above and its definitely caused by Yoast
Thanks
ShereeUnfortunately 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