Previous Thread
Next Thread
Print Thread
Hop To
Page 3 of 3 1 2 3
Joined: Jun 2006
Posts: 987
Likes: 24
Old Hand
Old Hand
Joined: Jun 2006
Posts: 987
Likes: 24
Hi Giz, looks like I need to use activetext
’ = right single quote = ’ I guess this is the most common used.
Thanks for the info I may be back asking more.
cheers
Morgan


Morgan Johansson
BritBike Forum
https://www.britbike.com/forums/ubbthreads.php
Joined: Jun 2006
Posts: 987
Likes: 24
Old Hand
Old Hand
Joined: Jun 2006
Posts: 987
Likes: 24
Hi Isaac,
I do like 7.7.4

I have mentioned it in a previous post and now
I forward the same from our members.
Some like and some don’t like the like feature. That’s just fact as we different.
I like it absolutely!

Quote
Sure is a fuss to click "Like", then you have to "OK" the Like, then you have to wait to get back to the post you liked... Oh well, everything else is just fine.

Above is members feedback.

I would like in the future if possible be able to like with one click.
see above as a luxury request.
Thanks for efforts.
Cheers


Morgan Johansson
BritBike Forum
https://www.britbike.com/forums/ubbthreads.php
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Thank you for the feedback.

This is the first public release of the UBB.likes system. You can count on adjustments happening to it over some time.

Again, thank you. thumbsup


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
1 member likes this: Morgan
Joined: Feb 2017
Posts: 44
A
Newbie
Newbie
A Offline
Joined: Feb 2017
Posts: 44
How do I make the forum fluid width?

Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by AstroCat
How do I make the forum fluid width?

The same as it has always been:
Control Panel > General: Maximum Table Width For All Screens

Examples:
100% (for full width)
1200px (for a fixed max-width)


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Feb 2017
Posts: 44
A
Newbie
Newbie
A Offline
Joined: Feb 2017
Posts: 44
I did not know that but I do now thanks.

Joined: Dec 2008
Posts: 42
Likes: 3
D
Newbie
Newbie
D Offline
Joined: Dec 2008
Posts: 42
Likes: 3
After the upgrade today, I noticed the Attachment Manager popup window no longer show little thumbnails for the uploaded images, but much larger versions. See screenshot:

[Linked Image]

The same window on this forum still shows the little icon sized images for uploaded photos.

What do I need to do to get back to the little icon size images?

Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Digitalgas
What do I need to do to get back to the little icon size images?

Make sure you have uploaded /styles/common.css to your forum from the UBB.threads 7.7.4 install package
https://www.ubbcentral.com/doc_upgrade7.php#prepare

Then refresh the page/your browser cache.


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 16,292
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,292
Likes: 116
Also ensure that if your utilizing a CDN (such as Cloudflare) that you're clearing your full cache with them after an upgrade, as they cache resources.


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!
1 member likes this: isaac
Joined: Dec 2008
Posts: 42
Likes: 3
D
Newbie
Newbie
D Offline
Joined: Dec 2008
Posts: 42
Likes: 3
Thanks, guys.
I made sure the current /styles/common.css was in there and cleared my cache. Now I'm seeing the normal small image icons in the Attachment Manager box. *Breathing Easier*
I like the embed attachment option. I hope my forum members who are less than tech savvy can figure it out. wink I'm writing a tutorial for them.

Joined: Dec 2008
Posts: 42
Likes: 3
D
Newbie
Newbie
D Offline
Joined: Dec 2008
Posts: 42
Likes: 3
After the upgrade, my Portal page Post Island for Recent Posts will only display 5 recent posts even though I have had it configured for 12 posts. Is there something else I need to do now. Apparently users like to have the 12 posts.

[Linked Image]

Here's my Portal page:
http://www.oldgas.com/forum/ubbthreads.php

Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Digitalgas
After the upgrade, my Portal page Post Island for Recent Posts will only display 5 recent posts even though I have had it configured for 12 posts. Is there something else I need to do now. Apparently users like to have the 12 posts.

Thanks for reporting this bug.

It looks like the "if not set, lets set it now" was unintentionally removed. ie; the default became the always-set setting.

The good thing is that there is an easy fix for this.

For post islands in 7.7.4
Around line 32 in /forum/cache_builders/post_island.php
FIND:
Code
// Maximum number of posts to display
$limit = 5;

REPLACE WITH:
Code
// Maximum number of posts to display
$limit = (!$items) ? 5 : $items;

This will be fixed in the next release. Thank you smile


EDIT:
For gallery islands in 7.7.4
Around line 24 in /forum/cache_builders/gallery_island.php
FIND:
Code
// Maximum number of images to display
$limit = 5;

REPLACE WITH:
Code
// Maximum number of images to display
$limit = (!$items) ? 5 : $items;


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
3 members like this: driv, Digitalgas, Gizmo
Joined: Dec 2008
Posts: 42
Likes: 3
D
Newbie
Newbie
D Offline
Joined: Dec 2008
Posts: 42
Likes: 3
Thanks for the help. I'll make the edit.
Got to keep my people happy. smile

1 member likes this: isaac
Joined: Dec 2008
Posts: 42
Likes: 3
D
Newbie
Newbie
D Offline
Joined: Dec 2008
Posts: 42
Likes: 3
One of my users just told me that the "Notify" button is gone from the row of buttons at the bottom right of each post.

[Linked Image]

Is there anything I can do to get it back? My users do click on it to tell me about objectionable posts. Helpful.

Thanks.

Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Its in the post drop-down menu

[Linked Image]

2 members like this: Digitalgas, Gizmo
Joined: Dec 2008
Posts: 42
Likes: 3
D
Newbie
Newbie
D Offline
Joined: Dec 2008
Posts: 42
Likes: 3
I didn't notice the arrow icon for the drop-down menu. Nice features available there.
Thanks for the quick help!

2 members like this: Gizmo, isaac
Page 3 of 3 1 2 3

Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
spam issues
by ECNet - 03/19/2024 11:45 PM
Looking for a forum
by azr - 03/15/2024 11:26 PM
Editing Links in Post
by Outdoorking - 03/15/2024 9:31 AM
Question on barkrowler and the like
by Mors - 02/29/2024 6:51 PM
Member Permissions Help
by domspeak - 02/27/2024 6:31 PM
Who's Online Now
2 members (Havenofsobriety, rootman), 624 guests, and 106 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 20230217)