I am using asp.net, i have added tinyMCE editor to my page.
I want to add a custom plugin to TinyEditor that display a drop down list with some variable.
And on selecting a variable from variable list that can be added to cursor place in text area.
How can i achive this or make a custom plugin of this type to be added in my TinyMCE.
For that drop down list on that plugin i want to use Jeditable, that display a drop down list.
Here is a moxiecode tutorial on how to write an own tinymce plugin.
The only problem i see is that you cannot use your own mechanism to display a drop down list.
I think you might have to stick witch the regular tinymce drop-down mechanism.
Related
Hello i need to create a dropdown that changes an entire section of content, anyone know of a elementor plugin that is capable of this?
i tried using Advanced custom fields to create a select box but not sure how to configure this...
I'm very new to WordPress (tbh, it's my first time working with it). And I need to make a website as my school project using CMS. Creating pages with templates is alright, but I have a lot of troubles with buttons. I found this website, and I can see it using WordPress. I need such buttons as on this page https://movie-chooser.co.ua/random-movie-2/ (they appear when you hover over the image). Is this a default option for buttons in WordPress? If not, is there a plugin for this or what is the way to add them on my images?
First Install Elementor plugin https://wordpress.org/plugins/elementor/
and go to page when you add button and open page with elementor
and do drag and drop any element like button, space, text editor etc.
You have several ways to achieve that:
Overwritting Wordpress CSS
Using a plugin
Create your own shortcode
1 - Overwriting Wordpress CSS
If you manage to display all the elements using wordpress template, and your only issue is to display buttons over the images, then it should only be a matter of CSS
2 - Using a plugin
The idea here is to find a plugin that help you to create/display the informations you need (maybe you'll need to add functionnality to basic post though custom fields or using a custom post type).
Once you find the right plugin, again if the plugin dosen't directly offert some settings on the design then you'll have to overwrite the plugin's CSS rules to display the elements as you want.
3 - Create your own shortcode
If you're new to Wordpress I wouldn't recommend this method as it is kind of advanced, unless you're comfortable with PHP/HTML/CSS (optionaly JS).
This is the more flexible solution as you can basically control anything, but it will require you to understand some core concepts of Wordpress like WP Query and how custom queries works.
The idea here is to create a shortcode.
THis shortcode refere to a custom made PHP function, in which you can create a custom request to fetch the informations you need to display from Wordpress database, and display it in an HTML structure that you decide.
THen angain, you'll just have to customize it though CSS.
Note : no need to create a whole plugin if you decide to create a shortcode, you can use the template functions.php file for that.
I added a custom link to menu in WordPress, as shown below.
How do I remove the text Language:? In other word, how do I add a custom link with empty navigation label? I try to use empty string "", but it does work.
This looks like a custom plugin or template. The part where it says "Language:" is most likely uneditable without creating a child template or modifying the source code. Can you give me a list of the plugins you are using ?
what if you leave it blank without quotes
I find the soluation. Change the URL to,
#qtransLangSw?title=none
Refer to Can I change the look of Language Switcher Menu?.
I would like to give the user the ability to insert custom elements in the Wordpress editor such as an accordion panel item for example. Or a an element which has an certain class or an inline style margin for example without using the HTML editor. Only using the WYSIWYG editor.
Is there a comfortable way to do this?
You can create an own plugin (this is not that difficult) and add one or more buttons to let users insert those things.
by default we have drupal search box,
i want to add one dropdown , that should contain the content types(like page,story,article)
i know there is a lot of modules, but i want to know, using hook module, i want to add the
dropdown,
i want to do it with only hook methodm
Try providing a preprocess for the search form function in your theme's template.php file.
There's a nice example of it here.