PDA

View Full Version : Mini Mods - Add "Post Comment" buttons to CMS Articles & Blogs for guests


tpearl5
01-18-2012, 11:00 PM
The default templates for the CMS and Blog don't display any indication to the guest that comments can be posted, especially if no comments exist for that article or blog post.

Two simple template edits adds a "Post Comment" button for guests to the CMS and Blog pages. It simply links to the register page. The button will not show up for logged in users; the reply box will appear as normal for them. For CMS Articles and Blogs that do not allow comments, it will not show up.

Here is an example of it working on a CMS Article:
http://cellphoneforums.net/content/cell-phone-news/4069-ten-cell-phone-trends-features-next-ten-years.html

And a blog post:
http://nikonites.com/blogs/jdeg/73-amsterdam-transportation.html


Here's how to do it:

In template vbcms_comments_page find:
<input class="button" type="submit" name="preview" id="qr_preview" title="(Alt + X)" accesskey="x" value="{vb:rawphrase go_advanced}" tabindex="1" />
</div>
</div>
</div>
</form>
</div>
</div>


Add after:

<vb:else />
<a href="/register.php" class="newcontent_textcontrol" id="newreplylink_top"><span>+</span> Post Comment</a>



In blog_show_entry find:

<a href="{vb:raw $vboptions.vbblog_url}{vb:if "$vboptions['vbblog_url']", '/', ''}blog_post.php?{vb:raw session.sessionurl}do=comment&amp;b={vb:raw bloginfo.blogid}">{vb:rawphrase post_a_comment}</a>
</vb:if><vb:comment>if condition="$show['quickcomment']"</vb:comment>


Add after:

<vb:else />
<br><a href="/register.php" class="newcontent_textcontrol" id="newreplylink_top"><span>+</span> Post Comment</a><br><br>

Merenguista
01-23-2012, 11:17 AM
thanks

Mr_Running
01-23-2012, 03:08 PM
I do not allow comments on the CMS but
I will use the Post Comment for the Blogs
and guests can now say hello to my register page.

Thanks for Sharing :)

sspeed
03-14-2012, 07:28 PM
Thank you! This should be an integral part of the vBulletin software. Since moving to vBulletin I get ZERO comments...

jerde
04-22-2012, 09:21 PM
How would I do this for mobile style as well?

hotdogcooker
08-02-2014, 01:11 AM
I can't find where you are supposed to be able to edit the "vbcms_comments_page", is it in "Style Manager"?. Or, where is the place you edit that?.

tpearl5
08-02-2014, 01:36 AM
I can't find where you are supposed to be able to edit the "vbcms_comments_page", is it in "Style Manager"?. Or, where is the place you edit that?.

Style Manager > select "Edit Templates" for the style you want to edit > "vBulletin CMS Templates"

hotdogcooker
08-02-2014, 01:48 AM
Style Manager > select "Edit Templates" for the style you want to edit > "vBulletin CMS Templates"

I found it by Expanding "Blog Temples". I didn't know there were templates hidden within templates. After adding all of the code, now people can comment on my "blog":

http://bloggingforum.org/entry.php?3-Creating-A-Second-Forum-Section-In-vBulletin

Thanks so much for this tutorial!. Hope my problem and solution will help others out.

tpearl5
08-02-2014, 01:00 PM
I found it by Expanding "Blog Temples". I didn't know there were templates hidden within templates. After adding all of the code, now people can comment on my "blog":

http://bloggingforum.org/entry.php?3-Creating-A-Second-Forum-Section-In-vBulletin

Thanks so much for this tutorial!. Hope my problem and solution will help others out.

Well, no, this just adds the comment button for guests which links to register.php. They can't actually comment until they register...

Also, if you want to edit a template in the future and you already have some code, it may be easier to use the search feature on a bit of the code to find the template.

hotdogcooker
08-03-2014, 01:04 AM
Well, no, this just adds the comment button for guests which links to register.php. They can't actually comment until they register...

Also, if you want to edit a template in the future and you already have some code, it may be easier to use the search feature on a bit of the code to find the template.

Well, I guess like most big sites you have to register before you comment on stuff. Well, in this case I found the template without searching, I'll try next time but I guess it was obvious that the templates expand, they had to be somewhere. Thanks.

BEFORE doing this fix, there was no comment box there at all, NOTHING. I tried other browsers too, it was messed up!.