Saltar navegación

[Resuelto] Split: Can’t figure out Flexslider

Este hilo está resuelto. Aquí tiene una descripción del problema y la solución.

Problem:

Create a flexsider with Types custom image fields.

Solution:

See the solution here:
https://toolset.com/forums/topic/split-cant-figure-out-flexslider/#post-948100

Relevant Documentation:

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

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/Hong_Kong (GMT+08:00)

Este tema contiene 3 respuestas, tiene 2 mensajes.

Última actualización por Luo Yang hace 6 años, 6 meses.

Asistido por: Luo Yang.

Autor
Mensajes
#948098

That is great and I'm really happy for the help, but I thought there was a way to show the pictures at the bottom for the navigation? I know I'm asking a lot but it's so close to be exactly the way I want it. 🙂

#948100

Hello,

I assume we are talking about this kind of sliders:
enlace oculto

If it is, you just need to setup the HTML codes according to above document, for example, edit the content template, use below codes:

<div class="flexslider">
    <ul class="slides">
      [wpv-for-each field="wpcf-more-images"]
<li data-thumb="[types field="more-images" url="true" width="120" height="" size="thumbnail"][/types]">
  <img src="[types field="more-images" url="true" width="120" height=""][/types]" alt="[wpv-post-title]">
</li>
  [/wpv-for-each]
    </ul>
</div>

modify the JS codes as below:

( function( $ ) {
    $( document ).ready( function(){
      $('.flexslider').flexslider({
    animation: "slide",
    controlNav: "thumbnails"
      });
    });
})( jQuery );

Then test it in front-end:
enlace oculto

Please let me know if it is what you want

#948488

Yes. It's perfect.

I VERY MUCH appreciate you helping me with this. Thank you so much.

#948914

You are welcome