Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 65
Search took 0.01 seconds.
Search: Posts Made By: noypiscripter
Forum: vBulletin 5.x Template Modifications 02-28-2022, 10:00 PM
Replies: 0
Views: 3,242
Posted By noypiscripter
[vBMods.rocks] Add Search Engine Search Result link on vB5 Search Result page

In some cases, the vB5 search results may not provide you what you're searching for in a forum. You could replace the default vB5 Search box with the Google Search box...
Forum: vBulletin 5.x Template Modifications 09-13-2018, 09:00 PM
Replies: 9
Views: 27,892
Posted By noypiscripter
[vBMods.rocks] Make Forum Statistics Module Rock! (vBCloud compatible)

Make your Forum Statistics Module rock with these simple HTML (in the Phrase Manager) and CSS changes. This mod is vBCloud compatible. Please see the attachment to see how it looks like.

1. Paste...
Forum: vB5 General Discussions 02-20-2018, 01:31 PM
Replies: 3
Views: 420
Posted By noypiscripter
FYI. I develop free and paid vB5 mods on my site.

FYI. I develop free and paid vB5 mods on my site.
Forum: vB5 General Discussions 12-14-2017, 04:40 AM
Replies: 2
Views: 12,247
Posted By noypiscripter
[vBMods.rocks] Add Like button in Comments

By default, comments in vB5 have no Like button. I don't know the rationale behind not adding Likes in comments when you can like starter posts and replies. :confused:

If you want to enable Like...
Forum: vB5 General Discussions 12-14-2017, 04:15 AM
Replies: 2
Views: 579
Posted By noypiscripter
You might have gotten this from my site where the...

You might have gotten this from my site where the green online icon glows...
Forum: vB5 Programming Discussions 11-03-2017, 08:36 PM
Replies: 2
Views: 800
Posted By noypiscripter
I know it's solved and I was actually surprised...

I know it's solved and I was actually surprised your solution works. But I would do it this way using string concatenation:

{vb:set phraseVar, 'prefix_'}
{vb:strcat phraseVar, {vb:raw...
Forum: vB5 Design and Graphics Discussions 09-03-2017, 03:45 PM
Replies: 5
Views: 2,122
Posted By noypiscripter
I don't think there's a stylevar for that. So you...

I don't think there's a stylevar for that. So you have to use css_additional template as suggested.
Forum: vB5 General Discussions 09-01-2017, 04:52 PM
Replies: 2
Views: 662
Posted By noypiscripter
You can also debug variables using this code: ...

You can also debug variables using this code:

{vb:debugvardump bbuserinfo}


I bet this will return null or something. You might need to use $user instead. You can debugvardump that variable...
Forum: vB4 General Discussions 07-30-2017, 05:52 AM
Replies: 3
Views: 671
Posted By noypiscripter
You can add this meta tag in the head to block...

You can add this meta tag in the head to block external images using http

<meta http-equiv="Content-Security-Policy" content="block-all-mixed-content" />

I added that on my site. I also use...
Forum: vB5 Programming Discussions 07-27-2017, 02:08 PM
Replies: 3
Views: 600
Posted By noypiscripter
How did you get that error?

How did you get that error?
Forum: vB5 General Discussions 07-26-2017, 07:32 AM
Replies: 4
Views: 657
Posted By noypiscripter
Good news! Amazon has certified and approved this...

Good news! Amazon has certified and approved this Alexa skill named "vBulletin Mods That Rock Latest Posts" and it's now available on the Amazon Skill Store. :cool:

This means if you have an...
Forum: vB5 Programming Discussions 06-14-2017, 05:34 PM
Replies: 7
Views: 1,025
Posted By noypiscripter
Glad to help. But what was the error? This might...

Glad to help. But what was the error? This might help others if you mention what the error was and how you fixed it.
Forum: vB5 General Discussions 05-30-2017, 05:07 PM
Replies: 4
Views: 580
Posted By noypiscripter
Add this custom CSS in css_additional.css...

Add this custom CSS in css_additional.css template in AdminCP or in Sitebuilder > Style > CSS Editor.

.b-post-sm__title,
.b-post-sm__post-content,
.b-post-sm__author {
white-space: normal;...
Forum: vB5 Programming Discussions 05-10-2017, 11:50 PM
Replies: 3
Views: 839
Posted By noypiscripter
Does it need to be in a thread? Why not just make...

Does it need to be in a thread? Why not just make a custom profile field for State? That way, they will only enter once as oppose to entering every time they start a new topic which may be annoying...
Forum: vB5 General Discussions 05-01-2017, 10:19 PM
Replies: 2
Views: 324
Posted By noypiscripter
Check in AdminCP > Channel Management > Channel...

Check in AdminCP > Channel Management > Channel Manager that the forum channel has "Allow BB Code" setting to Yes
Forum: Modification Requests/Questions (Unpaid) 03-02-2017, 11:42 PM
Replies: 1
Views: 588
Posted By noypiscripter
I don't think that's implemented in vB5. That...

I don't think that's implemented in vB5. That would require hacking the core files which is not allowed in vBCloud.
Forum: Community Reviews 02-01-2017, 08:49 PM
Replies: 10
Views: 3,539
Posted By noypiscripter
No. Search engines would still be able to crawl...

No. Search engines would still be able to crawl the pages normally. My mod just blurs the content on the client-side via CSS.

And what Dave said, I would move the content to the root of the url....
Forum: vBulletin Pre-Sales Questions 01-24-2017, 11:07 PM
Replies: 24
Views: 11,657
Posted By noypiscripter
Events is coming soon to upcoming version vB...

Events is coming soon to upcoming version vB 5.2.6.

https://www.vbulletin.com/forum/forum/vbulletin-announcements/vbulletin-announcements_aa/4363126-vbulletin-5-2-6-alpha-5-is-now-available
...
Forum: vB5 Programming Discussions 01-16-2017, 06:01 PM
Replies: 5
Views: 1,162
Posted By noypiscripter
Call the fetchUserinfo() method of the user API...

Call the fetchUserinfo() method of the user API passing the userid of the logged in user.

$userid = 1; //hardcoded for demo purposes
$api = Api_InterfaceAbstract::instance();
$userInfo =...
Forum: vB5 Programming Discussions 01-11-2017, 04:33 AM
Replies: 1
Views: 527
Posted By noypiscripter
Change the URL in Sitebuilder. See more info at: ...

Change the URL in Sitebuilder. See more info at:
...
Forum: vB5 General Discussions 01-03-2017, 09:51 AM
Replies: 6
Views: 719
Posted By noypiscripter
Why is it not useful for you? It accomplishes...

Why is it not useful for you? It accomplishes what you want without modifying any template.
Forum: vBulletin 5.x Template Modifications 12-20-2016, 10:00 PM
Replies: 5
Views: 11,707
Posted By noypiscripter
[vBMods.rocks] Forum Category Spacing - no template editing needed/vBCloud compatible

Want to separate or group forum categories in its own "table" without editing display_Forums_list template? The entire category and forum directory are displayed using a single <table> tag. This...
Forum: vB5 Programming Discussions 12-05-2016, 04:23 AM
Replies: 2
Views: 674
Posted By noypiscripter
Take a look at actionPoll() function in...

Take a look at actionPoll() function in createcontent.php frontend controller. Try creating a poll and inspect the ajax call to see the options passed.

You call the content_poll api not...
Forum: vB5 General Discussions 11-28-2016, 06:57 PM
Replies: 9
Views: 904
Posted By noypiscripter
Disable the PHP, HTML and Ad modules rendering...

Disable the PHP, HTML and Ad modules rendering option in AdminCP temporarily.

AdminCP > Settings > Options > General Settings > Disable PHP, Static HTML, and Ad Module rendering > No
Forum: vB5 Design and Graphics Discussions 11-24-2016, 12:58 AM
Replies: 6
Views: 1,718
Posted By noypiscripter
It would be easier for the script to simply add a...

It would be easier for the script to simply add a css class in the body tag based on the template id. Then use that class to style in css whatever elements on the page you want to style.
...
Showing results 1 to 25 of 65

 
Forum Jump

All times are GMT. The time now is 03:33 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02714 seconds
  • Memory Usage 2,065KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (5)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete