MyBB Community Forums

Full Version: remove " http : //" ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone!
How to remove letter " http:// " in insert an images and video ?
[Image: 5445d809ebe5e.png]
Thanks all
Open jscript/bbcodes_sceditor.js, find 2 instances of value="http://" and change them to value=""
Thanks Destroy666
Video is ok,but image not working
[Image: 54470b487ad61.png]
'http://' is specifying the protocol - Hypertext Transfer protocol. Best left there IMO.
But,member insert an image -> fail
[Image: 54471a0b922f8.png]
(2014-10-22, 02:45 AM)juli_0 Wrote: [ -> ]But,member insert an image -> fail
[Image: 54471a0b922f8.png]

open jscripts / sceditor / jquery.sceditor.bbcode.min.js
find

id="image" value="http://"

replace with

id="image" value=""
(2014-10-22, 03:04 AM)martec Wrote: [ -> ]
(2014-10-22, 02:45 AM)juli_0 Wrote: [ -> ]But,member insert an image -> fail
[Image: 54471a0b922f8.png]

open jscripts / sceditor / jquery.sceditor.bbcode.min.js
find

id="image" value="http://"

replace with

id="image" value=""

Very good,thanks