Por favor ingresa o regístrate.

Ingresar con nombre de usuario, contraseña y duración de la sesión

Autor Tema: video in carousel  (Leído 95 veces)

Desconectado mikehoff

  • Nuevo
  • *
  • Mensajes: 5
  • Reputación: 0
    • Ver Perfil
video in carousel
« en: Julio 16, 2010, 02:29:27 »
hello.

I'd like to be able to include video in a carousel, as well as images and links.

I see another thread on this topic but there is no solution shared and the topic was closed.

Is this possible? Any help on how to do so?


Desconectado Sumolari

  • Administrator
  • *****
  • Mensajes: 234
  • Reputación: 4
  • Sexo: Masculino
  • SumoAdmin
    • Ver Perfil
    • Sumolari.com
Re:video in carousel
« Respuesta #1 en: Julio 16, 2010, 02:53:02 »
The only solution is adding the video in the description of the post / page or adding the video in the wp_carousel_carousel_text custom field.

But you can modify the WP Carousel's default behaviour to show videos instead of images. You can modify your WP Carousel's theme and replace the image with the content of an specific custom field, for instance, a custom field called "wp_carousel_video".

The array $item has an index called "ID". This index contains the ID of the content in WordPress, so you can use this value to get more information about the content wich is being shown. With $item['ID'] you can get the value of the custom field "wp_carousel_video".

Actually you can modify WP Carousel to do everything that you want with its API for themes and extras, you only must be creative and take a look at the documentation.

Desconectado mikehoff

  • Nuevo
  • *
  • Mensajes: 5
  • Reputación: 0
    • Ver Perfil
Re:video in carousel
« Respuesta #2 en: Julio 16, 2010, 03:09:13 »
thanks for the response.

Using the Extras to create a new Item Type for video seems to be the way to go. I'd just like to be able to show an embedded youtube video along with a carousel slide I've uploaded.

I have no idea where to start on doing that though, even after reading the documents. Hopefully this is something you will add in the future.