Skip Navigation

[Résolu] How to use conditional and output what we need

This support ticket is created Il y a 4 années et 7 mois. 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.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10: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/Kolkata (GMT+05:30)

This topic contains 19 réponses, has 2 voix.

Last updated by fred-r.M Il y a 4 années et 7 mois.

Assisted by: Minesh.

Auteur
Publications
#1337261

Tell us what you are trying to do?

We have 2 custom fields, one is for a youtube video, the other one for a vimeo video. Both fields can be empty.

- Location Video (location-video), Youtube embeded
- Vimeo Video (vimeo-video), only the url string

1. I like to have, if both fields are empty, that it shows the featured post image.
2. If the youtube field has something in, it use to show this video. The featured image needs to be showed.
3. If this field is empty, but the vimeo field is filled, it uses to show the vimeo player. The featured image needs to be showed.

Is there any documentation that you are following? I tried to find anything, we used to have it, like this, but not working with the new version of toolset:

<p>[wpv-conditional if="( $(wpcf-location-video) ne '' )"]<iframe width="853" height="480" src="[types field='location-video' output='raw'][/types]" frameborder="0" allowfullscreen=""></iframe>[/wpv-conditional]<br />
[wpv-conditional if="( $(wpcf-vimeo-video) ne '' )"]<iframe width="853" height="480" src="[types field='vimeo-video' output='raw'][/types]" frameborder="0" allowfullscreen=""></iframe>[/wpv-conditional]  </p>
<p>[wpv-conditional if="( $(wpcf-location-video) eq '' ) AND ( $(wpcf-vimeo-video) eq '' )"][wpv-post-featured-image size='center' class='img-responsive']</p>
<div id="pin_btm"><a data-pin-do="buttonBookmark" href="<em><u>hidden link</u></em>" data-pin-tall="true"></a></div>
<p>[/wpv-conditional]</p>

Is there a similar example that we can see?

hidden link

What is the link to your site?

hidden link

#1337271

- if both fields are empty - show only featured image - correct
- if location-video is empty and vimeo-video is NOT empty - show vimeo, but not show featured image
- if location-video is NOT empty and vimeo-video is empty - show Youtube, but not show featured image

#1337273

Minesh
Supporter

Languages: Anglais (English )

Timezone: Asia/Kolkata (GMT+05:30)

Can you please try the following code and try to resolve your issue:

[wpv-conditional if="( $(wpcf-location-video) eq '' ) AND ( $(wpcf-vimeo-video) eq '' )"]
[wpv-post-featured-image size='center' class='img-responsive']
<div id="pin_btm"><a data-pin-do="buttonBookmark" href="<em><u>hidden link</u></em>" data-pin-tall="true"></a></div>
[/wpv-conditional]

[wpv-conditional if="( $(wpcf-location-video) ne '' ) AND ( $(wpcf-vimeo-video) eq '' )"]
<iframe width="853" height="480" src="[types field='location-video' output='raw'][/types]" frameborder="0" allowfullscreen=""></iframe>
[/wpv-conditional]

[wpv-conditional if="( $(wpcf-location-video) eq '' ) AND ( $(wpcf-vimeo-video) ne '' )"]
<iframe width="853" height="480" src="[types field='vimeo-video' output='raw'][/types]" frameborder="0" allowfullscreen=""></iframe>
[/wpv-conditional]
#1337275

Hi

Please check: hidden link

I get now a 404, where the iframe needs to be, with the follow source code:

<iframe src="[types field='location-video' output='raw'][/types]" width="853" height="480" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
#1337279

On this link: hidden link

As we not have both videos, it shows first the image, would be okay, but then it shows 404, where iframes are - they not need to show there

#1337281

Minesh
Supporter

Languages: Anglais (English )

Timezone: Asia/Kolkata (GMT+05:30)

Can you please share admin access details so I can see how you setup the things in backend.

*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.

I have set the next reply to private which means only you and I have access to it.

#1337287

Hi

hidden link

When I use this code

[wpv-conditional if="( $(wpcf-location-video) eq '' ) AND ( $(wpcf-vimeo-video) eq '' )"][wpv-post-featured-image size='center' class='img-responsive']

[wpv-conditional if="( $(wpcf-location-video) ne '' ) AND ( $(wpcf-vimeo-video) eq '' )"][types field='location-video'][/types]

[wpv-conditional if="( $(wpcf-location-video) eq '' ) AND ( $(wpcf-vimeo-video) ne '' )"]<iframe src="[types field='vimeo-video' output='raw'][/types]" width="853" height="480" frameborder="0" allowfullscreen="allowfullscreen"></iframe>

It shows the image as first, then the youtube video as second. And it likes to show the vimeo too.

If I use this code:

[wpv-conditional if="( $(wpcf-location-video) eq '' ) AND ( $(wpcf-vimeo-video) eq '' )"][wpv-post-featured-image size='center' class='img-responsive'][/wpv-conditional]

[wpv-conditional if="( $(wpcf-location-video) ne '' ) AND ( $(wpcf-vimeo-video) eq '' )"][types field='location-video'][/types][/wpv-conditional]

[wpv-conditional if="( $(wpcf-location-video) eq '' ) AND ( $(wpcf-vimeo-video) ne '' )"]<iframe src="[types field='vimeo-video' output='raw'][/types]" width="853" height="480" frameborder="0" allowfullscreen="allowfullscreen"></iframe>[/wpv-conditional]

It shows me [types field='location-video'][/types] - but no image.

So, we need to get the logic for showing what needs to get showed first. Then we need to work on the way how it shows. With your code, so additional [/wpv-conditional] - it not showing correct as it needs to be.

For the youtube video, as it is an embedded media, only show [types field='location-video'][/types] will show the video correct.

#1337291

Minesh
Supporter

Languages: Anglais (English )

Timezone: Asia/Kolkata (GMT+05:30)

so that is expected. Every conditional statement needs to be closed with [/wpv-conditional].

if [types field='location-video'][/types] holds the embedded content yu only need to display [types field='location-video'][/types].

Do you mean that with both the places where you display location-video and vimeo-video if both are empty, on both places you wanted to display the featured image. I need to see how you added the location-video and vimeo-video to your page. Can you please send me screenshot or access detaials?

#1337337
2019-09-11_13-51-59.png

Hi

So, I am using a "page block" this is from the theme IMPREZA. Inside there, I am able to add either as text or raw html the toolset stuff.

Other fields are working, either also with conditional. Contitional is somehow not working, when having {!{ instaed of [.

Also the closing conditional is not working, it will gives me just the shortcode part back.

Only adding the featured image, is working. Only adding the youtube video is working, as this is embeded. Where I have a bit troubles, to get a vimeo video added. But not sure, if we have this field filled in.

Regards,

Simon

#1337445

Minesh
Supporter

Languages: Anglais (English )

Timezone: Asia/Kolkata (GMT+05:30)

I need to check on your install how you added the fields and where its braking the things. Can you please share problem URL and access details.

*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.

I have set the next reply to private which means only you and I have access to it.

#1337731

Hi

Is there a way how I can check it? Or debug it? As I wrote earlier, it seems as the logic is not working as it needs to.

Regards

#1337741

Minesh
Supporter

Languages: Anglais (English )

Timezone: Asia/Kolkata (GMT+05:30)

#1337807

Hi

It seems, as it is not possible to show a field with a short code:

[wpv-conditional if="( $(wpcf-location-video) ne '' )"][types field='location-video' output='raw'][/types][/wpv-conditional]

This gives me [types field='location-video' output='raw'][/types], expected the url from the youtube video

[wpv-conditional if="( $(wpcf-location-video) ne '' )"][types field='location-video' output='raw'][/types]

This gives me the url from the youtube video

This:

[wpv-conditional if="( $(wpcf-location-video) ne '' )"]<iframe width="853" height="480" src="<em><u>hidden link</u></em>" frameborder="0" allowfullscreen=""></iframe>[/wpv-conditional]

Is working too...

Any idea what it could be? Seems like shortcode in shortcode not working

#1338531

Minesh
Supporter

Languages: Anglais (English )

Timezone: Asia/Kolkata (GMT+05:30)

I need problem URL and access details. Without checking how these conditional statements added from your backend I will not have any clue to give you and that help you in the right direction.

*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.

I have set the next reply to private which means only you and I have access to it.

#1339423

Minesh
Supporter

Languages: Anglais (English )

Timezone: Asia/Kolkata (GMT+05:30)

I'm checking the following page:
=> hidden link

But I do not find any conditional statement added to it. Can you please tell me where exactly you added those conditional statements which you mentioned in your reply here:
=> https://toolset.com/forums/topic/how-to-use-conditional-and-output-what-we-need/#post-1337287

Can you please share the link where you added those conditional statements.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.