2008-03-22 07:43:50

roelof
Member
nu

Re: [archived] sdr_guestbook

Hello Els,

The form is named guestbook_comments_form.

I changed it to : <txp:sdr_guestbook section=“gastenboek” articletitle=“guestbook” form=“guestbook_comments_form” pagestring_placement=“both” /> ut with no luck.

Roelof

Offline

 

2008-03-22 12:30:24

Els
Admin
omega
Real name: Els Lepelaars
From: The Netherlands
Known languages: nl, en, (some: de, fr, es, it)
Website

Re: [archived] sdr_guestbook

roelof wrote:

articletitle="guestbook"

You should enter the exact article title, so if that is Guestbook (with a capital) you should use articletitle="Guestbook".

<fieldset> <legend>Geschreven op <txp:sed_comment_time class=‘comment-time’/> door :<comment_name /><txp:sed_if_author_comment_string string=’ (Author Comment)’ /></</legend> <txp:message /></fieldset>

There is a </ (just before </legend> that should not be there. Also, change the quotes to ".

(Just some ideas, I’m not using this plugin myself anymore, so I don’t even know if it still works with 4.0.6.)


<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields

Offline

 

2008-03-22 13:34:06

roelof
Member
nu

Re: [archived] sdr_guestbook

Hoi Els,

I changed the article name to the right name and the form to this :
<fieldset>
<legend>Geschreven op <txp:comment_time /> door <txp:comment_name /> <legend />
<txp:comment_message />
<fieldset />

But no there is a border around the whole guestbook but it must be on every message.

Roelof

Offline

 

2008-03-22 13:56:16

Gocom
Developer
omega
Real name: Jukka Svahn
Website

Re: [archived] sdr_guestbook

  1. Fieldsets are basically form elements and so is legend. You should use divs etc. instead.
  2. Also you should close your fieldset, as it’s open – also your legend is open.
<fieldset>
	<legend>Geschreven op <txp:comment_time /> door <txp:comment_name /></legend>
	<txp:comment_message />
</fieldset>

Even better is something like:

<div>
	<h3>Geschreven op <txp:comment_time /> door <txp:comment_name /></h3>
	<txp:comment_message />
</div>

Last edited by Gocom (2008-03-22 13:57:25)


Rah-plugins | What? I’m a little confused… again :-) <txp:is_god />

Offline

 

2008-03-22 14:24:21

roelof
Member
nu

Re: [archived] sdr_guestbook

Hello Gocom,

Very wierd,

Both forms are only once used without the comment_message and after that the comments form is being used.
Can there be problem in this rule :

<txp:if_section name=“gastenboek”>
<txp:sdr_guestbook section=“gastenboek” form=“guestbook_comments_form” articletitle=“vragen of opmerkingen” />
</ txp:if_section>

regards,

Roelof

Offline

 

2008-03-22 17:01:04

Els
Admin
omega
Real name: Els Lepelaars
From: The Netherlands
Known languages: nl, en, (some: de, fr, es, it)
Website

Re: [archived] sdr_guestbook

Roelof, I think the attribute needs to be commentform! form is meant to be your article form. So:

<txp:if_section name="gastenboek">
<txp:sdr_guestbook section="gastenboek" form="your_article_form" commentform="guestbook_comments_form" articletitle="Vragen of opmerkingen" />
</txp:if_section>

(There also were a couple of spaces in your tags that shouldn’t be there, so if you copy this code it should be all right.)

Last edited by Els (2008-03-22 17:03:20)


<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields

Offline

 

2008-03-22 18:10:51

roelof
Member
nu

Re: [archived] sdr_guestbook

It works,

But it seems that this plugin doesn’t make messy url’s like i have in the rest of the site.

Roelof

Offline

 

2008-03-24 09:48:39

roelof
Member
nu

Re: [archived] sdr_guestbook

Sorry,

Found a problem.
Guestbook is working but i get allways a empty comment on the page on the day and time when you look at the guestbook.
Who knows why that happens.

Roelof

Offline

 

2008-03-24 12:54:39

Els
Admin
omega
Real name: Els Lepelaars
From: The Netherlands
Known languages: nl, en, (some: de, fr, es, it)
Website

Re: [archived] sdr_guestbook

Can you post the exact content of your ‘guestbook_comments_form’ form?


<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields

Offline

 

2008-03-24 13:50:58

roelof
Member
nu

Re: [archived] sdr_guestbook

Hoi Els,

The content od my form is :

<fieldset> <legend>Geschreven op <txp:comment_time /> door <txp:comment_name /></legend> <txp:comment_message />
</fieldset>

Offline

 

Powered by FluxBB