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

Showing results 1 to 25 of 500
Search took 0.04 seconds.
Search: Posts Made By: MarkFL
Forum: vBulletin 4.x Add-ons 10-17-2019, 04:18 PM
Replies: 175
Miscellaneous Hacks - Featured Threads
Views: 23,273
Posted By MarkFL
I've never worked with vB 4.1.x, but I would...

I've never worked with vB 4.1.x, but I would suspect template incompatibility. I see I marked this as for vB 4.x.x, but perhaps I should have used 4.2.x instead.

Are you certain you have...
Forum: vB4 General Discussions 10-13-2019, 04:48 PM
Replies: 3
Views: 403
Posted By MarkFL
It should work on 4.2.4, and you can prevent any...

It should work on 4.2.4, and you can prevent any user by username from reporting any posts whatsoever.
Forum: vB4 General Discussions 10-12-2019, 09:23 PM
Replies: 3
Views: 403
Posted By MarkFL
You can use my product here: Discourage...

You can use my product here:

Discourage Report Abuse 2.2 (https://theadminzone.com/resources/discourage-report-abuse.1165/)

With it, you can exclude certain users (by username) from reporting...
Forum: vB3 General Discussions 09-09-2019, 01:22 AM
Replies: 2
Views: 437
Posted By MarkFL
Is this what you're wanting? Remove Post...

Is this what you're wanting?

Remove Post Edit History (from within postbits) (https://vborg.vbsupport.ru/showthread.php?t=321938)
Forum: vBulletin 4.x Add-ons 09-09-2019, 12:34 AM
Replies: 19
New Posting Features - Restricted Forums By Post Count
Views: 4,805
Posted By MarkFL
Yes, you can use forum permissions to restrict...

Yes, you can use forum permissions to restrict any usergroup from having access to any of your forums.
Forum: vBulletin 4.x Add-ons 09-08-2019, 08:34 PM
Replies: 19
New Posting Features - Restricted Forums By Post Count
Views: 4,805
Posted By MarkFL
You could do that with automated promotions and...

You could do that with automated promotions and usergroup permissions.
Forum: vB4 General Discussions 08-24-2019, 12:29 AM
Replies: 10
Views: 869
Posted By MarkFL
On one of the math help forums I help admin, I...

On one of the math help forums I help admin, I created an element that allows the user to choose from a vast array of LaTeX symbols, organized via a drop-down menu into symbols which they can click...
Forum: vB4 Programming Discussions 08-20-2019, 05:24 PM
Replies: 2
Views: 742
Posted By MarkFL
You could create a plugin hooked at...

You could create a plugin hooked at 'postbit_display_complete" with the code:

if ($post['signature'])
{
$post['signature'] = ($post['username'] . '\'s Signature<br />' . $post['signature']);
}
Forum: vB4 General Discussions 08-01-2019, 12:48 AM
Replies: 16
Views: 1,097
Posted By MarkFL
Right-click is disabled for guests, and I'm not...

Right-click is disabled for guests, and I'm not going to go through the effort of circumventing that. :)
Forum: vB4 General Discussions 07-31-2019, 04:03 PM
Replies: 16
Views: 1,097
Posted By MarkFL
If you can post a link to your site, on a page...

If you can post a link to your site, on a page with avatars you want resized, I can help you come up with something. :)
Forum: vB4 General Discussions 07-31-2019, 02:58 PM
Replies: 16
Views: 1,097
Posted By MarkFL
Can you inspect the DOM using your browser's dev...

Can you inspect the DOM using your browser's dev tools? As far as applying it to postbit, but not postbit legacy, you would have to check to see if different classes are used, and if not use a plugin...
Forum: vB4 General Discussions 07-31-2019, 01:56 PM
Replies: 16
Views: 1,097
Posted By MarkFL
I would add a class selector in the...

I would add a class selector in the "additional.css" template for a quick/easy way to change their size.
Forum: vBulletin 4.x Add-ons 07-28-2019, 09:16 PM
Replies: 2,765
Views: 545,772
Posted By MarkFL
I'm using the pro version of this product on a...

I'm using the pro version of this product on a site running vB 4.2.5 and converted to SSL, and it continues to work.
Forum: vBulletin 4.x Add-ons 07-25-2019, 11:46 AM
Replies: 58
Moderators Functions - Report Thread Prefix Management
Views: 10,476
Posted By MarkFL
Can you post a link to that page?

Can you post a link to that page?
Forum: vB3 Programming Discussions 07-12-2019, 02:40 AM
Replies: 7
Views: 800
Posted By MarkFL
In my vB 3.8.11 install on my local server, the...

In my vB 3.8.11 install on my local server, the php files have the extension ".PHP"
Forum: vB4 General Discussions 07-03-2019, 02:01 AM
Replies: 4
Views: 459
Posted By MarkFL
I would use a plugin rather than a template hack,...

I would use a plugin rather than a template hack, and set the variable $show['reportlink'] to false if the forumid matches the desired where it should be turned off.

I have a product, whose latest...
Forum: vBulletin 4.x Add-ons 07-02-2019, 03:10 PM
Replies: 398
Forum Home Enhancements - Usergroup Color Bar Legend
Views: 106,341
Posted By MarkFL
I have a similar product available, which you can...

I have a similar product available, which you can find from my profile.
Forum: vB4 Programming Discussions 06-28-2019, 01:24 PM
Replies: 3
Views: 545
Posted By MarkFL
I usually hook auto-template edits at...

I usually hook auto-template edits at "process_templates_complete". I can't say your hook is wrong per se, but give that one a try and see if you get the desired result. :)
Forum: vB4 Programming Discussions 06-28-2019, 01:41 AM
Replies: 3
Views: 545
Posted By MarkFL
Where do you have your plugin hooked?

Where do you have your plugin hooked?
Forum: vB4 General Discussions 06-08-2019, 03:03 PM
Replies: 3
Views: 469
Posted By MarkFL
For the plugins you will need one hooked at...

For the plugins you will need one hooked at "threaddata_presave" with the code:

$vbulletin->GPC['title'] = strtoupper($vbulletin->GPC['title']);
$vbulletin->GPC['subject'] =...
Forum: vB4 General Discussions 06-07-2019, 11:57 PM
Replies: 3
Views: 469
Posted By MarkFL
You're going to have to run a database query to...

You're going to have to run a database query to convert all existing thread titles, and you're going to have to write a plugin to force all future thread titles to be all uppercase before being...
Forum: vB4 General Discussions 06-06-2019, 04:51 PM
Replies: 2
Views: 302
Posted By MarkFL
I've posted an addon here that will do what you...

I've posted an addon here that will do what you want:

Username Markup In Threadbits (https://vborg.vbsupport.ru/showthread.php?t=324753)
Forum: vB4 General Discussions 05-26-2019, 03:47 PM
Replies: 2
Views: 381
Posted By MarkFL
I am attaching a simple mod I developed that will...

I am attaching a simple mod I developed that will check once an hour for closed threads in the source forums you specify and move them to the destination forum you specify.
Forum: vBulletin 4.x Add-ons 05-05-2019, 02:00 PM
Replies: 19
New Posting Features - Restricted Forums By Post Count
Views: 4,805
Posted By MarkFL
Sorry, I have no plans to add such a function to...

Sorry, I have no plans to add such a function to this product. It would require adding at least one db query and likely lots of other changes to the code/settings. :)
Forum: vBulletin 4.x Add-ons 05-05-2019, 01:19 PM
Replies: 19
New Posting Features - Restricted Forums By Post Count
Views: 4,805
Posted By MarkFL
Hello, this product only checks a user's total...

Hello, this product only checks a user's total post count, not where those posts were made.
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT. The time now is 08:47 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04506 seconds
  • Memory Usage 2,073KB
  • 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)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (30)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