2019-09-20, 02:32 PM
Pages: 1 2 3 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
2019-10-02, 04:26 PM
Thank you very much about the beautiful idea .
I want to ask something , lets say that i wanted to add the topstats ( https://community.mybb.com/mods.php?acti...ad&pid=269) on advanced sidebar , is it possible?
I want to ask something , lets say that i wanted to add the topstats ( https://community.mybb.com/mods.php?acti...ad&pid=269) on advanced sidebar , is it possible?
2019-10-02, 08:15 PM
(2019-10-02, 04:26 PM)liontaris Wrote: [ -> ]Thank you very much about the beautiful idea .
You are very welcome
(2019-10-02, 04:26 PM)liontaris Wrote: [ -> ]I want to ask something , lets say that i wanted to add the topstats ( https://community.mybb.com/mods.php?acti...ad&pid=269) on advanced sidebar , is it possible?
I have never used that plugin, but you can try adding this content into a custom box:
<tr>
<td>{$topStats['LastThreads']}</td>
</tr>
<tr>
<td>{$topStats['LastActiveThreads']}</td>
</tr>
<tr>
<td>{$topStats['MostViews']}</td>
</tr>
<tr>
<td>{$topStats['Posters']}</td>
</tr>
<tr>
<td>{$topStats['Reputation']}</td>
</tr>
<tr>
<td>{$topStats['Referrals']}</td>
</tr>
<tr>
<td>{$topStats['TimeOnline']}</td>
</tr>
<tr>
<td>{$topStats['NewestUsers']}</td>
</tr>
<tr>
<td>{$topStats['Moderators']}</td>
</tr>
I have a feeling it will only work on index.php, though.
2019-10-04, 06:12 PM
Thank you very much for your answer .
I just try it . I enable the plugin but didn't work on Advanced Sidebox . To be sure I put the code also in footer and there worked .
do you know if ezgallery works in Advanced Sidebox so I can have 5 random images?
I just try it . I enable the plugin but didn't work on Advanced Sidebox . To be sure I put the code also in footer and there worked .
{$topStats['LastThreads']}
do you know if ezgallery works in Advanced Sidebox so I can have 5 random images?
2019-10-04, 07:43 PM
In order to integrate other plugins with ASB, take a look at the extensibility wiki on GitHub: https://github.com/WildcardSearch/Advanc...ensibility
There, you will find information on how to easily and quickly integrate ASB with any plugin, service, or API out there.
There, you will find information on how to easily and quickly integrate ASB with any plugin, service, or API out there.
2019-10-08, 03:49 PM
Thank you very much Wildcard ,
I read the instructions !!!
The problem is that I do not have the ability to write a code .
Of course I do my best
Inside custom box I wrote that code but appears error 500
At manage script (see the attached pic) .
I read the instructions !!!
The problem is that I do not have the ability to write a code .
Of course I do my best
Inside custom box I wrote that code but appears error 500
Quote:<tr>
<td class="trow1"><a href="{$mybb->settings['bburl']}/ezgallery.php?action=gallery&sa=listall&type=recentcomments">Last pictures</a></td>
</tr>
<tr>
<td class="trow2"><a href="' {$mybb->settings['bburl']} /ezgallery.php?sa=view&id=', $row['ID_PICTURE'], '"><img src="', $mybb->settings['bburl'] . '/gallery/', $row['thumbfilename'], '" alt="" /></a>
</tr>
At manage script (see the attached pic) .
2019-10-08, 05:50 PM
(2019-10-08, 03:49 PM)liontaris Wrote: [ -> ]The problem is that I do not have the ability to write a code.
As you've found out, you can't just put it in a custom box, you will have to write an ASB addon (with PHP).
I can't make any promises, but I will look at writing something this weekend. I have never used EZGallery, so it may take longer than expected.
(This is to anyone reading the thread)
If I were to make an EZGallery addon for ASB, what would be the most useful?
Latest pics is all I can really think of.
2019-10-08, 06:07 PM
Hello Wildcard ,
I like very much your work .
I would like also to make one question . I am vbulletin 4 user but I decide to continue with mybb, here is the link , as you see i already use the plugin . I am thinking if it possible to add one more extra sidebar at the right or the left of the forum . Is it possible ? OR an advanced footerbox to add my latest post like on my vbulletin forum on this link
I like very much your work .
I would like also to make one question . I am vbulletin 4 user but I decide to continue with mybb, here is the link , as you see i already use the plugin . I am thinking if it possible to add one more extra sidebar at the right or the left of the forum . Is it possible ? OR an advanced footerbox to add my latest post like on my vbulletin forum on this link
2019-10-08, 07:36 PM
(2019-10-08, 05:50 PM)Wildcard Wrote: [ -> ](2019-10-08, 03:49 PM)liontaris Wrote: [ -> ]The problem is that I do not have the ability to write a code.
As you've found out, you can't just put it in a custom box, you will have to write an ASB addon (with PHP).
I can't make any promises, but I will look at writing something this weekend. I have never used EZGallery, so it may take longer than expected.
(This is to anyone reading the thread)
If I were to make an EZGallery addon for ASB, what would be the most useful?
Latest pics is all I can really think of.
The last Pictures Recently Commented
2019-10-08, 09:10 PM
(2019-10-08, 06:07 PM)theo1977 Wrote: [ -> ]Hello Wildcard ,
I like very much your work .
That's nice of you to say. Thanks
(2019-10-08, 06:07 PM)theo1977 Wrote: [ -> ]I am thinking if it possible to add one more extra sidebar at the right or the left of the forum . Is it possible ? OR an advanced footerbox to add my latest post[...]
Do you mean you want two side bars on the right side? If you just mean one, yeah, just drag the boxes to the right side in ACP.
(2019-10-08, 07:36 PM)liontaris Wrote: [ -> ]The last Pictures Recently Commented
Pictures that have recently received comments? Okay. I'll look into it. Please be patient.