RTE always on text mode by default

Can’t really think of a reason for the behaviour, maybe it is just a bug in the theme, of course I can’t say anything specific without knowing the code. But you should be able get around it by making use of the wp_default_editor hook and explicitly set the type of editor you want to show … Read more

How to modify VisualComposer’s TinyMCE editor only for a specific shortcode

There are a number of problems: The tiny_mce_before_init filter does not affect the TinyMCE editor that VC instantiates for parameters with name == ‘content’ and type == ‘content_html’. VC gets the TinyMCE HTML markup in a separate AJAX request. The editor’s instantiation does not benefit from the tinyMCEPreInit inline JavaScript array that the filter affects. … Read more

How to make elements not editable in visual editor

I don’t think this is doable on the default visual editor. You can try one of the plugin solutions out there. The most popular ones are: https://wordpress.org/plugins/beaver-builder-lite-version/ (freemium) Visual Composer (careful seem there’s an issue with 4.5) https://wordpress.org/plugins/tinymce-advanced/screenshots/ (just make easier to add HTML elements) One other approach to solve the problem is for you … Read more

Adding microdata using Structured Data Markup Helper HTML

By default TinyMCE, the (visual) editor of WordPress, strips schema microdata from input. There are plugins (example) that will prevent this behaviour. Or you can do it yourself by adding this snippet to your functions.php (docs): function wpse238918_allow_schema ($in) { if(!empty($in[‘extended_valid_elements’])) $in[‘extended_valid_elements’] .= ‘,’; $in[‘extended_valid_elements’] .= ‘@[id|class|style|title|itemscope|itemtype|itemprop|datetime|rel],div,dl,ul,dt,dd,li,span,a|rev|charset|href|lang|tabindex|accesskey|type|name|href|target|title|class|onfocus|onblur]’; return $in; } add_filter(‘tiny_mce_before_init’, ‘wpse238918_allow_schema’ );

How to force wp excerpt to use br tag?

why don’t you use get_the_excerpt instead. That doesn’t have the paragraph marks. You can even use your own filters. something similar. <?php $my_excerpt = get_the_excerpt(); if ( ” != $my_excerpt ) { // Some string manipulation performed } echo $my_excerpt; // Outputs the processed value to the page ?> view more on the codex https://codex.wordpress.org/Function_Reference/get_the_excerpt … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)