MyBB Community Forums

Full Version: DVZ Stream 2.2
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6
Is it possible to integrate Thankyou/Like ?
That would be amazing Big Grin
(2017-06-15, 04:06 PM)Opossum_LP Wrote: [ -> ]Is it possible to integrate Thankyou/Like ?
That would be amazing Big Grin

Yes, you should be able to find a developer in the R/S/J section.
Hello Devilshakerz!

I have a question about this plugin, can I put the Stream page in the index template? Basically I want the Replies, Threads, Users in the widget (No the "See more").

Thanks in advance!
(2017-07-14, 11:55 PM)Sasori Wrote: [ -> ]Hello Devilshakerz!

I have a question about this plugin, can I put the Stream page in the index template? Basically I want the Replies, Threads, Users in the widget (No the "See more").

Thanks in advance!

Try adding this block:
        global $dvzStreamStreams;

        $streams = null;

        foreach ($dvzStreamStreams as $streamName => $stream) {
            $streamName = \htmlspecialchars_uni($stream->getName());
            $streamTitle = $stream->getTitle();

            eval('$streams .= "' . tpl('label') . '";');
        }
before line 123 in inc/plugins/dvz_stream/hooks_frontend.php:
eval('$dvz_stream = "' . tpl('widget') . '";');

and a third <tr> row between the two existing ones in the dvzstream_widget template:
<tr>
<td class="tcat">
<span class="smalltext"><strong>{$lang->dvz_stream_select}</strong></span>
<div class="streams">{$streams}</div>
</td>
</tr>

in the same template, the following can be deleted to remove the full page link:
<p class="right"><a href="{$streamPageUrl}">&laquo; {$lang->dvz_stream_page_link}</a></p>
Now it's perfect, thanks again!

This is one of bests plugins for MyBB.
Hi, i have problem with no css string on DVZ Stream, look at that:
[Image: attachment.php?aid=12179]

It's really important for me, thanks!
Wow, this plugin is just amazing Devilshakerz Smile
I have a question, will this plugin work if your have changed your forum index.php to something content.php ?

Regards
WallBB
(2017-07-23, 04:51 AM)WallBB Wrote: [ -> ]will this plugin work if your have changed your forum index.php to something content.php ?

It should; if THIS_SCRIPT was changed from index.php you might need to change it in the plugin's code accordingly.
Version 2.0.1:
  • fixed post links in the Posts stream,
  • ACP strings now language dependent

Updating: Overwrite plugin files.

-----BEGIN PGP SIGNATURE-----

iQEcBAABCAAGBQJZdm2EAAoJEOL9rFzOOKd9lX4H/21GXe6Yaxjjc5c5BIGRTbts
CqCPIt80sJxwTP4Yr94LzeCDj08pkLW5HnppOfxHFFUM8iLImIPiumLj4yNElVr4
rvuGS7QQp5dPqsc4I5yF9jcpXv0yv/9V7GFDYvfijP0hfty0TmqwcgBwDKmSu7N5
Z3Jw4aCY2TglLFS6OQaRIPCEsfW4pvB7W5Kc17flXMTIQOLXaxek8KS33IRQgaRW
gyg7dRZPtOUvt7BI1JYT2++Gc5XeXFH9/76To1PfNxsvH5eueKAIduH4lDVaF0D+
krzNb22En63IWEYluu8YssPgbOHnXhiWhEuXyqkPoTrFcg40nMAW1ZJwLKxHEkk=
=Nzwh
-----END PGP SIGNATURE-----
(2017-07-24, 09:26 PM)Devilshakerz Wrote: [ -> ]
(2017-07-23, 04:51 AM)WallBB Wrote: [ -> ]will this plugin work if your have changed your forum index.php to something content.php ?

It should; if THIS_SCRIPT was changed from index.php you might need to change it in the plugin's code accordingly.

I tested it on live board at localserver and it works very well Smile
Thanks for such an awesome plugin DVZ, only thing is on stream page I don't see any change if I untick reply or posts. I wonder what is the purpose of that.
Pages: 1 2 3 4 5 6