2

在 ClipBucket 视频共享脚本中,Watch_video.html 页面包含一个订阅按钮,但不包含该视频用户拥有的订阅者数量。

但是,在用户频道页面中,有一个数量。这是输出金额的代码。{$u.subscribers|number_format}

我尝试了以下但没有。

{$vdo.userid.subscribers|number_format}

watch_video.html 的完整代码: https ://raw.githubusercontent.com/arslncb/clipbucket/master/upload/styles/cbv2new/layout/watch_video.html

频道页面(没有足够的代表发布链接)

ClipBucket 完整代码:https ://github.com/arslancb/clipbucket/tree/master/upload

任何帮助表示赞赏。

4

1 回答 1

0

我在这篇博文中找到了解决方案:在 ClipBucket 的视频页面上显示订阅者数量

我对其进行了测试,并且效果很好。

首先去 watch_video.php 并添加以下内容:

//Getting the user information - Read more: BLOG.GEORGECHALHOUB.COM
echo $u = $vdo['username'];
$u = mysql_clean($u);
$udetails = $userquery->get_user_details($u);
assign("u",$udetails);
//End Getting the user information

然后转到 watch_video.html 并在要显示数字的位置添加以下 smarty 行:

{$u.subscribers|number_format}

而已。它应该工作。

于 2015-05-03T16:07:50.947 回答