Skip Navigation

[Resuelto] repeating url field output from view – with appended path

This support ticket is created hace 2 años, 5 meses. 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.

Hoy no hay técnicos de soporte disponibles en el foro Juego de herramientas. Siéntase libre de enviar sus tiques y les daremos trámite tan pronto como estemos disponibles en línea. Gracias por su comprensión.

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)

Este tema contiene 2 respuestas, tiene 2 mensajes.

Última actualización por malagaS hace 2 años, 5 meses.

Asistido por: Minesh.

Autor
Mensajes
#2403333

Tell us what you are trying to do? output a repeating url field with path appended to beginning

Is there any documentation that you are following?

Is there a similar example that we can see?

What is the link to your site? enlace oculto (dev)

this is what i have: enlace oculto field='listen-link' output='raw'][/types]" target="_blank" rel="noopener">Listen
but 'listen-link' is a repeating field.
the output is enlace oculto
how do I output so that I get each item separately with 'enlace oculto' appended to the front?

#2403475

Minesh
Supporter

Idiomas: Inglés (English )

Zona horaria: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

You can use the view's shortcode [wpv-for-each] in order to loop through all the repeating field instance:
- https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#vf-153482

For example:

<ul>[wpv-for-each field="wpcf-listen-link"]
<li> 
<a href="<em><u>enlace oculto</u></em> field='listen-link' output='raw'][/types]" target="_blank" rel="noopener">Listen</a>
</li>
[/wpv-for-each]
</ul>
#2403633

thanks Minesh. My issue is resolved now.