MyBB Community Forums

Full Version: Advanced Sidebox 3.1.19
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(2019-09-20, 03:24 AM)Catch Wrote: [ -> ]One of the guys got it working, but thank you for your reply Smile

Cool

Just glad you got it figured out.
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?
(2019-10-02, 04:26 PM)liontaris Wrote: [ -> ]Thank you very much about the beautiful idea .

You are very welcome Smile

(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.
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 .
{$topStats['LastThreads']} 

do you know if ezgallery works in Advanced Sidebox so I can have 5 random images?
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.
Thank you very much Wildcard ,

I read the instructions !!!   Big Grin
The problem is that I do not have the ability to write a code .  Angel
Of course I do my best   My  Toungue

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, 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.
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 Smile . 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, 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, 06:07 PM)theo1977 Wrote: [ -> ]Hello Wildcard ,
I like very much your work .

That's nice of you to say. Thanks Smile

(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.