The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[ushop] user post color Details »» | |||||||||||||||||||||||||
This action will let your users choose a default color for thier posts in exchange for points.
This makes use the g-force2k Font Color Hack and the action file itself is from Link14716, so all credits and thanks should go to them. Instructions (also included in the zip): a) you will need to install the font color hack by g-force2k located at https://vborg.vbsupport.ru/showthread.php?t=60031 Be sure to skip the step where you add the option for users to choose thier post color in their profile options since we want them to waste points instead via the store. b) upload the action file and install like any other. Enjoy! Show Your Support
|
Comments |
#2
|
|||
|
|||
Have you got any screen shots for it? i might install this when i get my forum working again! Sounds Good nice work
|
#3
|
|||
|
|||
I really appreciate this Reeve of Shinra, but you said that the instructions are in the zip, but there is only a php file for download.
Could you tell me how to install your action? I am still a bit of a noobie. |
#4
|
||||
|
||||
Hello: No screenshots needed, instead of having to manually put the color tags around each post, it lets your users automatically select a color to be used.
Plubius: I attached the zip but the instructions are also in my post but if you need to know how to install the action, go into your admincp / ushop / action manager -> add action and in the box just enter action.postcolor.php, set your cost and your good to go. |
#5
|
|||
|
|||
it would be wonderful if this could be set up to allow members to change the post colour or some other aspects of another member's post like they can with with the user name.
|
#6
|
||||
|
||||
damn ! I was always thinking about this, thank you to make this public.
|
#7
|
|||
|
|||
Quote:
|
#8
|
|||
|
|||
Fan flippin tastic. My members were just requesting this, and here is the ushop feature. WOW. Question, is there a way to have them select the font color from a drop down menu instead of typing it in manually, like how members select gifts?... now all I need is the Font Face mod LOL.
FANTASTIC.. THANKS!!! |
#9
|
||||
|
||||
"Question, is there a way to have them select the font color from a drop down menu instead of typing it in manually, like how members select gifts?"
Possibly but I'm going away tomorrow so I wont have time to look into it. |
#10
|
|||
|
|||
I think I got it, works for me anyway.
Give your users the option to choose their font color from a drop down menu. Open action.postcolor.php and: FIND Code:
'type' => 'input', 'size' => 25, Code:
'type' => 'dropdown', 'optioncode' => '$GLOBALS[optioncode]', Code:
// Create Input Fields Code:
$optioncode = ' <option value selected unselectable="true"> [Color]</option>\n <option style="background-color: black" value="Black" unselectable="true"> Black</option>\n <option style="background-color: sienna" value="Sienna" unselectable="true"> Sienna</option>\n <option style="background-color: darkolivegreen" value="DarkOliveGreen" unselectable="true"> Dark Olive Green</option>\n <option style="background-color: darkgreen" value="DarkGreen" unselectable="true"> Dark Green</option>\n <option style="background-color: darkslateblue" value="DarkSlateBlue" unselectable="true"> Dark Slate Blue</option>\n <option style="background-color: navy" value="Navy" unselectable="true"> Navy</option>\n <option style="background-color: indigo" value="Indigo" unselectable="true"> Indigo</option>\n <option style="background-color: darkslategray" value="DarkSlateGray" unselectable="true"> Dark Slate Gray</option>\n <option style="background-color: darkred" value="DarkRed" unselectable="true"> Dark Red</option>\n <option style="background-color: darkorange" value="DarkOrange" unselectable="true"> Dark Orange</option>\n <option style="background-color: olive" value="Olive" unselectable="true"> Olive</option>\n <option style="background-color: green" value="Green" unselectable="true"> Green</option>\n <option style="background-color: teal" value="Teal" unselectable="true"> Teal</option>\n <option style="background-color: blue" value="Blue" unselectable="true"> Blue</option>\n <option style="background-color: slategray" value="SlateGray" unselectable="true"> Slate Gray</option>\n <option style="background-color: dimgray" value="DimGray" unselectable="true"> Dim Gray</option>\n <option style="background-color: red" value="Red" unselectable="true"> Red</option>\n <option style="background-color: sandybrown" value="SandyBrown" unselectable="true"> Sandy Brown</option>\n <option style="background-color: yellowgreen" value="YellowGreen" unselectable="true"> Yellow Green</option>\n <option style="background-color: seagreen" value="SeaGreen" unselectable="true"> Sea Green</option>\n <option style="background-color: mediumturquoise" value="MediumTurquoise" unselectable="true"> Medium Turquoise</option>\n <option style="background-color: royalblue" value="RoyalBlue" unselectable="true"> Royal Blue</option>\n <option style="background-color: purple" value="Purple" unselectable="true"> Purple</option>\n <option style="background-color: gray" value="Gray" unselectable="true"> Gray</option>\n <option style="background-color: magenta" value="Magenta" unselectable="true"> Magenta</option>\n <option style="background-color: orange" value="Orange" unselectable="true"> Orange</option>\n <option style="background-color: yellow" value="Yellow" unselectable="true"> Yellow</option>\n <option style="background-color: lime" value="Lime" unselectable="true"> Lime</option>\n <option style="background-color: cyan" value="Cyan" unselectable="true"> Cyan</option>\n <option style="background-color: deepskyblue" value="DeepSkyBlue" unselectable="true"> Deep Sky Blue</option>\n <option style="background-color: darkorchid" value="DarkOrchid" unselectable="true"> Dark Orchid</option>\n <option style="background-color: silver" value="Silver" unselectable="true"> Silver</option>\n <option style="background-color: pink" value="Pink" unselectable="true"> Pink</option>\n <option style="background-color: wheat" value="Wheat" unselectable="true"> Wheat</option>\n <option style="background-color: lemonchiffon" value="LemonChiffon" unselectable="true"> Lemon Chiffon</option>\n <option style="background-color: palegreen" value="PaleGreen" unselectable="true"> Pale Green</option>\n <option style="background-color: paleturquoise" value="PaleTurquoise" unselectable="true"> Pale Turquoise</option>\n <option style="background-color: lightblue" value="LightBlue" unselectable="true"> Light Blue</option>\n <option style="background-color: plum" value="Plum" unselectable="true"> Plum</option>\n <option style="background-color: white" value="White" unselectable="true"> White</option>\n'; |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|