$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Front End Editor|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Front End Editor

matteradmin8PV0评论

I have a pretty weird issue with my text editor. First, my website is under development (in local) and is made with the Shapely free theme. Secondly, my website is for job hiring purpose (using the WP Job Manager plugin).

So on my website I have a page where people can create job offers (directly from the website, not going in the admin panel) and there's a description field of course with a text editor and this text editor is the issue. This text editor doesnt changes when I modify the TinyMCE features in the Admin panel; even checking the box "modify front end text editor" doesnt change anything in the fornt end text editor.

Weird thing also I can see that TinyMCE is loaded on the front end editor through the source code of the page.

Hope you guys may help

I have a pretty weird issue with my text editor. First, my website is under development (in local) and is made with the Shapely free theme. Secondly, my website is for job hiring purpose (using the WP Job Manager plugin).

So on my website I have a page where people can create job offers (directly from the website, not going in the admin panel) and there's a description field of course with a text editor and this text editor is the issue. This text editor doesnt changes when I modify the TinyMCE features in the Admin panel; even checking the box "modify front end text editor" doesnt change anything in the fornt end text editor.

Weird thing also I can see that TinyMCE is loaded on the front end editor through the source code of the page.

Hope you guys may help

Share Improve this question asked Oct 31, 2018 at 9:08 B.FelixB.Felix 1
Add a comment  | 

2 Answers 2

Reset to default 0

"modify front end text editor" is not an option anywhere in WordPress. You must have a theme or plugin that's adding this option. WordPress has no UI for modifying the editor at all.

The problem is that WP Job Manager is probably not using the same 'front end text editor' that this theme/plugin is referring to. The theme/plugin that's adding this option probably uses a filter that applies to certain instances of the editor, but WP Job Manager likely doesn't use it that way, which means that whatever filter is being used isn't applying to it.

If you want to modify the WP Job Manager front-end text editor you'll need to ask its developer, or check the documentation, for a method to do this.

I had to edit the attributes in the wp-editor-field.php in the WP Job Manager plugin folder with TinyMCE attributes such as forecolor,alignleft,etc...

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far