Keyword

Advanced Search

Search Results (Searched for: preview)

  • LightMagi
  • LightMagi's Avatar
17 May 2015 02:08 - 17 May 2015 02:13

How to make preview with thumbnails on manepage?

Category: English K2 Community

Hi!

Please tell me how to make a preview of material from several categories K2 thumbnail images contained in the form of links to the full text of the article? The images in the article are not the image of K2, and placed on a remote server.
  • Lefteris
  • Lefteris's Avatar
14 May 2015 13:11

4.7 no preview images - standard protostar on joomla 3.4.1

Category: AllVideos

Hi,

Is there a link to the page with the issue?
  • r.bouman
  • r.bouman's Avatar
14 May 2015 07:31

4.7 no preview images - standard protostar on joomla 3.4.1

Category: AllVideos

Hi there,

firstly, a BIG thankyou for this excellent extension. It's among the very first things to be installed after a new install of Joomla!

I have used Allvideos for quite a few versions. Since 4.7 my preview images don't appear. The preview jpg is placed in the same folder as the video, and named exactly the same as the video (flv). The folder permissions are the same as any other subfolder.
I can see in the browser's "view page source", that the preview image is mentioned in the code.
If I copy and paste the preview jpg in the browser url bar it also appears promptly and properly.
I am using the stock standard 'protostar' template on Joomla 3.4.1

Your wisdom and feedback on this would be greatly appreciated.
  • David Ellison
  • David Ellison's Avatar
12 May 2015 15:43
Replied by David Ellison on topic Allvideos K2 plugin Video Embed Tab stopped working

Allvideos K2 plugin Video Embed Tab stopped working

Category: AllVideos

Thank you for the reply. The embed code is correct because when I click the apply button I can preview and play the video from the K2 editor.
  • David Ellison
  • David Ellison's Avatar
11 May 2015 23:07

Allvideos K2 plugin Video Embed Tab stopped working

Category: AllVideos

I am using Joomla 1.5.26 with allvideos plugin v4.5 and all videos using the k2 video embed have stopped working. I also tried upgrading to the latest version of Allvideos v4.7.0 and still no video. The anchor link at the top is still showing but no video. The videos show a preview within K2 editor on the video embed tab but does not display on the page.

If I use shortcodes the video will display. (ie {youtube}id{/youtube} - which is fine for now but all of the past blog articles use the K2 embed tab.


Any ideas or help is much appreciated.
  • Ulf Wennstrom
  • Ulf Wennstrom's Avatar
29 Apr 2015 11:19

Upgrade 4.7.0 Object doesn't support property or method 'fil

Category: AllVideos

Hi,

after upgrading a site that was fully funcional to 4.7.0 no video or preview is shown.
Only the error message "Object doesn't support property or method 'filterPlaylist'" is shown in the articles.

Link: www.hmjf.se/index.php/videobloggen/2007-aeldre.html

Can I downgrade? Where to find older versions?

Regards
Ulf
  • Lefteris
  • Lefteris's Avatar
28 Apr 2015 10:14

style preview image size with responsive template

Category: AllVideos

That's great. Let us know if you need anything else.
  • Fredrik Sandqvist
  • Fredrik Sandqvist's Avatar
28 Apr 2015 07:44
Replied by Fredrik Sandqvist on topic style preview image size with responsive template

style preview image size with responsive template

Category: AllVideos

Hi!
The problem is solved, it was some old css-code that messed things up.
  • Fredrik Sandqvist
  • Fredrik Sandqvist's Avatar
27 Apr 2015 14:20
Replied by Fredrik Sandqvist on topic style preview image size with responsive template

style preview image size with responsive template

Category: AllVideos

After upgrade to 4.7 the problem is solved but in mobile-view the jw-player-logo is to big, it´s not possible to play video...
www.ramo.se/en
  • Lefteris
  • Lefteris's Avatar
27 Apr 2015 13:19 - 27 Apr 2015 13:23

style preview image size with responsive template

Category: AllVideos

Hi,

Have you tried with a different template? Do you get the same results?
  • Fredrik Sandqvist
  • Fredrik Sandqvist's Avatar
25 Apr 2015 15:22 - 25 Apr 2015 15:24
style preview image size with responsive template was created by Fredrik Sandqvist

style preview image size with responsive template

Category: AllVideos

Hi!
I use responsive template but can't set size on The preview image for my mp4 videos.
how do I do that?
www.ramo.se/en
  • errevizeta
  • errevizeta's Avatar
20 Apr 2015 13:34
Replied by errevizeta on topic zoom immagine prodotto

zoom immagine prodotto

Category: Comunità italiana K2

Ciao puoi risolvere velocemente il tuo problema creando un override del file "itemp.php".

A questo punto recati alla line 208 e togli il link modal.

Sostituisci questo codice:
 <span class="itemImage"> <a class="modal" rel="{handler: 'image'}" href="<?php echo $this->item->imageXLarge; ?>" title="<?php echo JText::_('K2_CLICK_TO_PREVIEW_IMAGE'); ?>"> <img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" /> </a> </span>

con questo:
 <span class="itemImage"> <img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" /> </span>
  • raz
  • raz's Avatar
06 Apr 2015 09:30

modal box for image in category view

Category: English K2 Community

Hi
In category view when I click on image it goes to details view of item,
I'd like that when I click on image, it opens in modal box like what happens in details view.
I add this code to category_itm.php

<span class="itemImage">
<a class="modal" rel="{handler: 'image'}" href="<?php echo $this->item->imageXLarge; ?>" title="<?php echo JText::_('K2_CLICK_TO_PREVIEW_IMAGE'); ?>">
<img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
</a>
</span>

but it doesn't make image to pop up, because it doesn't add the necessary javascript and css file,
I don't know how can I do that?
  • Lefteris
  • Lefteris's Avatar
31 Mar 2015 12:32
  • Leslie Beaumont
  • Leslie Beaumont's Avatar
30 Mar 2015 18:56
Replied by Leslie Beaumont on topic [Solved] Preview image to AllVideos plugin

[Solved] Preview image to AllVideos plugin

Category: AllVideos

Thank you for your swift response. You we right it was the spaces in my file names although this did not appear to be an issue for the video link it was stopping the poster frame. Thankyou
  • Lefteris
  • Lefteris's Avatar
30 Mar 2015 18:30
Replied by Lefteris on topic [Solved] Preview image to AllVideos plugin

[Solved] Preview image to AllVideos plugin

Category: AllVideos

@Leslie Beaumont

As you can see in our demo page the preview image works fine for MP4 files: demo.joomlaworks.net/allvideos . I suggest to check the file permissions and also try to use filenames without spaces or other special characters.
  • Leslie Beaumont
  • Leslie Beaumont's Avatar
30 Mar 2015 18:19
Replied by Leslie Beaumont on topic [Solved] Preview image to AllVideos plugin

[Solved] Preview image to AllVideos plugin

Category: AllVideos

I appear to be having the same issue with the poster frames. I have setup my video which is a mp4 and created a poster frame with the same name in the same folder but it still will not show.
Poster frame rad2.bee2.com/images/video/Dell%20Imaging%20RAD.jpg
Video rad2.bee2.com/images/video/Dell%20Imaging%20RAD.mp4
You will see they both exist and are in the correct place but the poster frame still does not show.

Does this functionality work with mp4 files? As all the users who have said it works have been using FLVs.
  • Lefteris
  • Lefteris's Avatar
30 Mar 2015 12:08
Replied by Lefteris on topic [Solved] Preview image to AllVideos plugin

[Solved] Preview image to AllVideos plugin

Category: AllVideos

@Jutta Königsfeld

You have done something wrong. The does not seem to exist on the path is should be:

www.newtracks-it.de/theater-pikante/images/stories/videos/WC-Perlen.jpg
  • Jutta Königsfeld
  • Jutta Königsfeld's Avatar
27 Mar 2015 16:40
Replied by Jutta Königsfeld on topic [Solved] Preview image to AllVideos plugin

[Solved] Preview image to AllVideos plugin

Category: AllVideos

I did exactly what you suggest - and have a black preview.
(i just started with the upper one in sidebar b - no success)
Whats wrong?
www.newtracks-it.de/theater-pikante/index.php/wc-perlen
  • Betton Design
  • Betton Design's Avatar
19 Mar 2015 16:45 - 19 Mar 2015 16:47
Item Image Not Changing was created by Betton Design

Item Image Not Changing

Category: English K2 Community

Hi all
I am having a really weird issue with some images in K2. I wanted to change an item image so I deleted the original and saved the item and then added a new one and saved again.
Now, the old image still shows on the website but the new image shows when editing an item. Weirdly, if I go to the item list and view the image preview I get the old picture again.
I have had a look on the server and there is no trace of the old image in media/k2/items/cache only the new picture. If I access the picture in my browser then I get the old picture even with a fresh browser and in private browsing mode.
I have cleared the site cache.
Another weird thing is that even after deleted all of the picture iterations in media/k2/items/cache I can still access the picture in my browser (even though there is nothing on the server!
www.countrycottageholiday.com/media/k2/items/cache/245effadf41c6129f4fe7accc564ef86_Generic.jpg = correct
www.countrycottageholiday.com/media/k2/items/cache/245effadf41c6129f4fe7accc564ef86_L.jpg = correct
www.countrycottageholiday.com/media/k2/items/cache/245effadf41c6129f4fe7accc564ef86_M.jpg = correct
www.countrycottageholiday.com/media/k2/items/cache/245effadf41c6129f4fe7accc564ef86_XL.jpg = wrong
www.countrycottageholiday.com/media/k2/items/cache/245effadf41c6129f4fe7accc564ef86_S.jpg = wrong
www.countrycottageholiday.com/media/k2/items/cache/245effadf41c6129f4fe7accc564ef86_XS.jpg = correct

I must stress that when I view all of these images via ftp then they are correct but when I view them in my browser they are wrong. Does anyone know the reason for this?
Displaying 181 - 200 out of 989 results.

Powered by Kunena Forum