Include "abbr" tag within TinyMCE for Episerver CMS 11 - episerver

I'm using Episerver version 11.15.1.0 and EPiServer.UI version 11.25.0.0.
I have a requirement to include tag within TinyMCE, as shown in below example
https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_abbr_test
Please suggest if this is supported in EPiServer CMS.

You could install the TinyMCE plugin, xhtmlxtras. Then register it as an external plugin.
Then you should be able to add "abbr" (and some other buttons) to the toolbar.

Related

Does Drupal 7.87 support JQuery 3.6.x

I am trying to update jQuery for Drupal 7.87 to version 3.6.x. The jQuery_update module (7.x-3.0-alpha5)installed and the highest JQuery version I can pick from the dropdown list is 3.3.
Does anyone know if Drupal 7.87 support JQuery 3.6.x? If yes, how can I upgrade it properly?
Thanks
The module jquery_update allows to use "recent" versions of jQuery within Drupal but does not provide the latest versions because the changes tend to break Drupal 7 core JS.
A solution is to "side load" the newer version using the module jQuery Multi :
jQuery Multi allows you to load an extra version of the jQuery library
in parallel to Drupal's version, without conflicting with Drupal's
version.
For instance, if you're loading jQuery-3.6.0, the alias will be jq360, and you can use it in your scripts by wrapping your code as follows :
(function($){
// Code here
// ....
})(jq360)

how use ckeditor full version in react component

I'm using the react-ckeditor in project this is load ok.
but I need to use ckeditor full version as editor in the page
how could I use react-ckeditor full version not the standard version?
From the documentation:
By default, the CKEditor 4 React component loads the standard preset of the latest CKEditor 4 release from the CDN when creating the first editor. This behavior can be altered by changing the value of the CKEditor.editorUrl variable to point to the desired CKEditor script location:
CKEditor.editorUrl = 'https://your-website.example/ckeditor/ckeditor.js';
A zip file can be downloaded from https://ckeditor.com/ckeditor-4/download/ and upzipped inside your source code (e.g. inside public/ckeditor-4 folder if using create-react app).
I was also facing the same issue as I wanted to include all the available options in my toolbar. Turns out all you need to do is mention the type of distribution in your CDN link as full-all, to include full preset together with all other plugins created by CKSource.
I changed it from standard to full-all in my CDN link as given below-
<script src="https://cdn.ckeditor.com/4.16.0/full-all/ckeditor.js"></script>
Also, check the version. This is my source of info: https://cdn.ckeditor.com/
Hope this helps :)

CKeditor toolbar missing when edit nodes but shows when edit blocks(Dupal 7)

Reently when I edit any content type the CKeditor toolbar doesn't show but when I edit a bock it does. In both cases I am using the Full HTML text format. I have reinstalled CKeditor several times. I'm using CKeditor 7.x-1.17 and Drupal 7.50 although the problem occurred before I upgraded to 7.5.
Help!
Resolved the problem by changing the jquery version to the default. It was 1.10

Working with Cakephp and TinyMCE Editor

I am using cakephp 2.3 version. I tried to get tinymce editor by reference of Helper TinyMCE for CakePHP 2 [http://bakery.cakephp.org/articles/galitul/2012/04/11/helper_tinymce_for_cakephp_2].
At the end
Error: The application is trying to load a file from the jquery-1 plugin
is showing. I cound solve this error. Please help me to solve this error.
Thanks in advance.
You really shouldn't need a plugin for this as TinyMCE is a plugin. Just include TinyMCE in your template and in your JavaScript attach it to textareas that require the editor. I do this using the jQuery version of TinyMCE and attach it to any textarea with the class "wysiwyg" (which I add to the relevant form elements.

Removing the "category" and "tag" section from every DNN page

I have installed DNN Alpha version 5.4.0.107
every page has a category and tag section at the end of it. How do i get rid of this?
You have a few options.
You can download another skin and use that instead
You can download an older version of DNN (5.2 or before) and grab the Minimal Extropy skin package (from the Install/Skin folder)
You can edit the skin files (in Portals/_default/Skins/MinimalExtropy) to remove the Tags element

Resources