Previous Thread
Next Thread
Print Thread
Hop To
Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103

I have looked until I cannot look anywhere else. We turned off the personal emoticon and all that did was stop displaying them in who's online. The darn thing is still on everyone's profile and we can't figure out how to turn it off there.

Any help would be appreciated.

Next, we are trying to find the registration script for email confirmation so we can add stuff to it. We are lost in the weeds.

Larry
www.marriageadvocates.com



Joined: Jan 2004
Posts: 2,474
Likes: 3
D
Pooh-Bah
Pooh-Bah
D Offline
Joined: Jan 2004
Posts: 2,474
Likes: 3
Check the 'site permissions' > Can choose a stock avatars

I think this is what you mean? smile

(You'll also need to check the remote avatar and upload avatar options.)

Last edited by driv; 01/23/2011 12:27 PM. Reason: remote & upload
Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
For changing the wording to the emails would be in the language files.
Control Panel » Languages » Language Editor
Select mailer.php
most all of it is in the file.
There are some special value fields in there.
So you may want to download a copy of the file for a backup reference before you edit it.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
Are you talking about the mood icon that appears next to the name. That shows you are online or offline?
If you are ,I guess there are a few ways to address that.
One would be to edit the template file and delete it completely.
You could edit the template, or delete the acronym in the language file, or just upload the mood graphic with a blank one.

For deleting completely.
There are two templates depending on how you display the author.
post_side.tpl
post_top.tpl
Control Panel » Templates » Template Editor
Select the file in question above.
Look for the section that starts with online_status and comment it out or delete it.
I would suggest to comment it out.





Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103

Reuben and driv - thank you guys very, very much. I am sure you know we were staring at it with blind eyes - THAT syndrome grin

Larry
www.marriageadvocates.com


Joined: Jan 2004
Posts: 2,474
Likes: 3
D
Pooh-Bah
Pooh-Bah
D Offline
Joined: Jan 2004
Posts: 2,474
Likes: 3
Can't see the wood for the trees? I know it well smile

Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103
Reuben, found another showprofile.tpl that had to be modified:

<img src="{$config.BASE_URL}/images/{$style_array.mood}/{$mood}" alt="{$lang.ONLINE} {$mood_alt}" title="{$lang.ONLINE} {$mood_alt}" />

After modifying the various .tpl files, we are no longer plagued by the ding dong emoticon. Exactly one person noticed after a day or two. Not the most popular feature ever invented.

Larry
www.marriageadvocates.com
marital recovery, infidelity and general stuff.

Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
Yep,
That should be all of them I forgot about that one.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
Okay I take it back.
There is one more template file to edit.
showmembers.tpl

It is for the User List.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103

I forgot to mention that one, and once pointed in the right direction, our goddess of all things technical had no problem with tracking things down and doing the deed. Two forgets = something in the air, I guess. grin

Anyway, haven't found the scripts yet, still looking and poking and looking and not in evidence as yet. It may turn out to be some obscure code that points to a file or something.

I am also looking for how to align that small bug that shows an A or an M up with the name instead of on the next line. And we want to create a couple of other bugs like AB and AD, just for grins.

I would bug Rick but he is probably up to his ears trying to get V8 out the door.

Larry

www.marriageadvocates.com

Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
This should help you guys out more...

Code
[root@virtualnightclub default]# grep "style_array.mood" *.tpl   
changemood.tpl:                 parent.opener.document.images['mood'].src = '{/literal}{$config.BASE_URL}/images/{$style_array.mood}{literal}/' + avatar;
header.tpl:<img name="mood" src="{$config.BASE_URL}/images/{$style_array.mood}/{$mood}" style="vertical-align:middle" alt="{$lang.CHANGE_MOOD}" /> &darr;
online.tpl:<img alt="{$regrow[user].mood_alt}" title="{$regrow[user].mood_alt}" src="{$config.BASE_URL}/images/{$style_array.mood}/{$regrow[user].mood}" />
online.tpl:<img alt="{$regrow[user].mood_alt}" title="{$regrow[user].mood_alt}" src="{$config.BASE_URL}/images/{$style_array.mood}/{$regrow[user].mood}" />
post_comments.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/{$postrow[post].mood}" alt="{$lang.ONLINE}   {$postrow[post].mood_alt}" title="{$lang.ONLINE}   {$postrow[post].mood_alt}" />
post_comments.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/offline.gif" alt="{$lang.OFFLINE}" title="{$lang.OFFLINE}" />
post_gallery.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/{$postrow[post].mood}" alt="{$lang.ONLINE}   {$postrow[post].mood_alt}" title="{$lang.ONLINE}   {$postrow[post].mood_alt}" />
post_gallery.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/offline.gif" alt="{$lang.OFFLINE}" title="{$lang.OFFLINE}" />
post_side.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/{$postrow[post].mood}" alt="{$lang.ONLINE}   {$postrow[post].mood_alt}" title="{$lang.ONLINE}   {$postrow[post].mood_alt}" />
post_side.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/offline.gif" alt="{$lang.OFFLINE}" title="{$lang.OFFLINE}" />
post_top.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/{$postrow[post].mood}" alt="{$lang.ONLINE}   {$postrow[post].mood_alt}" title="{$lang.ONLINE}   {$postrow[post].mood_alt}" />
post_top.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/offline.gif" alt="{$lang.OFFLINE}" title="{$lang.OFFLINE}" />
showprofile.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/{$mood}" alt="{$lang.ONLINE}   {$mood_alt}" title="{$lang.ONLINE}   {$mood_alt}" />


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103
Thanks Gizmo. Now I have to copy and read it to figure out what it does wink

Larry
www.marriageadvocates.com
Now averaging almost 1,000 posts a day.


Last edited by razor_head; 01/30/2011 3:14 PM.
Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
Well, it's a report, the first part is the file, the second is the string, i searched the templates for all occurrences of style_array.mood.

so take this:
Code
post_side.tpl:<img src="{$config.BASE_URL}/images/{$style_array.mood}/offline.gif" alt="{$lang.OFFLINE}" title="{$lang.OFFLINE}" />

And you get that the template "post_side.tpl" contains the mood graphic "offline.gif".


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103

Thank you Gizmo. I owe you one. Cash anytime.

Larry
www.marriageadvocates.com
Averaging nearly 1,000 posts a day.
Online since Sept 1, 2010
Jan = 32K visits, over 1 million page views

Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103
We STILL haven't found the page scripts and email scripts for registration and confirming.

Frustrating.

Larry
www.marriageadvocates.com

larry.on.ma @gmail.com take out the space.

Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
I have said above that most all of the email content is in the language file. Read my post again several up from this one.

Maybe we need one example of what specifically you want to change.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
Originally Posted by Ruben
I have said above that most all of the email content is in the language file. Read my post again several up from this one.

Maybe we need one example of what specifically you want to change.
Again, he wants it so when a user is subscribed to a thread it does not send the thread content within the digest... He doesn't want to edit the language strings, but the user generated content that is sent with the email.


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
Originally Posted by Gizmo
Originally Posted by Ruben
I have said above that most all of the email content is in the language file. Read my post again several up from this one.

Maybe we need one example of what specifically you want to change.
Again, he wants it so when a user is subscribed to a thread it does not send the thread content within the digest... He doesn't want to edit the language strings, but the user generated content that is sent with the email.

I thought that was DAVEV that wanted to delete the content not razor head? At least I don't see that being asked in this thread.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103

There are a ton of language files. I have been through them and maybe I am going blind, I haven't seen what I am looking for. I want the sign up script and the one that verifies email addresses.

Larry

Joined: Jun 2006
Posts: 1,344
G
veteran
veteran
G Offline
Joined: Jun 2006
Posts: 1,344
have you looked at the templates? email_html.tpl etc?

Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
Quote
I want the sign up script and the one that verifies email addresses.

A vague question is going to get a vague answer.
I for one don't have a clue what you want to actually change so I could say well it is "scripts/newuser.inc.php"

There are to many scripts and settings to deal with, to give a flat this is the file to edit.

Unless you provide a question with at least one example of what you specifiably want to change to what.

It could be a simple style change to alter the appearance of the email.(Style editor)
Or change the content of what the email sends.(mostly language file editor)
Or change the registration page.(could be a template file)
Or a control panel setting changed.

Or a code modification to completely change the way it all works.

Or a combination of all the above.

I am sorry, but I don't think anyone can properly answer the question as posted. And be of any use to you.




Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Aug 2010
Posts: 103
R
member
member
R Offline
Joined: Aug 2010
Posts: 103
yes gliderdad, which gets us to no words. Example, email_text.tpl =

{* Script Version 7.5.5 *}
{if $header}
{$header}
{/if}
{if $salute}{$salute}{/if}
{$content}
{if $posts}
{section name=ind loop=$posts}
{$posts[ind].subject}
{$posts[ind].body}
{/section}
{/if}
{if $footer}
---------------------------------------------------------------------------------
{$footer}
{/if}

I know it is something that we are overlooking either in the instructions or in the code in .tpls, which is, of course, frustrating.

Larry
www.marriageadvocates.com

Last edited by razor_head; 02/06/2011 2:25 PM.
Joined: Dec 2003
Posts: 6,565
Likes: 78
Joined: Dec 2003
Posts: 6,565
Likes: 78
Originally Posted by razor_head
yes gliderdad, which gets us to no words.
Well that would be the language files if you want to change the wording on a email sent.
And BTW,
That item is not documented in the manual.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Jun 2006
Posts: 16,301
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,301
Likes: 116
Those references would be called by the script file


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!

Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
Version 7.7.5 Images suddenly not displaying
by Stovebolt - 05/04/2024 11:19 AM
Bots
by Outdoorking - 04/13/2024 5:08 PM
Can you add html to language files?
by Baldeagle - 04/07/2024 2:41 PM
Do I need to rebuild my database?
by Baldeagle - 04/07/2024 2:58 AM
This is not a bug, but a suggestion
by Baldeagle - 04/05/2024 11:25 PM
Who's Online Now
2 members (Geoff, 1 invisible), 692 guests, and 171 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20240506)