Ho to remove the link Record a video comment in comment fields?
Ho to remove the link Record a video comment in comment fields? |
I would also love to know this |
Me too, I've been looking on how to remove the "record a video comment" link in the profile and blog comments fields. Thanks |
I would like to know how too, short of finding the code of the module and making changes there. Would be nice to remove it from the "wall" feature too |
Here's a temporary solution, edit the templates/base/css/cmts.css and add display:none; in tr.cmt-head. :) |
I literally was just about to type this question myself. I've turned off video uploading & have it now as embed-only, but it kind of makes that effort moot when that "record video comment" feature is still enabled. Wish it were a simple feature to be able to turn off from Admin... |
Here's another one, edit templates/base/scripts/BxBaseCmtsView.php and remove <a class="cmt-post-reply-video" href="javascript:void(0)" onclick="javascript:' . $this->_sJsObjName . '.toggleType(this)">' . _t('_Record Your Comment') . '</a> Also remove <a class="cmt-post-reply-video" href="javascript:void(0)" onclick="javascript:' . $this->_sJsObjName . '.toggleType(this)">' . _t('_Reply as video') . '</a> |
Here's another one, edit templates/base/scripts/BxBaseCmtsView.php and remove <a class="cmt-post-reply-video" href="javascript:void(0)" onclick="javascript:' . $this->_sJsObjName . '.toggleType(this)">' . _t('_Record Your Comment') . '</a> Also remove <a class="cmt-post-reply-video" href="javascript:void(0)" onclick="javascript:' . $this->_sJsObjName . '.toggleType(this)">' . _t('_Reply as video') . '</a> This worked. Thank you! |
Thanks worked great, no more video comment, now would love to see no more sound and video in wall, thanks for any help. |
Worked for me, no more video and sound in wall: |
Thanks LuvHer, that worked. |
It this the most current information on how to do this? A more recent post pointed to this post. For some reason, I always thought there was a setting somewhere, where you could turn it off - I hate changing php files if I don't have to. Seriously - why dont' they just get rid of this entirely - does anyone have users who actually use this? |
It this the most current information on how to do this? A more recent post pointed to this post. For some reason, I always thought there was a setting somewhere, where you could turn it off - I hate changing php files if I don't have to. Seriously - why dont' they just get rid of this entirely - does anyone have users who actually use this? You can either edit the PHP file, or edit the CSS file, which is more upgrade-proof. I'll add a ticket for this. BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
How to do this in css?
It this the most current information on how to do this? A more recent post pointed to this post. For some reason, I always thought there was a setting somewhere, where you could turn it off - I hate changing php files if I don't have to. Seriously - why dont' they just get rid of this entirely - does anyone have users who actually use this? You can either edit the PHP file, or edit the CSS file, which is more upgrade-proof. I'll add a ticket for this.
There are none so blind as those that will not see. |
How to do this in css?
It this the most current information on how to do this? A more recent post pointed to this post. For some reason, I always thought there was a setting somewhere, where you could turn it off - I hate changing php files if I don't have to. Seriously - why dont' they just get rid of this entirely - does anyone have users who actually use this? You can either edit the PHP file, or edit the CSS file, which is more upgrade-proof. I'll add a ticket for this.
Read the topic. BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Ticket added: http://www.boonex.com/trac/dolphin/ticket/2481
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Here's a better CSS edit:
/templates/base/css/cmts.css:460
td.cmt-head-m a.cmt-post-reply-video { background-image: url(../images/icons/cmt-reply-record.png); }
Change to:
td.cmt-head-m a.cmt-post-reply-video { background-image: url(../images/icons/cmt-reply-record.png); display: none; } BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
This fix worked great. Thank you Magnussoft
|
great fix - thank you for sharing this Magnussoft Here's a better CSS edit:
/templates/base/css/cmts.css:460
td.cmt-head-m a.cmt-post-reply-video { background-image: url(../images/icons/cmt-reply-record.png); }
Change to:
td.cmt-head-m a.cmt-post-reply-video { background-image: url(../images/icons/cmt-reply-record.png); display: none; }
|
Here's a simple way to disable all video comments in the system if needed (D7.1) Open file: /flash/modules/video_comments/xml/main.xml Change the first item: <item key="status"><![CDATA[enabled]]></item> to Disabled: <item key="status"><![CDATA[disabled]]></item>
This disables them from ever being generated. (This is without the module installed) sup |