Das war zu ändern: ', 0) }; Add Above: /** * STD: * Insert video override */ this.insertvideo = function() { this.wrap_tags_lite( 'Invalid Video Link', 0) }; Save and upload jscripts\ips_text_editor.js -------------------------------------------------------------------------------- Open jscripts\ips_text_editor_lite.js (Note: it's much easier to edit the javascript files you find in the board\Development\javascript_uncompressed\jscripts folder of your IPB download) Find: /** * STD: * IPB Quote override */ this.ipb_quote = function() { var _text = this.get_selection(); this.wrap_tags( 'quote', false, _text ); }; Add Above: /** * STD: * Insert video override */ this.insertvideo = function() { var _text = this.get_selection(); var _url = prompt( ipb_global_lang['editor_enter_video'], _text ? _text : "http://" ); if( !_url || _url == null || _url == 'http://' ) { return false; } this.wrap_tags( 'video', false, _url ); }; Save and upload jscripts\ips_text_editor_lite.js -------------------------------------------------------------------------------- Open cache\lang_cache\--\lang_javascript.js Find: 'editor_enter_image' : 'Please enter the URL for this image', Add Below: 'editor_enter_video' : 'Please enter the URL for this video', Save and upload cache\lang_cache\--\lang_javascript.js Repeat the above step for each language set that you have installed on your site. Step 4: Skin Edits Log in to your ACP and go to Look & Feel -> Skins & Templates -> Skin Manager. Click on the Options button beside a skin and then click Edit Template HTML. Perform the following edits on your first skin, and then repeat for each skin you have installed: Section: Post / PM Editor Template Bit: ips_editor Find: <td><div class="rte-normal" id="{$editor_id}_cmd_insertimage"><img src="{$images_path}rte-image-button.png" alt="{$this->ipsclass->lang['js_rte_lite_img']}" title="{$this->ipsclass->lang['js_rte_lite_img']}"></div></td> Add Below: <td><div class="rte-normal" id="{$editor_id}_cmd_insertvideo"><img src="{$images_path}rte-video-button.png" alt="{$this->ipsclass->lang['js_rte_lite_video']}" title="{$this->ipsclass->lang['js_rte_lite_video']}"></div></td> Find: 'js_rte_image' : "{$this->ipsclass->lang['js_rte_image']}", Add Below: 'js_rte_video' : "{$this->ipsclass->lang['js_rte_video']}", Save Template Bit. Section: Post Screen Template Bit: inline_edit_quick_box Find: <td><div class="rte-normal" id="{$pid}_cmd_insertimage"><img src="style_images/<#IMG_DIR#>/folder_editor_images/rte-image-button.png" alt="{$this->ipsclass->lang['js_rte_lite_img']}" title="{$this->ipsclass->lang['js_rte_lite_img']}"></div></td> Add Below: <td><div class="rte-normal" id="{$pid}_cmd_insertvideo"><img src="style_images/<#IMG_DIR#>/folder_editor_images/rte-video-button.png" alt="{$this->ipsclass->lang['js_rte_lite_video']}" title="{$this->ipsclass->lang['js_rte_lite_video']}"></div></td> Save Template Bit. Section: Topic View Template Bit: quick_reply_box_open Find: <td><div class="rte-normal" id="fast-reply_cmd_insertimage"><img src="style_images/<#IMG_DIR#>/folder_editor_images/rte-image-button.png" alt="{$this->ipsclass->lang['js_rte_lite_img']}" title="{$this->ipsclass->lang['js_rte_lite_img']}" /></div></td> Add Below: <td><div class="rte-normal" id="fast-reply_cmd_insertvideo"><img src="style_images/<#IMG_DIR#>/folder_editor_images/rte-video-button.png" alt="{$this->ipsclass->lang['js_rte_lite_video']}" title="{$this->ipsclass->lang['js_rte_lite_video']}"></div></td> Save Template Bit. Repeat the above steps for each skin installed on your site. After that remember to rebuild your skin(s), Look & Feel -> Skins & Templates -> Skin Tools -> Rebuild Skin Set Cache