Page 2 of 3

Re: Plugin: Highslide (Image only) with description?

Posted: 28 May 2009, 22:05
by Jan
Hi, this is disabled, because there is not possible to enlarge large thumbnails more

Re: Plugin: Highslide (Image only) with description?

Posted: 29 May 2009, 07:10
by Brujo
Thank you for answer, and i understand the 3 types of thumb_s _m & _l, but for example if the original Picture is greater than my settings for the large thumb, my thought was the original Picture will be shown when i click the expand button.

Example, When i integrate manualy a Picture on an Article, normaly i use the _s or _m Picture from the thumb but for the highslide via lightbox the original, then the modal box shows the normal sized picture and as standard the expand button on button right and here the full size picture comes up.

However, can this be a valid feature request for phoca gallery and possible to integrate into it? Or do i have missunderstud it and I have to set up first the higher size before creating and i will have the wanted efect?

thanks
Brujo

Re: Plugin: Highslide (Image only) with description?

Posted: 03 Jun 2009, 22:23
by Jan
Hi, I will take a look at it. Added into a feature request list

Re: Plugin: Highslide (Image only) with description?

Posted: 07 Jun 2009, 13:33
by Brujo
Hi Jan, thanks to put it on the feature list and thanks a lot for phoca Galery i enjoy it....

Re: Plugin: Highslide (Image only) with description?

Posted: 14 Jul 2009, 11:28
by GenkaiNashi
This is exactly what I was looking for, thank you for showing how to edit the file (although I'm still not sure what exactly was changed). Regardless - there is a way to edit the file while leaving the main default.php alone. Look at template overrides: http://docs.joomla.org/How_to_override_ ... omla!_core

In your template folder's html folder - create "com_phocagallery/category/" and upload your edited version of the default file there. No need to hack the core. =)

Jan you're the man if you can include this feature in the next version of PhocaGallery (Highslide Image Only with Description). I'm gonna donate soon so I can remove the link, but I'll add a Phoca link to my site credits. Thanks!

Re: Plugin: Highslide (Image only) with description?

Posted: 14 Jul 2009, 13:02
by Jan
Hi, this feature was added in 2.5.0 version. You can display Highslide (only image) with description, see demo:

https://www.phoca.cz/demo/highslide-description


Jan

Re: Plugin: Highslide (Image only) with description?

Posted: 07 Feb 2010, 18:09
by difecto
Hi!

I have a little problem with Phoca Gallery Plugin.
I have a menu item, which has Phoca gallery category layout. (I know, this is a component theme, not plugin, but I must describe all fact around the problem.)
In global parameters "Highslide (image only)" is set.
Pictures in this category have titles, and descriptions. These parameters must be displayed.
Clicking on a picture thumbnail in this menu, highslide (image only) is working, and all things I set, is displayed (title (above picture); picture; description (below picture) ).
So everything is OK, until I use component.

But in an article, where I use the plugin to display all pictures in a category, and a picture thumbnail is clicked (when Highslide (image only) is running), there are NO title, and NO description displayed.
In the article there are no local parameters to override the global ones:
{phocagallery view=category|categoryid=29|limitstart=0|limitcount=0}

I also tried to set local parameters to display image title and description viewing the image in Highslide (image only), but there was no suitable result.

When I use {phocagallery view=categories|... there is no problem, but when I use {phocagallery view=category|... there is no title and description. (I think the first version uses component to display the pictures, and that's why it works.)

(This isn't browser problem I think, because FF 3.6 and IE 8 has the same result.)

Please help, because I need this option!
(I think plugin should do the same result, as component does.)

Could anyone help me? :idea:

difecto

Re: Plugin: Highslide (Image only) with description?

Posted: 07 Feb 2010, 23:12
by difecto
OK, problem found and fixed.

The corresponding code I found is:

Code: Select all

if ( $tmpl['detailwindow'] == 5) {
	if ($tmpl['highslidedescription'] == 1 || $tmpl['highslidedescription'] == 3) {
		$output	.='<div class="highslide-heading">';
		$output	.=$image->title;
		$output	.='</div>';
	}
	if  ($tmpl['highslidedescription'] == 2 || $tmpl['highslidedescription'] == 3) {
		$output	.='<div class="highslide-caption">';
		$output	.= $image->description;
		$output	.= '</div>';
	}
}
So... Let's see!

I didn't found the variable 'highslidedescription', but I set it to the correct name & value in the article, and voila, everything is OK (title and description is displayed):

Code: Select all

{phocagallery view=category|highslidedescription=3|categoryid=29|limitstart=0|limitcount=0}
I'm searching now the highslidedescription variable in global parameters... :)

difecto

Re: Menu: Highslide (Image only) with description?

Posted: 19 Sep 2010, 07:15
by atina
Hi, am having the same problem with a Menu item pointing to a Category -
the highslide detail view window does not show.

It works perfectly in all other cases with my other categories.
I have configured all the menu parameters correctly, and am doing this to override the global parameters for this particular category.
The global parameters are set for listing images as per Order Ascending. I want one particular category to list the images alphabetically. For this, I created the menu item.

But now the highslide display is not working for this category!

You can check this out on the site http://finpowrie.com/fin/index.php?opti ... Itemid=222

What to do?

Re: Plugin: Highslide (Image only) with description?

Posted: 20 Sep 2010, 17:28
by Jan
Hmm, seems like there will be some conflict in js, try to hide the overlib for this menu, if this is not highslide js vs. overlib conflict, if not there you should check other javascripts loaded on that site (if there is no some other javascript conflict which can prevent from correctly highslide js working) :-(

Jan