Keyword

Advanced Search

Search Results (Searched for: preview)

  • ionut
  • ionut's Avatar
26 Feb 2017 13:46
K2 category was created by ionut

K2 category

Category: English K2 Community

Hello,
Can you help me with something?
I custom k2 and i have some questions if someone can help:
1. How can i have k2 blog categories in my right sidebar? I didnt find any module for show category as list like joomla default articles category
2. it is possible to have different image in blog preview and full image preview like joomla default have in article, you can have image for preview article, and when you enter in full article to have another image ?


Thank you all
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
24 Feb 2017 17:12
Replied by Krikor Boghossian on topic [Solved] Preview image to AllVideos plugin

[Solved] Preview image to AllVideos plugin

Category: AllVideos

I would suggest you use filenames without spaces.
Furthermore both links produce 404 errors.
  • Kunga Phuntsok
  • Kunga Phuntsok's Avatar
24 Feb 2017 10:55
Replied by Kunga Phuntsok on topic [Solved] Preview image to AllVideos plugin

[Solved] Preview image to AllVideos plugin

Category: AllVideos

Just use the simple video tag with no extra code (img='kdjfkdfkjjjjjjjj"). Name the image file with the same video file name and upload the image in the same video folder.
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
18 Jan 2017 20:14
Replied by Krikor Boghossian on topic Remove URLs frpm K2 print preview - k2.print.css

Remove URLs frpm K2 print preview - k2.print.css

Category: English K2 Community

If the k2.print.css file is not being used in the template, then editing it won't have any effects.
  • Site Wide Design
  • Site Wide Design's Avatar
17 Jan 2017 17:25
Replied by Site Wide Design on topic Remove URLs frpm K2 print preview - k2.print.css

Remove URLs frpm K2 print preview - k2.print.css

Category: English K2 Community

Ok, so i managed to find a solution via CSS. I've used the code:
/***Remove links when printing ***/ @media print{ a{display:none;} }

within the custom.css file, adding it to the k2.print.css file did not do anything - infact nothing did in that file.

Regards
Donna
  • Site Wide Design
  • Site Wide Design's Avatar
17 Jan 2017 17:09
Remove URLs frpm K2 print preview - k2.print.css was created by Site Wide Design

Remove URLs frpm K2 print preview - k2.print.css

Category: English K2 Community

Hi Guys,
I am having an issue when clicking print - the URLs within the page are showing in full, not just the display text between the <a> tags.
Now i have added the following to the k2.print.css but it is not taking effect.
a { display:none; }

I have tried adding important also, but the links are still being shown regardless, how can i force-ably remove them completely when printing? Or at least only show the linked text not the url?

Regards
Donna
  • Al[bert] L[ouis] Rossi
  • Al[bert] L[ouis] Rossi's Avatar
15 Jan 2017 19:04
Open Graph support for Facebook Image choice was created by Al[bert] L[ouis] Rossi

Open Graph support for Facebook Image choice

Category: English K2 Community

I have discovered something which looks like an incompatibility in the way my K2 site is set up, and was wondering if you could recommend a solution.

In order to get SEF URLs to come out correctly, I have followed the suggestion of creating an (invisible) menu for each of the K2 item categories.

It would appear that the menus use Open Graph. I see this in two ways. First, in the browser console, the og namespace shows up in the <header> meta tags. Second, the metadata description I have given to each of these menus overrides the metadata description for the article/item itself (added through JCE). I see this whenever the article or item is linked to Facebook. This is obviously not what we want.

In addition, there seems to be a problem on Facebook wrt choosing an image from the article. Sometimes it seems to get confused and cannot pick anything, even though there is always at least one image in the articles I have been linking.

It is my understanding that Open Graph overrides any other metadata providers that may be enabled. Is there some what to get the K2 items to play correctly with the Open Graph settings, and more particularly, to get them to be accepted by Facebook so that the correct description appears, and an image is chosen? Can Open Graph be added, for instance, to the individual K2 item metadata settings using a special plugin?

Note: linking to Google+ does not present this problem. From the little I understand about this, it would seem Facebook is somehow coupled to Open Graph – see the following:

stackoverflow.com/questions/6693499/how-can-i-set-a-website-image-that-will-show-as-preview-on-facebook

Thank you for your help,

Al
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
13 Jan 2017 12:17
Replied by Krikor Boghossian on topic preview

preview

Category: English K2 Community

Hello,

I am not sure I understand the question.
  • Elisabetta
  • Elisabetta's Avatar
11 Jan 2017 16:34
preview was created by Elisabetta

preview

Category: English K2 Community

Hi,
I have update my joomla version from 2.5 to 3x
I don't remember how can I break my k2 article with the preview
Thank's
  • Steven Trooster
  • Steven Trooster's Avatar
21 Nov 2016 19:25 - 21 Nov 2016 23:33
Replied by Steven Trooster on topic Author can't view his own unpublished item

Author can't view his own unpublished item

Category: English K2 Community

I've come up with a hack to let users view their own articles, before the article is published. (This was an overwhelming request from the authors on my site) This is important, because the author wants to see the final result of the article, before it goes online.

What I've done is changed the following in Components/com_K2/views/item/view.html.php:
In lines 113 and further (// Published check) change the subsequent lines from
if (!$item->published || $item->trash)
to
if ((!$item->published || $item->trash) AND $item->created_by != $user->id)

So the whole piece of code looks like:
// Published check if ((!$item->published || $item->trash) AND $item->created_by != $user->id) { JError::raiseError(404, JText::_('K2_ITEM_NOT_FOUND')); } if (($item->publish_up != $nullDate && $item->publish_up > $now) AND $item->created_by != $user->id) { JError::raiseError(404, JText::_('K2_ITEM_NOT_FOUND')); } if (($item->publish_down != $nullDate && $item->publish_down < $now) AND $item->created_by != $user->id) { JError::raiseError(404, JText::_('K2_ITEM_NOT_FOUND')); } if ((!$item->category->published || $item->category->trash) AND $item->created_by != $user->id) { JError::raiseError(404, JText::_('K2_ITEM_NOT_FOUND')); }

The code could use some more refinement, so an authorized user, like an admin or an editor can preview all unpublished articles.

(I've done some testing on V3, but bringing the admin to the frontend is not the same as a live preview of the article)
  • Klaus Veliu
  • Klaus Veliu's Avatar
07 Nov 2016 20:25
New feature request was created by Klaus Veliu

New feature request

Category: Simple Image Gallery PRO

Hello,

I had purchased a subscription for Simple Image Gallery PRO, practically I am seeing a very
popular feature that is being used from so many websites.

The feature consist a image gallery with two button Next and Forward,
when you click on this buttons the page is reloaded and the previews or next image
is shown. I have arranged to modify the plugin to give the output that I need, but would
be good to have something developed from someone how knows how to make something
genuine and well designed. Here is the link of what I have developed
www.newsbomb.al/component/k2/item/7554-fotogaleri-pamjet-me-impresionuese-ne-bote-te-shkaktuara-nga-shperthimet-vullkanike~imgId-1#gallery_image_counter

My question/request is: Does the new versions of Simple Image Gallery PRO has this feature?!
Could the developers be interested developing it?!
  • Christian Libens
  • Christian Libens's Avatar
16 Oct 2016 13:26
Presention picture for vidéo was created by Christian Libens

Presention picture for vidéo

Category: AllVideos

Hello. I wonder how can a picture appears as presentation of the video instead of a black screen with just the arrow. The second screenshot shows the presention a video player image representing the content. I use Joomla 3.6 and the latest version of Allvidéo. The video is inserted into an "item" K2 where I inserted a picture. (The problem does not exist in the preview gallery of videos). Thank you for your help !

imgur.com/a/mX18J

imgur.com/a/BBjTR

imgur.com/a/JcUEm
  • razen
  • razen's Avatar
22 Sep 2016 20:50
Show Image in K2-Item List was created by razen

Show Image in K2-Item List

Category: English K2 Community

Hello,

I wonder if there's an easy way to show the image Item-List in the Backend instead of a button which can show the image-preview in a container-box. Since my images got all the same size (32x32) it won't be critical from the loading time...

Thanks for the help :)

Razen
  • fanny0
  • fanny0's Avatar
31 Aug 2016 17:17
Media Preview was created by fanny0

Media Preview

Category: Comunidad hispana oficial de K2

Hola, mis videos se ven bien, pero no se ve una imagen de preview en el home, tampoco se como colocarla, no se si es algo de k2 o del modulo de gavick

url: nicoleide.cl

[img size=350]http://http://www.nicoleide.cl/preview-video.png[/img]
  • Waldemar Deutsch
  • Waldemar Deutsch's Avatar
29 Aug 2016 03:30 - 29 Aug 2016 03:32
Umlaut problem on German Main Page was created by Waldemar Deutsch

Umlaut problem on German Main Page

Category: English K2 Community

Hi,

one question, since my update to k2 2.7.1 my german text preview from an article on the frontpage show the umlauts wrong, I mean in the html language.

Instead of ä ö ü my visitors see only & szlig;, & uuml; and & auml;

If you click on the "read more" and open the whole article there is everything ok.

You can see this problem on this site: www.xtablet.de

Here is a screenshot: imgur.com/a/J82N4

I got this problem only on the k2 articles preview on the frontpage.

Can someone help me with that bug?

Thanks in advance
Waldemar
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
24 Jul 2016 22:05
Replied by Krikor Boghossian on topic List preview of the videos

List preview of the videos

Category: AllVideos

Nice to hear that you sorted this out Gorast :)
  • Gorast
  • Gorast's Avatar
24 Jul 2016 17:00
Replied by Gorast on topic List preview of the videos

List preview of the videos

Category: AllVideos

Found what was the problem. AllVideos (by JoomlaWorks) need to be enabled manually in the Plugin panel.

Thanks,
Gorast
  • Gorast
  • Gorast's Avatar
24 Jul 2016 16:55
List preview of the videos was created by Gorast

List preview of the videos

Category: AllVideos

Hi,
I need to list a videos that are added daily like on this page - manaki.mk/daily/video

How can the videos be shown in the Category listing?
When I tick Show Media I get {YouTube}amQLcW3W_KQ{/YouTube} in the listing.

Thanks,
Gorast
  • Nick
  • Nick's Avatar
14 Jul 2016 00:34
Facebook Share Thumbnail was created by Nick

Facebook Share Thumbnail

Category: English K2 Community

I know it's a heavily discussed topic, but as a newcomer to Joomla I kinda need a bit more explanation.

So I have a website ( thegamerslife.eu ) and I use K2 to create the content. The website is not fully complete, but as I try to finish it, I upload some content as well. So when trying to share an article of my website to facebook, the thumbnail preview is just the name of my website. No intro image,no title, no description. I know that it is something to do with og tags but, I can not figure out what exactly to do or what piece of code to paste. TL;DR : I need everytime I share an article on facebook, to have a thumbnail preview with the title of the article, and the intro image of that article. Help will be kidly appriciated.

Thank you in advance,
Nick
  • Philip Boakye
  • Philip Boakye's Avatar
10 Jun 2016 22:30
Hacked with spam was created by Philip Boakye

Hacked with spam

Category: English K2 Community

I received a lot of comments from spams via K2 on my site, I deleted them and used a different joomla template. But I have all my urls with spam content when I search on google. I am currently not using K2 for anything but I have it installed though. The moment I delete K2 that I am not using, all my website urls stop opening.

I get this when I open view source from google cache

<link rel="canonical" href="www.patienttimegh.com/how-to-pay" />
<link rel="prev" href="www.patienttimegh.com/?Bottom-Feader/" />
<link rel="next" href="www.patienttimegh.com/?Sexual-Christmas-Gifts/" />
<meta property="og:title" content="Thesis On Sex With College Guys" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="Maria Theodorakis Nude" />
<meta property="og:url" content="www.patienttimegh.com/how-to-pay" />
<meta property="og:locale" content="en_US" />
<meta name="description" property="og:description" content="Thesis On Sex With College Guys Brianne Olsen Porn Star Gay 119 Clip Femme Sexy Traditional Indian Dress For Teens Mendez We Own The Night Nude Sexual Lust In The Bible Igor Xxx Avitar Kitara Nude Free Videos Of Lesbians Grinding Pussy Vintage Foxx Wah Fuzz Deldo Porn Movie Cunnilingus Blowing Air Sexy Hot Tight Body American Asian Has Highest Population Region Which Young Puffy Nipple Teens Asian Escorts Florida Big Latina Spanish Tits Nude Sexy Japanese Teens Amazon Girl Fetish Forum Studio Gay Cumberland Green Millville Nj Lesbian Videos Free Preview Furck Sex Gunwhale Strip 100 Free Teen." />
<meta name="keywords" content="Naked City Mediafire,Chanel Rapper Nude,Milf Twat 2009 Jelsoft Enterprises Ltd,94 Ford Escort Repair,Free Tall Female Porn,Xxx Amanda,Burglar Penis Shot,Roger Trafton Gay Prom,Cecilia Sex Blog,Art Clokey Drugs And Sex,Free Adult Porn Male Submissive,Weird Amature Cum In Mouth,Lindsay Logan Nude,Gerard Way Nude,Free Blondesluts Movies,I Wanna Fuck Song,Nidoking Porn,Lindemulder Janine Facial,Emma A Z Of American Sex,Phat Gay Xxx,Lesbian Video Clips Free Nella Download,Free Latin Gay Porn,Sexy Girls Lebanon,Celeb Nude Sex Tape,Gay Boat Tours" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>

<body class="site com_content view-article no-layout no-task">

<!-- Body -->
<div class="body">
<div class="container">
<!-- Header -->
<header class="header" role="banner">
<div class="header-inner clearfix">
<a class="brand pull-left" href="/">

Please I need help to this problem
Displaying 101 - 120 out of 989 results.

Powered by Kunena Forum