Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#181 2005-08-15 19:25:13

maarten
Member
From: Netherlands
Registered: 2005-02-19
Posts: 130
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

> skycaptain wrote:

> Hi,

I am using it with rc4. I see your errors.

All I got wrong so far is Null in IE for the note in Jpop [mouse over…] In Firefox it is fine.

I like the way you present your work, how did you call the plugin?

I also get the Null value returned when I mouseover. Is there a fix for that?

Offline

#182 2005-08-16 12:58:33

faust
New Member
Registered: 2005-07-28
Posts: 3

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

Hello wilshire,
May i modify the plugin thus the “onmouseover” function shows image with “width=80%” ?
is that possible ?
Thank you very much for your help!!

Offline

#183 2005-08-17 11:04:10

AlexDGT
New Member
From: Russia, Eburg
Registered: 2005-08-17
Posts: 4
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

i have some problems with “articlethumbs” tag? gallery sad that no images found, but some code changes solve my problem:
find code:
<code>if ($articlethumbs) { $categories = “ (category = ‘” . doSlash(‘article-’ . $thisarticle[“thisid”]) . “’) “;
}</code>
and replace with that:
<code>if ($articlethumbs) { $categories = “ (category = ‘” . doSlash(‘article-’ . $id) . “’) “;
}</code>
maybe this is wrong way, but it working like charm :)

Offline

#184 2005-08-17 20:06:32

maarten
Member
From: Netherlands
Registered: 2005-02-19
Posts: 130
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

Hi, thanks for the nice plugin but I can’t seem to get the gallery-single page working properly. I have carefully followed the instructions on the txp resources page and the gallery-list works ok but regardless on what gallery I click I always receive all thumbs from every gallery. Does anyone have a clues how to resolve this?

Offline

#185 2005-08-21 11:35:59

theturninggate
Member
Registered: 2004-11-07
Posts: 185
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

Hi Wilshire,
I have a feature request. Could you please implement one of the following?

1) Allow users to assign a stylesheet (txp:rss_thumbpop pagepop=“1” style=“stylesheet”) to pagepop windows so that captions and page attributes such as background and text color can be styled.

2) Create attributes for pagepop windows such as “textcolor”, “backgroundcolor”, “bordercolor”, and “textalign” (left, right, center, justify), with the color attributes accepting standard hex code.

Please let me know what you think of these ideas.
Thanks,
Matt

EDIT: I found in the plugin code where I can specify style for the pagepop and have made the changes I require. I’d still be interested in hearing your thoughts on these ideas, though.

Last edited by theturninggate (2005-08-21 11:45:32)

Offline

#186 2005-08-23 17:06:51

squaredeye
Member
From: Greenville, SC
Registered: 2005-07-31
Posts: 1,495
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

I posted this in troubleshooting, then I realized it probobly belongs here. Sorry.

I have been working on a gallery issue for awhile now, I thought I would have a hand at this demonstration/tutorial as a way of accomplishing my goals. I can’t get anything to show in my section though.

I am posting to section “work-ms” which uses page “work-xx”

the important bit on page work-xx is:
<code> <txp:if_article_list> <txp:article_custom form=“gallery-list” category=“article-14” section=“work-ms” /> <txp:article_custom form=“gallery-list” category=“yourCategory2” section=“gallery” /> </txp:if_article_list>
</code>
which is in the sidebar and:
<code> <txp:if_individual_article> <txp:article form=“gallery-single” /> </txp:if_individual_article>
</code>
which is in the main column.

the forms:
gallery list:
<code> <txp:permlink><txp:article_image /></txp:permlink> <txp:permlink><txp:article-14 /><txp:title /></txp:permlink> <txp:excerpt />
</code>
and
<code> <txp:title /> <txp:posted /> <txp:rss_thumbpop jpop=“1” articlethumbs=“1” clickonly=“1” fullontop=“0” mode=“float” cols=“x” showcaption=“1”/>
</code>

The plugin is turned on.
I have specified a title in the article as specified.
I have it writing to section “work-ms”
I have NOT specified an article_image number for thumbs or large images, but I have specified that all the images I want in this gallery have image category “article-14” as spec. in the tutorial.

Can someone help me figure out why this isn’t working?

Thanks,

matthew


Offline

#187 2005-08-23 18:23:10

maarten
Member
From: Netherlands
Registered: 2005-02-19
Posts: 130
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

Try for the list:

<code>
<txp:if_article_list>
<txp:article_custom form=“gallery-list” section=“work-ms” category=“article-14” />
</txp:if_article_list>

<txp:if_individual_article>
<txp:article form=“gallery_single” />
</txp:if_individual_article>
</code>
and for the listform:
<code>
<txp:permlink><txp:article_image /></txp:permlink>
<txp:permlink><txp:category1 /></txp:permlink>
<txp:title />
<txp:excerpt />
</code>
and for the single form:
<code>
<txp:title />
<txp:rss_thumbpop jpop=“1” articlethumbs=“1” clickonly=“1” fullontop=“0” mode=“float” cols=“x” showcaption=“0”/>
</code>

Last edited by maarten (2005-08-23 18:25:10)

Offline

#188 2005-08-29 17:15:33

haggis
Member
From: Edinburgh
Registered: 2005-04-15
Posts: 19

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

I’ve searched but can’t find the answer to this, sorry in advance if it is here and I’ve just missed it.
I’m using thumbpop to put thumbnails on a page with this tag
<txp:rss_thumbpop articlethumbs=“1” mode=“float” cols=“x” showcaption=“1” pagepop=“1”/>
But for me the captions don’t start under the thumbnail, instead they begin with first word to the right and then continue underneath.
How can I get the caption to begin on the line below the thn?

Thx

Offline

#189 2005-08-29 19:26:10

els
Moderator
From: The Netherlands
Registered: 2004-06-06
Posts: 7,458

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

To solve that I changed this line in the plugin code:

$output[] = ($showcaption) ? '<span class="cap">'.$caption.'</span>'.n : '';<br />
to<br />
$output[] = ($showcaption) ? '<p class="cap">'.$caption.'</p>'.n : '';<br />
But there might be a simpler way to do it.

Offline

#190 2005-08-30 10:50:28

skoggy
Member
From: Westcoast of Sweden
Registered: 2005-03-27
Posts: 209
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

Good question. Experienced the same thing before I decided to hide captions under the thumbs. Now only appear in the popup. Guess I better like this solution on my own site but it wasn´t changed for that reason…

Offline

#191 2005-08-30 17:53:50

haggis
Member
From: Edinburgh
Registered: 2005-04-15
Posts: 19

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

> doggiez wrote:

> To solve that I changed this line in the plugin code:

$output[] = ($showcaption) ? '<span class="cap">'.$caption.'</span>'.n : '';<br />
to<br />
$output[] = ($showcaption) ? '<p class="cap">'.$caption.'</p>'.n : '';<br />
But there might be a simpler way to do it.

Thanks for the reply, was hoping not to have to mess with the code but if no other suggestions come along then I’ll do as you suggest.

Offline

#192 2005-08-30 20:02:41

wilshire
Plugin Author
From: Akron, Ohio
Registered: 2004-08-27
Posts: 656
Website

Re: [plugin] [ORPHAN] rss_thumbpop - Thumbnail Image Gallery w/ popups

You should be able to solve the problem using CSS. The caption is displayed in a span so that you have the ability to style it as you need. <code>display:block;</code> might do the trick. You might also try changing the width of the container that image is in.

Offline

Board footer

Powered by FluxBB