Wicher's phpBB2 Mods Forum Index Wicher's phpBB2 Mods
On this board you will find all phpBB2 mods that i have created over the years. Most mods are on this board installed. Before asking for support, be sure to have your board updated to the latest phpBB2 version.
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
 Simple db_update generatorSimple db_update generator   Advanced db_update generatorAdvanced db_update generator 
 This board is protected by Phpbbantispam 

Image_First_Postletter

 
Board Alert Board Message
There are in this topic 97 posts to view if you are logged in.

You can log in or register via the login / registerlink here or in the header.
Back to top  Login here and be redirected to this TopicLogin here and be redirected to this Topic RegisterRegister
Reply to topic    Wicher's phpBB2 Mods Forum Index -> Wicher's phpBB Mods Was this Topic Helpful?  
Points for this topic: 0
Topic gradiation: 
View previous topic :: View next topic  
Author Image_First_Postletter
Wicher
Site Admin


Joined: 16 Dec 2005
Posts: 1144
User's local time:
2024 Mar 19 - 11:39 AM
Country IP         : Netherlands
Country of choice: Netherlands


Was This Post Helpful?

 
Users postingpoints:
58
Posts points:
0
Post gradiation:
PostPosted: Sat Jan 21, 2006 2:43 pm    Post subject: Reply with quote

Image First Postletter
Code:
  1. #################################################################
  2. ## MOD Title: Image_First_Postletter
  3. ## MOD Author: Wicher <N> (N/A) http://www.wichersmods.nl
  4. ## MOD Description: This mod replaces the first letter of every alinea in a letterimage.
  5. ##               The user can set in there profile if they want to use it or not.
  6. ##                  Admin can choose wether to disable or enable the mod all together.
  7. ##                  Also the mod can be disabled or enabled per forum.
  8. ##               For additional LetterPacks go to http://www.wichersmods.nl
  9. ## 
  10. ## MOD Version: 1.1.2   
  11. ##
  12. ## Installation Level:  easy
  13. ## Installation Time:  30 minutes
  14. ##
  15. ## Files To Edit:    posting.php
  16. ##               viewtopic.php
  17. ##                  admin/admin_board.php
  18. ##                  admin/admin_forums.php
  19. ##                  includes/usercp_register.php
  20. ##               language/lang_english/lang_main.php
  21. ##               templates/subSilver/profile_add_body.tpl
  22. ##                  templates/subSilver/posting_body.tpl
  23. ##               templates/subSilver/subSilver.cfg
  24. ##                  templates/subSilver/admin/board_config_body.tpl
  25. ##                  templates/subSilver/admin/forum_edit_body.tpl
  26. ##
  27. ## Included Files: 26
  28. ##
  29. ## License:      http://opensource.org/licenses/gpl-license.php GNU General Public License v2
  30. ##
  31. ##############################################################
  32. ## For security purposes, please check: http://www.phpbb.com/mods/
  33. ## for the latest version of this MOD. Although MODs are checked
  34. ## before being allowed in the MODs Database there is no guarantee
  35. ## that there are no security problems within the MOD. No support
  36. ## will be given for MODs not found within the MODs Database which
  37. ## can be found at http://www.phpbb.com/mods/
  38. ##############################################################
  39. ## Author Notes:   
  40. ##         This mod has been tested on phpbb 2.0.22
  41. ##         Feel free to design your own letterpack for this mod and
  42. ##         post them at http://www.wichersmods.nl/viewtopic.php?t=20
  43. ##
  44. ##############################################################
  45. ## MOD History:
  46. ##
  47. ##   2007-06-26 - 1.1.2
  48. ##      - Fixed broken bbcodes b, i and u
  49. ##   2007-06-26 - 1.1.1
  50. ##      - When making a post with only first letters below each other the layout gor broken.
  51. ##        Fixed that thanks to a post of g0g.
  52. ##   2007-06-23 - 1.1.0
  53. ##      - Added choice for admin wether to disable or enable the mod.
  54. ##      - Added per forum choice wether to use the mod or not.
  55. ##      - Changed the way bbcode tips are presented when making a post.
  56. ##   2007-06-22 - 1.0.9
  57. ##      - large chuck of code with if's is strongly reduced thanks to Brf.
  58. ##   2007-06-22 - 1.0.8
  59. ##      - Took out bug that caused unable to register.
  60. ##   2007-06-22 - 1.0.7
  61. ##      - Took out some bugs.
  62. ##   2007-06-21 - 1.0.6
  63. ##      - Now every first letter of an alinea (when a user makes two empty lines) is displayed as an image.
  64. ##      - Added PoorHaplessPeon LetterPack to the zip
  65. ##      - Added iCloneTutorials.com LetterPack to the zip
  66. ##   2006-03-09 - 1.0.5
  67. ##      - Fifth release  (images now can be different per template.)
  68. ##      - Added Dauthus's LetterPack to the zip
  69. ##   2006-03-09 - 1.0.4
  70. ##      - Fourth release  (Took out another bug in usercp_register.php.)
  71. ##        People who installed previous versions of this mod should update or reinstall
  72. ##        because of problem with wrong insertions in database when new users register.
  73. ##        When you are updating from 1.0.3 you should do the following:
  74. ##           OPEN:
  75. ##         includes/usercp_register.php
  76. ##         FIND:
  77. ##         , user_active, user_initial , user_actkey
  78. ##         REPLACE WITH:
  79. ##         , user_initial, user_active , user_actkey
  80. ##         EOM
  81. ##         
  82. ##         After this update user_actkey should be at the end of the line.
  83. ##         user_actkey should ALWAYS be at the end of that line and ", user_active " before that
  84. ##         in order for correct working of the activationcode when a new user want to register and activate.
  85. ##          After you did above changes you are having version 1.0.4, and there is no need for other changes.
  86. ##
  87. ##   2006-02-26 - 1.0.3
  88. ##      - Third release  (Took out a bug in usercp_register.php.)
  89. ##        People who installed previous versions of this mod should update or reinstall
  90. ##        because of problem with activationkey when new users register.
  91. ##        When you are updating from 1.0.2 or before you should do the following:
  92. ##           OPEN:
  93. ##         includes/usercp_register.php
  94. ##         FIND:
  95. ##         , user_actkey, user_initial
  96. ##         REPLACE WITH:
  97. ##         , user_initial, user_actkey
  98. ##         EOM
  99. ##         
  100. ##         After this update user_actkey should be at the end of the line.
  101. ##         user_actkey should ALWAYS be at the end of that line in order for
  102. ##         correct working of the activationcode when a new user want to register and activate.
  103. ##          After you did above changes you are having version 1.0.3.
  104. ##
  105. ##   2006-01-24 - 1.0.2
  106. ##      - Third release  (Added userchoice in profile.)
  107. ##
  108. ##   2006-01-22 - 1.0.1
  109. ##      - Second release  (Text now wraps around the image.)
  110. ##
  111. ##   2006-01-21 - 1.0.0
  112. ##      - First release 
  113. ##
  114. ##############################################################
  115. ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
  116. ##############################################################



Download: IFP112.zip

To update from 1.0.6 to 1.1.2, follow the instructions in the update files.


To update from 1.0.5:
De-install 1.0.5 and install 1.1.2
For update purposes: download: IFP105.zip


Demo:

Downloads of LetterPacks for this mod.

------------------------------------------------


Letterpack 1: Included in the mod zipfile.

Download
------------------------------------------------


Letterpack 2: White

Download
------------------------------------------------


Letterpack 3:

Download
------------------------------------------------


Letterpack 4: light transparant

Download
------------------------------------------------


Letterpack 5: animated transparant

Download
------------------------------------------------


Letterpack 5: Square Black submitted by Dauthus

Download
------------------------------------------------


Letterpack 6: Dark Purple submitted by PoorHaplessPeon

Download


------------------------------------------------


Letterpack 7: Drop Caps submitted by iCloneTutorials.com

Download


------------------------------------------------


Letterpack 8: Russian Letters submitted by Fskon

Download


------------------------------------------------


Letterpack 9: Smilie Letters submitted by Wuerzi

Download

_________________

Wicher's phpBB2 Mods | Wicher's phpBB3 Mods | Statistics Mod 4.x.x


Last edited by Wicher on Wed Aug 01, 2007 9:14 am; edited 47 times in total
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Post new topic    Reply to topic    Wicher's phpBB2 Mods Forum Index -> Wicher's phpBB Mods
Author Image_First_Postletter Replies
Display posts from previous:   
Post new topic   Reply to topic    Wicher's phpBB2 Mods Forum Index -> Wicher's phpBB Mods All times are GMT

Was this Topic Helpful?  
Points for this topic: 0
Topic gradiation: 
Page 1 of 7

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum

This board is protected by Phpbbantispam
Powered by phpBB © 2001, 2005 phpBB Group

Googlepage: GooglePullerPage
IP Country Flag 2.9.4 © 2005, 2007 - 3Di (aka 3D)