XThreads
Author Message
My Spiel
XThreads is one of my larger plugins which I have been working on for a while.  Originally planned to release it inline with MyBB 1.6, but who knows when that'll be out.  It perhaps doesn't include everything I wanted it to, but does have most of the things (plus I want to move onto other projects).

What does it do?
Take a look at RateU's forum for some nice ideas of what it can do.  I also have some more basic examples here of what can be done with XThreads.  I'm pretty sure there are many other applications of this plugin, but those examples just give you some simple ideas.

The basic idea is giving you the ability to define custom fields for your threads, and providing methods to give you a lot of flexibility with customising forums.

Warning: I'm not going to bother with "beta" labels and so on.  I've done some testing on this myself, but it's by no means extensive.  Use this at your own risk.

Installation Instructions: standard installation procedures apply - you can find them in the announcement here.
You may need to CHMOD the uploads/xthreads_ul/ folder to 0777 after uploading the files (probably won't though).

Upgrade Instructions: unless stated otherwise, the general procedure for upgrades is to simply upload the new files, then visit your AdminCP.  In there, you'll be presented with a notice to run the upgrade - just follow what it says from there on.

Usage Instructions: this is a complex plugin, and unfortunately, you're probably going to have to figure this out yourself, depending on what you want to achieve with this plugin.  HTML and CSS knowledge is strongly recommended; you should also be familiar with MyBB's template system.  Some demonstrations can be found here - hopefully these will give you a good idea of how things work.  I suggest looking at the thread descriptions example, as this is fairly easy to understand (IMO).  If you can understand how everything works, there, perhaps try out the gallery example.

Known conflicting plugins
- MyPlaza Turbo -
If you are using MyPlaza Turbo, note that the author decided to use a particularly odd method to implement certain functionality, practically destroying compatibility with any plugin which hooks into the forum add/edit routines.  I've included a patch to address this issue - you need to replace inc/myplaza/myplaza_admin_plugin.php with the following file (it's unlikely that this will be committed as the author has decided to discontinue development)

.php  myplaza_admin_plugin.php (Size: 56.27 KB / Downloads: 2297)

- PL9 Forum Icons -
Affects certain functionality.  See here for a solution.

- PHP in Templates, v1.4 or older -
Similar to PL9 Forum Icons - solution is just to update to the latest version.

- MyAdvertisements - (update: older versions only, later versions may not conflict)
Affects some thread functionality, see here for a solution.

- Group Post CSS -
See here http://mybbhacks.zingaburga.com/showthre...http://mybbhacks.zingaburga.com/showthread.php?tid=378&pid=59

All bug reports, suggestions, criticisms are appreciated (though I may not always implement suggestions) so please feel free to post them.
If you find this plugin useful, I would be grateful if you could give some token of appreciation for the work that has gone into this, and perhaps post some example usages you've come up with in the XThreads forum to help others get an idea of what can be achieve with this plugin (and for my own interest's sake Tongue).


Github: https://github.com/zingaburga/XThreads-MyBB-Plugin
Note: do NOT use the Github version, unless you know what you're doing
Changelogs: v1.10, v1.20, v1.21, v1.22, v1.23, v1.24, v1.25, v1.26, v1.27, v1.30, v1.31, v1.32, v1.337, v1.40, v1.41, v1.42, v1.43, v1.44, v1.45, v1.46, v1.47, v1.50, v1.51, v1.52, v1.53, v1.60, v1.61, v1.62, v1.63, v1.64, v1.65, v1.66, v1.67, v1.68
(This post was last modified: 12-25-2015 12:46 PM by ZiNgA BuRgA.)
Find all posts by this user
Quote this message in a reply
Download: xthreads-1.68.7z (114.53 KB)
Plugin Version: 1.68
Last Updated: 12-25-2015, 12:46 PM

Downloads: 8,327
MyBB Compatibility: 1.4.x, 1.6.x, 1.8.x
Plugin License: GPLv3
Uploader: ZiNgA BuRgA
blacksword Offline
Junior Member
**
Posts: 9
Joined: Dec 2016
Post: #931
RE: XThreads
is it still possible to update xthread to 1.8 cause im not sure if it should work now!
05-09-2017 06:24 PM
Find all posts by this user Quote this message in a reply
eldenroot Offline
Junior Member
**
Posts: 21
Joined: Dec 2015
Post: #932
RE: XThreads
Hi, I would like ask you for a small advise:
I use this type of custom field:
- input field type: file
- editable/required by: everyone
- valid file expression: gif|png|jpg|jpeg
- maximum file size: 2097152
- image thumbnail generator: 90x135|320x240

I need to set into the field: Blank replacement Value - show a default image (myboard.com/defaultimage.png) automatically if there is no image added by user. How to do that, thank you!
08-11-2017 10:28 PM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #933
RE: XThreads
(08-11-2017 10:28 PM)eldenroot Wrote:  Hi, I would like ask you for a small advise:
I use this type of custom field:
- input field type: file
- editable/required by: everyone
- valid file expression: gif|png|jpg|jpeg
- maximum file size: 2097152
- image thumbnail generator: 90x135|320x240

I need to set into the field: Blank replacement Value - show a default image (myboard.com/defaultimage.png) automatically if there is no image added by user. How to do that, thank you!

If you haven't found any solution yet, you can try using something like this in your Blank Replacement Value

HTML Code
<img src="images/logo.png" alt="" />


08-15-2017 08:53 AM
Find all posts by this user Quote this message in a reply
nier3 Offline
Member
***
Posts: 125
Joined: Jul 2012
Post: #934
RE: XThreads
I use a similar thing:

Code:
<if !$GLOBALS['threadfields']['your field name for image']['url'] then>
	<img src="if there isn't an image uploaded in Custom Thread Field I add here directly image of default" />
<elseif $GLOBALS['threadfields']['your field name for image']['url'] then>
	<img src="{$GLOBALS['threadfields']['your field name for image']['url']}/thumb400x400" alt="{$thread['subject']}" />
</if>

08-15-2017 09:44 AM
Find all posts by this user Quote this message in a reply
eldenroot Offline
Junior Member
**
Posts: 21
Joined: Dec 2015
Post: #935
RE: XThreads
(08-15-2017 08:53 AM)RateU Wrote:  
(08-11-2017 10:28 PM)eldenroot Wrote:  Hi, I would like ask you for a small advise:
I use this type of custom field:
- input field type: file
- editable/required by: everyone
- valid file expression: gif|png|jpg|jpeg
- maximum file size: 2097152
- image thumbnail generator: 90x135|320x240

I need to set into the field: Blank replacement Value - show a default image (myboard.com/defaultimage.png) automatically if there is no image added by user. How to do that, thank you!

If you haven't found any solution yet, you can try using something like this in your Blank Replacement Value

HTML Code
<img src="images/logo.png" alt="" />


Thank you!
08-16-2017 04:46 AM
Find all posts by this user Quote this message in a reply
Sasori Offline
Junior Member
**
Posts: 2
Joined: Apr 2013
Post: #936
RE: XThreads
Hello!

In editpost template, how can I specify the first post only? #1
10-25-2017 05:58 PM
Find all posts by this user Quote this message in a reply
eldenroot Offline
Junior Member
**
Posts: 21
Joined: Dec 2015
Post: #937
RE: XThreads
Guys, is possible to show pinned threads in a row? For example 3 on the same row. I cannot find proper template to do that. Thank you very much!
10-25-2017 11:01 PM
Find all posts by this user Quote this message in a reply
eldenroot Offline
Junior Member
**
Posts: 21
Joined: Dec 2015
Post: #938
RE: XThreads
I am trying to add a watermark to my images uploaded via XThreads. I found this in your documentation:

Scale down to 200x200 (or smaller) and add a watermark in the bottom-left corner (loaded from forum_root/images/logo.gif) - the watermark will be slightly transparent when blended (if PHP 5.2.5 or newer)
scale_max(200,200)->copy(newXTImg()->loadimage('images/logo.gif')->scale(50,50)->colorize(0,0,0,48),2,-2)

Anyway it seems to be not working (php 7.1 and MyBB 1.8.12). Is there any way how to create a thumbnail with watermark but without scaling (now I use 160x120). Thank you!
11-06-2017 02:45 AM
Find all posts by this user Quote this message in a reply
RocketFoot Offline
Senior Member
****
Posts: 338
Joined: Jul 2010
Post: #939
RE: XThreads
Hi guys!  I just upgraded xThreads to the latest version on my 1.8.14 board and there was no upgrade notice in my ACP to run...is this correct or is something wrong?  I just uploaded he files via FTP as instructed and went to the ACP...but no upgrader??

[Image: gallery_2_628_39582.jpg]
(This post was last modified: 12-01-2017 10:02 AM by RocketFoot.)
12-01-2017 09:44 AM
Find all posts by this user Quote this message in a reply
snajperx Offline
Junior Member
**
Posts: 1
Joined: Dec 2017
Post: #940
RE: XThreads
Hi
I have a question regarding the inc\xthreads\xt_updatehooks.php script. What are these two lines responsible for? (lines #1255, 1256)

PHP Code:
	$templates->cache['postbit'] = $js.$templates->cache['postbit'];
$templates->cache['postbit_classic'] = $js.$templates->cache['postbit_classic'];


is it safe to //comment the first one? As I found that it collides with my forum modifications when sending a quickreply post from Internet Explorer.

-edit ok, nevermind, it was the <!-- //--> comments tags at lines #1249, #1252 that was causing the script to hang up on Internet Explorer.

(This post was last modified: 12-05-2017 09:34 PM by snajperx.)
12-05-2017 02:11 AM
Find all posts by this user Quote this message in a reply


Forum Jump: