AthanTheGreat
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Wow, that fixed the problem ?? thank you so much :))))
how can i display multiple videos using 1 shortcode, because apparently, the category shortcode only displays the video thumbnails but not the video istelf
this is the content of the post
<div class="video_player_content">[hdvideo id="1"]</div> <div class="video_player_content">[hdvideo id="2"]</div> <div class="video_player_content">[hdvideo id="3"]</div>
and my code in php file is this
<div style=" width:100%" id="gallery_slider_<?php echo $i; ?>" class="gallery_slider hidden"> <?php the_content(); $i++;?> </div>
what im expecting to get when i run the php/html is
<div style=" width:100%" id="gallery_slider_<?php echo $i; ?>" class="gallery_slider hidden"> <div class="video_player_content">[hdvideo id="1"]</div> <div class="video_player_content">[hdvideo id="2"]</div> <div class="video_player_content">[hdvideo id="3"]</div> </div>
but what happens is that it only the first shortcode is wrapped by the div, this is how it looks in the dom
<div style=" width:100%" id="gallery_slider_<?php echo $i; ?>" class="gallery_slider hidden"> <div class="video_player_content">[hdvideo id="1"]</div> </div> <div class="video_player_content">[hdvideo id="2"]</div> <div class="video_player_content">[hdvideo id="3"]</div>
the 2nd and 3rd videos are out of the wrapping div. how can i solve this.
cboxLoadedContent doesnt have any content…
never mind ?? i got it
Viewing 5 replies - 1 through 5 (of 5 total)