Skip Navigation

[Resolved] Vimeo and photos are missing now but it worked months ago when we first added it

This support ticket is created 4 years, 10 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 5 replies, has 2 voices.

Last updated by Waqar 4 years, 10 months ago.

Assisted by: Waqar.

Author
Posts
#1585981
screencapture-beaconspecialized-org-individual-home-beacon-springs-east-2020-04-14-15_52_05.png

We used Toolset last year and had this website coded the right way that we wanted to. Unfortunately now that we review the site, the Vimeo is missing and some of the photos are missing and it is not clickable. Not sure where the code is wrong. We also renewed our subscription today after it being expired for a month or two.

#1586283

Hi,

Thank you for contacting us and I'd be happy to assist.

Can you please check your website's plugin list to confirm if all the required Toolset plugins are still active?
( WP Admin -> Plugins -> Installed Plugins )

Please also make sure that WordPress, active theme and plugins are all updated to their latest versions.

In case the issue still persists, please share temporary admin login details, along with few example pages with missing elements.

Note: Your next reply will be private and please make a complete backup copy, before sharing the access details.

regards,
Waqar

#1588399

Hi! Is there any update?

#1588433

Hi,

Thank you for sharing the admin access.

I noticed that the screenshot you shared was from "Berrien Center | Beacon Springs East" post:
hidden link

On the post's edit screen ( hidden link ), you'll see that the gallery images and Vimeo custom fields data is still saved.
( screenshot: hidden link )

The post type "Individual Home - Toolset" that this post belongs to, is set to use a layout named "Template for Individual Homes - Toolset":
hidden link

But on this layout, only the shortcodes of a few of those fields are added, which is why not all of them are showing.

Did you or someone else make any changes to this layout? If you or your web host has an older backup copy of the website, then that can be used to quickly restore how this layout was previously set up.

If no backup is available, then you can simply add shortcodes of other fields in the layout as needed and they'll start showing on the front-end too.

I hope this helps and please let me know if you need any further assistance around this.

regards,
Waqar

#1590005

That worked! The only thing is that before, the gallery was clickable and we could see larger images, but now I see all three photos are there but you can't click on it. Is there a quick fix for this? Thank you!

#1592787

Thanks for the update and glad that it works.

For the gallery image fields, I noticed these are the shortcode that you're using:


[types field='gallery' title='%%TITLE%%' alt='%%ALT%%' size='full'][/types]

[types field='gallery-2' title='%%TITLE%%' alt='%%ALT%%' size='full'][/types]

[types field='gallery-3' title='%%TITLE%%' alt='%%ALT%%' size='full'][/types]

To make those images clickable links, you can wrap them in link HTML, like this:
( ref: https://toolset.com/documentation/customizing-sites-using-php/functions/#image )


<a href="[types field='gallery' size='full' url='true'][/types]">[types field='gallery' title='%%TITLE%%' alt='%%ALT%%' size='full'][/types]</a>

<a href="[types field='gallery-2' size='full' url='true'][/types]">[types field='gallery-2' title='%%TITLE%%' alt='%%ALT%%' size='full'][/types]</a>

<a href="[types field='gallery-3' size='full' url='true'][/types]">[types field='gallery-3' title='%%TITLE%%' alt='%%ALT%%' size='full'][/types]</a>

regards,
Waqar