Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Username Html MarkUp Everywhere 4.2.x Details »»
Username Html MarkUp Everywhere 4.2.x
Version: 2.1.2, by Elite_360_ Elite_360_ is offline
Developer Last Online: Mar 2022 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.2.x Rating:
Released: 11-08-2012 Last Update: 06-09-2015 Installs: 170
DB Changes Uses Plugins Auto-Templates
Code Changes Additional Files  
No support by the author.

Mark As Installed = Support
For Version Information And Features for Next Version: Go to Post #3

This Mod Works From 4.2.x

Description:

Markup Everywhere well almost like 90% if you use every feature that vb has.
Added Member Action Drop-Down where it did not have it.
Username Font
Username Prefix (Clan Tags) and the Option to Change to a Suffix in "Usergroup Manager"
Auto Template Edits

If you don't like the way this mod does the HTML markup,
It's compatible with vBNinja mod Ultimate Usergroup HTML Markup Customizer
but username prefix (Clan Tags) and username font will not work with this mod.


Updating: from 1.0.9, 1.0.10 and 1.0.11 to 2.x.x

The templates that need to be reverted are.

Threadbit
header
blog_sidebar_user
calendar_monthly_birthday
calendar_showbirthdays
search_threadbit
activitystream_album_album
activitystream_album_comment
activitystream_album_photo
activitystream_blog_comment
activitystream_blog_entry
activitystream_calendar_event
activitystream_cms_article
activitystream_cms_comment
activitystream_forum_post
activitystream_forum_thread
activitystream_forum_visitormessage
activitystream_socialgroup_discussion
activitystream_socialgroup_group
activitystream_socialgroup_groupmessage
activitystream_socialgroup_photo
activitystream_socialgroup_photocomment


Re-upload your vb version all the file but delete the install directory and the includes/config.php.new file. Don't Run Vb Upgrade

Then go to Installation
---------------------------------------------------------------------------------
Installation:

1. Upload the contents of upload folder to your forum root.

2. Import the product-e360_markup.xml product file go to AdminCP >
Plugins & Products > Manage Products > [Add/Import Product]

3. Go to AdminCP > Settings > Options > e360 - Usernames HTML Markup Options and config.(There a link to the file edits there too)

Only if you want to use User Name Prefix and Font
4. Go to AdminCP > Usergroups > Usergroup Manager > and config each usergroup "e360 - Username Html Markup Permissions"

Download Now

File Type: zip e360 MarkUp 2.1.2.zip (88.0 KB, 547 views)

Screenshots

File Type: jpg edit_profile.jpg (21.7 KB, 0 views)
File Type: jpg Permissions.jpg (108.1 KB, 0 views)
File Type: jpg markup_options.jpg (96.6 KB, 0 views)
File Type: jpg link_to_file_edits.jpg (38.0 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
11 благодарности(ей) от:
Dave_The_Don, ggrimes620, JJBB, john7911, KorvinGump, mightyudis, mll, Rickpwns, tanzeelniazi, Techno Cowboy, yin9

Comments
  #292  
Old 06-06-2014, 07:41 PM
Elite_360_'s Avatar
Elite_360_ Elite_360_ is offline
 
Join Date: Nov 2012
Location: New Hampshire
Posts: 518
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by blackberry View Post
This is when disabled mod
Attachment 149332
my usergroup setting
Attachment 149333
Did you try to disable one mod at a time and see if that fixes the problem there might be a mod that has a conflict with my mod because i don't have that problem on my forums (VB-4.2.2-pl1).
Reply With Quote
  #293  
Old 06-19-2014, 06:25 PM
blackberry's Avatar
blackberry blackberry is offline
 
Join Date: Feb 2008
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Elite_360_ View Post
Did you try to disable one mod at a time and see if that fixes the problem there might be a mod that has a conflict with my mod because i don't have that problem on my forums (VB-4.2.2-pl1).
awww vbseo is causing this issue
Reply With Quote
  #294  
Old 09-19-2014, 09:51 PM
Elite_360_'s Avatar
Elite_360_ Elite_360_ is offline
 
Join Date: Nov 2012
Location: New Hampshire
Posts: 518
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Updated to 2.0.6 been busy don't really know what i fix i should have release it sooner this fix date back in july.
Reply With Quote
  #295  
Old 09-21-2014, 06:57 PM
blackberry's Avatar
blackberry blackberry is offline
 
Join Date: Feb 2008
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Elite_360_ View Post
Updated to 2.0.6 been busy don't really know what i fix i should have release it sooner this fix date back in july.
it doesn't show formating under thread title (img attached)
Attached Images
File Type: jpg Untitled-1.jpg (98.5 KB, 0 views)
Reply With Quote
  #296  
Old 09-22-2014, 08:37 PM
mightyudis mightyudis is offline
 
Join Date: Mar 2014
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since the mod uses fetch_musername($fetch_userinfo) to get the marked up names, which returns empty at deleted users, the names of deleted thread creators were not showing up in the threadbit_display.

I added
PHP Code:
if (empty($thread['post_musername'])){
        
$thread['post_musername'] = "<strike>".$thread['postusername']."</strike>";

to e360mods/markup/hooks/threadbit_display.php to make them re-appear.

Is my template at fault or is this a possible bug?
Reply With Quote
  #297  
Old 10-01-2014, 08:52 PM
Elite_360_'s Avatar
Elite_360_ Elite_360_ is offline
 
Join Date: Nov 2012
Location: New Hampshire
Posts: 518
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mightyudis View Post
Since the mod uses fetch_musername($fetch_userinfo) to get the marked up names, which returns empty at deleted users, the names of deleted thread creators were not showing up in the threadbit_display.

I added
PHP Code:
if (empty($thread['post_musername'])){
        
$thread['post_musername'] = "<strike>".$thread['postusername']."</strike>";

to e360mods/markup/hooks/threadbit_display.php to make them re-appear.

Is my template at fault or is this a possible bug?
I never added markup for deleted threads since only admins see it the username should be there i add markup for the next version. Revert your threadbit_display all template edit are auto now, And if you deleted a user all their threads turn to Guest user, For deleted threads it does not use the threadbit_display it uses it's own template can't remember the name of the template off the top off my head.
Reply With Quote
  #298  
Old 12-29-2014, 08:04 PM
Dieter27 Dieter27 is offline
 
Join Date: Feb 2013
Location: Belgium
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi ive tried almost evrything to enable the html markup color for thread started by but it doesnt work is there any fix thx inadvance

here is an image on how it looks now http://gyazo.com/245f6fdaca85aa02a519fb98a5aa2371
Reply With Quote
  #299  
Old 12-29-2014, 11:39 PM
Elite_360_'s Avatar
Elite_360_ Elite_360_ is offline
 
Join Date: Nov 2012
Location: New Hampshire
Posts: 518
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dieter27 View Post
hi ive tried almost evrything to enable the html markup color for thread started by but it doesnt work is there any fix thx inadvance

here is an image on how it looks now http://gyazo.com/245f6fdaca85aa02a519fb98a5aa2371
Did you edit the threadbit_display Template? All templates edits are auto now.
Reply With Quote
Благодарность от:
CAG CheechDogg
  #300  
Old 12-30-2014, 09:45 AM
Dieter27 Dieter27 is offline
 
Join Date: Feb 2013
Location: Belgium
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Elite_360_ View Post
Did you edit the threadbit_display Template? All templates edits are auto now.
i was justlooking to change the color of the sticky threads background but before ive done that it didnt worked also can you maybe explain me what to do to fix the thread started by name in color ?

http://gyazo.com/25640dedab72f177e54f446d08e2d9d5

i think these are the settings to have that in color or am i wrong thx in advance
Reply With Quote
  #301  
Old 01-01-2015, 03:13 PM
boss22 boss22 is offline
 
Join Date: Oct 2012
Posts: 112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello

Need some help ..just installed your mod and works fine - can not get username markup in threadbits - will attach picture - and see that some another have same problem -

regards

bosss
Attached Images
File Type: jpg e360.jpg (26.2 KB, 0 views)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:36 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.10201 seconds
  • Memory Usage 2,375KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (12)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (7)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete