Hi,
its simple...

open viewtopic.php
replace

<dd class="usertitle"><?php echo $user_title ?></dd>

with

<dd class="usertitle"><font color="#ffff00"><?php echo $user_title ?></font></dd>

That color is an example....  U can use what u want for #ffff00...
That's all...

Greetings
Michaela

I'm waiting  ... wink

Hi guys,
i try to install this mod, but .....  smile

Well, i dont know! I changed all files(delete.php, post.php, etc), i uploaded all files and try to install the mod...  but i get an error: PunBB reported: Unable to copy .htaccess file to new subfolder...
i have insert an folder at the forum root liek "attach" and set the chmod at 777, but nothing happens, the same error...

Greetings
Michaela

Hi Frank,
its possible to insert this mod into the profil from member.....?

So, if u would war anyone, its show in the profil ...  But no one could see it, only the User!
Perhaps under the "change your password" also 1st page at the profil etc...
I try it, but it doesnt work.. big_smile

Greetings
Michaela

Ok! Thanks, but i dont find the 2.05 Version...  Only 2.04 and 2.03 at punres.org ...
Its possible, that u dont finished  the 2.05?

Best regards
Michaela

P.S. By the way, great MOD!!!!

Hi,
what do u mean with "fixed in version 1.2.5" - i use the 1.2.5 punbb version

TO 3: if u 've got 2 entrys at the 2nd june, u could only read one of them ... Not the both entrys....  So, u need to go back and click at the other antry at the same day ...

Greetings
Michaela

Hey,
i 've install this mod, but i think there are a lot of bugs.... Or not?

1. If i click an event, it shows only the event, nothing else... The next month, next day etc links are not avaible...
2. If u  insert a lot of events and u need to edit one of them it shows all. Its better, when u can show 20 events and the rest in another pages ... (like link_pages)
3. U dont could see the complete events of a day
4. Another idea: It´s possible to insert an icon in the mini calendars, when an event is on that day ...

Well, if i look into gizzmos calendar, everything is ok ...  But this one not, or have i made a mistake? I dont think so, because my calendar works fine! smile

Best regards
Michaela

33

(20 replies, posted in Feature requests)

Ok guys, it works and perhaps somebody would use it too ...

1. insert a field names order_form in Table "users" (tinyint = 1).

2. profil.php

find:

if ($form['link_to_new_win'] != '1') $form['link_to_new_win'] = '0';

after it

if ($form['order_form'] != '1') $form['order_form'] = '0';

The replace this

$result = $db->query('SELECT username, email, title, realname, url, icq, msn, aim, yahoo, location, use_avatar, signature, disp_topics, disp_posts, email_setting, save_pass, notify_with_post, smilies, show_img, show_avatars, show_sig, link_to_new_win, timezone, style, num_posts, status, last_post, registered, admin_note FROM '.$db->prefix.'users WHERE id='.$id) or error('Unable to fetch user info', __FILE__, __LINE__, $db->error());

with this

$result = $db->query('SELECT username, email, title, realname, url, icq, msn, aim, yahoo, location, use_avatar, signature, disp_topics, disp_posts, email_setting, save_pass, notify_with_post, smilies, show_img, show_avatars, order_form, show_sig, link_to_new_win, timezone, style, num_posts, status, last_post, registered, admin_note FROM '.$db->prefix.'users WHERE id='.$id) or error('Unable to fetch user info', __FILE__, __LINE__, $db->error());

The find this

<?php echo $lang_prof_reg['Save user/pass info'] ?></div>
        <input type="checkbox" name="form[save_pass]" value="1"<?php if ($user['save_pass'] == '1') echo ' checked' ?>>
         <?php echo $lang_prof_reg['Save user/pass'] ?>

and replace it with this

<input name="form[order_form]" type="checkbox" value="1" <?php if ($user['order_form'] == '1') echo ' checked' ?>>
            I would read the newest postings first. 
          </p>
          </div>
        <div style="padding-left: 4px"><?php echo $lang_prof_reg['Save user/pass info'] ?></div>
        <input type="checkbox" name="form[save_pass]" value="1"<?php if ($user['save_pass'] == '1') echo ' checked' ?>>
         <?php echo $lang_prof_reg['Save user/pass'] ?>

3. viewtopic.php

find this

$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.status, u.registered, u.admin_note, p.id, p.poster, p.poster_id, p.poster_ip, p.poster_email, p.message, p.smilies, p.posted, p.edited, p.edited_by FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$disp_posts) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());

and replace with this

if ($cur_user['order_form'] == '1')
    $result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.status, u.registered, u.admin_note, p.id, p.poster, p.poster_id, p.poster_ip, p.poster_email, p.message, p.smilies, p.posted, p.edited, order_form, p.edited_by FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id WHERE p.topic_id='.$id.' ORDER BY p.id DESC LIMIT '.$start_from.','.$disp_posts) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
else
    $result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.status, u.registered, u.admin_note, p.id, p.poster, p.poster_id, p.poster_ip, p.poster_email, p.message, p.smilies, p.posted, p.edited, order_form, p.edited_by FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$disp_posts) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());

Thanks too gary, who gives me the idea for this option ...  wink

Well, i wish u a nice weekend guys and thx for this awesome forum .... big_smile

Michaela

34

(20 replies, posted in Feature requests)

Well, i write my steps ...

I create a field in my database in users names order_form ...

in my profil.php i have now this code

<input name="form[order_form]" type="checkbox" value="1" <?php if ($user['order_form'] == '1') echo ' checked' ?>>

So, if anyone would read the post reverse, he need to check it ...

In the viewtopi.php i try this

if $cur_user['richtung'] != 'order=asc')
    $result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.status, u.registered, u.admin_note, p.id, p.poster, p.poster_id, p.poster_ip, p.poster_email, p.message, p.smilies, p.posted, p.edited, p.edited_by FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id WHERE p.topic_id='.$id.' ORDER BY p.id DESC LIMIT '.$start_from.','.$disp_posts) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());

else
    $result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.status, u.registered, u.admin_note, p.id, p.poster, p.poster_id, p.poster_ip, p.poster_email, p.message, p.smilies, p.posted, p.edited, p.edited_by FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$disp_posts) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());

The Profil works with the Database, if i check it, i find the 1 in my database, but the little heel are not in the checkbox... 
But i become an error: "Parse error: parse error, unexpected T_VARIABLE, expecting '(' in .../viewtopic.php ..."

Well, thats newby trash, but i try it .... smile

Michaela

35

(20 replies, posted in Feature requests)

ok, i think 4 days is enough to think about it ... big_smile
Please, i will be pleasure, if anyone have a solution for my problem ...

Michaela

36

(20 replies, posted in Feature requests)

Well, have anyone an idea?
Please, because i try sooo much, but nothing  works ....

Greetings
Michaela

37

(20 replies, posted in Feature requests)

yeeahhhhhh  smile

I think its better at the profile ....  The guest could only at the normal direction ... And the user only, if they change it in the profile ...

Michaela

38

(20 replies, posted in Feature requests)

Ok, i try all, but i think u dont understand ..  big_smile

I would like an option für users, that he can choose the direction of the topics ... not the forum!
So, if u open a topic, the first is the neweset message ...

I can change it in the viewtopic.php by

$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.status, u.registered, u.admin_note, p.id, p.poster, p.poster_id, p.poster_ip, p.poster_email, p.message, p.smilies, p.posted, p.edited, p.edited_by FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id WHERE p.topic_id='.$id.' ORDER BY p.id DESC LIMIT '.$start_from.','.$disp_posts) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());

but some usere would like to red the messages normal ....

Example: This are messages in a topic and how do u can read it ...
Normal - 1. a week ago - 2. yesterday - 3. today
with the (choose)mod - 1. today - 2. yesterday - 3. a week ago
Sorry, if i dont could explain it right ...

Greetings
Michaela

39

(20 replies, posted in Feature requests)

Because some of my members would like to read the forum at the other direction ....
So, can u help me please?

Greetings
Michaela

40

(20 replies, posted in Feature requests)

Guys, u make me crazy ...  big_smile
So, i need to insert a field in my users table called forum_order .... Then replace the code above in the viewforum.php.
But what i need to do with the profile.php? I see, u know what i mean, but i dont understand anything. Sorry!

You need to add it to profile.php as well (that is to say, you need to add a way for the user to set their choice in profile.php) 
Alternatively, you could just choose to add code so the user can add "order=asc" or "order=desc" to their URLs to sort the forum like that.

How can i realize it ?

Greetings
Michaela

41

(20 replies, posted in Feature requests)

What do u mean?
I dont understand it ...

Well sure, but i dont know, how i realize it ...  sad

I know, that i need to change the Line in viewforum.php "order by ...". But i dont know, how i can insert the tag at the bottom of the forum, to change the direction of the topics ...

Greetings
Michaela

42

(20 replies, posted in Feature requests)

Its important ...

please help me ....

Michaela

43

(20 replies, posted in Feature requests)

Hi,
long time ago but i have another problem...

I would like to insert an order-option of the topics in the forum. The users decide in his attitudes himself in which direction he would like to read. So, if anyone like to read the last topic first, he could change it....

I hope u understand me ... smile

Best regards
Michaela

44

(15 replies, posted in General discussion)

Hi,
i would like to change my forum ngine friendly too, but all answers dowsnt work for me ...
Have anybody a good mod for this problem ...?

Thanks a lot...
Michaela

45

(32 replies, posted in PunBB 1.2 modifications, plugins and integrations)

@gyro,
do u canceled the chat mod?
Because i dont here anything more about that ...  smile

Best regards
Michaela

46

(36 replies, posted in Feature requests)

Hi,
with Opera the javascript doesnt work, but who needs opera? So, no matter!  smile

IE and Netscape works, thats enough! big_smile

Greetings
Michaela

47

(36 replies, posted in Feature requests)

I feel like sh**.

I'm sooo stupid! Thx!  smile

Michaela

48

(36 replies, posted in Feature requests)

Ok, it works, but only when i refresh the page!

So, if i open the topic, nothing happened... but when i refreh the site (F5), the images get small.

Why?
Sorry, but i hate it, when nothing works and i still work at the script till i havent the problems ...

Michaela

49

(36 replies, posted in Feature requests)

Hey,
i dont know where i can change the [img] tags ...

Michaela

update: ok, i find it self: include/parser.php

50

(36 replies, posted in Feature requests)

Me again.  smile

Please tell me have i can insert this mod.

PLEASSEEE  smile

Greetings
Michaela