Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Need Help and willing to pay
gemmk1 Offline
Junior Member
**
Posts: 6
Joined: Jul 2011
Post: #1
Need Help and willing to pay
Hi guys i need some help my dyslexia has gotten the better of me and i really don't understand how you ad x threads to the forum all the coding and everything it just gets so so confusing.I really would love it if someone could help me and add it to my forum for my user to use.And if you would like i would add a mybb section forum especially for you to share all these wonderful mods and plug ins with the users i have on my forum as i am sure they will make use of these.What im asking for i cant afford alot as im disabled and on permanent sick could some one please do these for me on my forum.I will add you to my bubble ads,my mini banner ads,my big banner ads and also my link directory and also pay you for helping me.

I would love my portal and the xthreads like the awesome site you have here

http://www.14.mynie.co.cc/

But i would like to keep my forum the way it is now and not like it is on the above link
07-01-2011 11:42 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #2
RE: Need Help and willing to pay
You can find all XThreads applications at the demo forum in here:
http://mybbhacks.zingaburga.com/showthread.php?tid=559
You only need to follow the steps. If you want, you can modify it a bit.

About the main page layout, if what you mean is the contents or items, almost all of the items come from the XThreads applications. You need a plugin to pull out the XThreads contents to your main page, depends on which XThreads applications you use. I think I've posted some of the example plugins here.

07-02-2011 05:40 AM
Find all posts by this user Quote this message in a reply
gemmk1 Offline
Junior Member
**
Posts: 6
Joined: Jul 2011
Post: #3
RE: Need Help and willing to pay
The ones im looking for is the portal like yours.I tried to add the link directory but it did not look anything like the demos.And the other ones im after are the gallery.videos and blogs it is just all the coding it confuses me and i dont want to wipe out my forum which ive put so much work into.Ive upload the plugin that is all installed okay
07-02-2011 06:09 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #4
RE: Need Help and willing to pay
For the link directory, I use this version:
http://mybbhacks.zingaburga.com/showthre...http://mybbhacks.zingaburga.com/showthread.php?tid=398&pid=65

But it depends on your theme.

For the left menu, I just add images beside the filtering URL in xtldir_forumdisplay_threadlist template. You can find the filtering URL block in line #4 - #34:

HTML Code
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<tr>
		<td class="thead">
			<div><strong>{$lang->xtldir_links_category}</strong></div>
		</td>
	</tr>
	<tr>
		<td class="trow1">
			<strong><a href="{$forumurl_q}filtertf_xtldcat=Search Engine">Search Engine</a></strong>
			<div class="smalltext">Links For Search Engines</div>
		</td>
	</tr>
	<tr>
		<td class="trow1">
			<strong><a href="{$forumurl_q}filtertf_xtldcat=MyBB Forum">MyBB Forum</a></strong>
			<div class="smalltext">Links For MyBB Forums</div>
		</td>
	</tr>
	<tr>
		<td class="trow1">
			<strong><a href="{$forumurl_q}filtertf_xtldcat=Entertainment">Entertainment</a></strong>
			<div class="smalltext">Links For Entertainment Sites</div>
		</td>
	</tr>
	<tr>
		<td class="trow1">
			<strong><a href="{$forumurl_q}filtertf_xtldcat=News And Education">News And Education</a></strong>
			<div class="smalltext">Links For News And Education Sites</div>
		</td>
	</tr>
</table>


If you take a look at the code above, you will see this main structure:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<!-- Start Block Header -->
	<tr>
		<td class="thead">
			<div><strong>{$lang->xtldir_links_category}</strong></div>
		</td>
	</tr>
	<!-- End Block Header -->
	<!-- Start Filtering URL -->
	<tr>
		<td class="trow1">
			<strong><!-- Category URL And Name Here --></strong>
			<div class="smalltext"><!-- Category Description Here --></div>
		</td>
	</tr>
	...........
	<!-- End Filtering URL -->
</table>


You only need to put the image for each category there, something like this:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<!-- Start Block Header -->
	<tr>
		<td class="thead">
			<div><strong>{$lang->xtldir_links_category}</strong></div>
		</td>
	</tr>
	<!-- End Block Header -->
	<!-- Start Filtering URL -->
	<tr>
		<td class="trow1">
			<div class="float_left"><!-- Image For Category Here --></div>
			<strong><!-- Category URL And Name Here --></strong>
			<div class="smalltext"><!-- Category Description Here --></div>
		</td>
	</tr>
	...........
	<!-- End Filtering URL -->
</table>


Or, you can use an additional <td> tags, like this:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<!-- Start Block Header -->
	<tr>
		<td class="thead" colspan="2">
			<div><strong>{$lang->xtldir_links_category}</strong></div>
		</td>
	</tr>
	<!-- End Block Header -->
	<!-- Start Filtering URL -->
	<tr>
		<td class="trow1">
			<!-- Image For Category Here -->
		</td>
		<td class="trow1">
			<strong><!-- Category URL And Name Here --></strong>
			<div class="smalltext"><!-- Category Description Here --></div>
		</td>
	</tr>
	...........
	<!-- End Filtering URL -->
</table>


Again, how the layout will be, depends on your theme.

For the portal, do you mean the contents or the layout?


07-02-2011 07:40 AM
Find all posts by this user Quote this message in a reply
gemmk1 Offline
Junior Member
**
Posts: 6
Joined: Jul 2011
Post: #5
RE: Need Help and willing to pay
The layoutit is really eye catching and so tidy.If you look at my bb forum i keep getting put down as they say it is un tidy.The most used theme goung and they said add unique plugins what no other promotion forum offers.

http://cbpromotion.co.uk
07-02-2011 07:54 PM
Find all posts by this user Quote this message in a reply
gemmk1 Offline
Junior Member
**
Posts: 6
Joined: Jul 2011
Post: #6
RE: Need Help and willing to pay
Ive tried for the last 3 hours thank you for trying to help me but i cant get it working i think i will have to give up
07-02-2011 09:54 PM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #7
RE: Need Help and willing to pay
What is your Link Directory URL?

07-03-2011 01:13 AM
Find all posts by this user Quote this message in a reply
gemmk1 Offline
Junior Member
**
Posts: 6
Joined: Jul 2011
Post: #8
RE: Need Help and willing to pay
(07-03-2011 01:13 AM)RateU Wrote:  What is your Link Directory URL?
We removed it i will will reinstall it tommorow for you and then post a update for you thank you for getting back to me
07-04-2011 10:25 AM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: