Vicky Agravat
Forum Replies Created
-
Forum: Plugins
In reply to: [CodeMirror Blocks] Problems with the default highlighting settingOk @msaari
I will fix it soon.
Forum: Plugins
In reply to: [CodeMirror Blocks] Html codeI am happy that it works for you.
If you like the plugin, please write a review with good star ratting.
Thank you.
Forum: Plugins
In reply to: [CodeMirror Blocks] Html codeHey @mauma17
Thank you to found issue…
It has been fixed.
Please update the plugin with 1.1.2 and ask me if it will worked for you?Forum: Reviews
In reply to: [CodeMirror Blocks] Works with SwiftThank you for your great ratting and review.
It will encourage me to development of the plugin.Forum: Plugins
In reply to: [CodeMirror Blocks] A blank line is added to the last line.Screenshot of my Firefox 71 (64-bit)
I did not get any blank line.
I think something is adding padding or margin in bottom of your code block.
Forum: Plugins
In reply to: [CodeMirror Blocks] A blank line is added to the last line.Ok,
Thank you for response.
I will find the problem.
Forum: Plugins
In reply to: [CodeMirror Blocks] A blank line is added to the last line.Hello @kometchtech
Can you give the Version of Firefox you used it.
Also, It would be batter if you Give screenshot with “last blank line”.
So i can understand what is problem!Thank you.
Forum: Reviews
In reply to: [CodeMirror Blocks] Good-looking blockThank you @msaari
I have fixed the typo.
And about settings page. i just intentionally keep it separate from setting page, just because many people can not find it, if it will inside of settings page.
Forum: Reviews
In reply to: [CodeMirror Blocks] Good-looking blockHHello @msaari
Thank you for your good ratting.The feature you looking that already added in plugin version 1.1
Just Go to CodeMirror Settings page, and set default values as you want.Forum: Plugins
In reply to: [CodeMirror Blocks] Default code themeHey @thaikolja
Now, The plugin have option page (CodeMirror Blocks)
where you can set your default theme.
Please update it to (1.1.0)Forum: Plugins
In reply to: [CodeMirror Blocks] Set DefaultsHello @badjesus
Please update the plugin to (1.1.0)
Now, it have Settings (options) page, where you can set all your default settings for Code Block.
Thank you.
Hey @danstano
Now Update the Plugin (1.1.0).
It have Execute button on Front-end (having HTML, JS, or CSS) type of code block.
Just enable it on CodeMirror Blocks settings page and Enable Execution Button
Enjoy.Forum: Plugins
In reply to: [CodeMirror Blocks] Button copyThank you for your suggestion.
i will add it on next plugin update…
Forum: Plugins
In reply to: [CodeMirror Blocks] Set DefaultsHello @badjesus
I am already working on this functionality…
It will be available in next plugin update.
Thank you.
Forum: Plugins
In reply to: [CodeMirror Blocks] Block heightGreat work… @webliberty
Now, i have understand the problem…
If i set height property
auto !important
it will create problem in your other plugin….I will fix this issue in next plugin update.
But, if you want to fixed it now, here is quick solution for you,…
1. edit wp-content/plugins/wp-codemirror-block/assets/blocks/blocks.style.build.css
for editor
replace from line 3 to 6.CodeMirror { font-size: .8em; transition: inherit; }
with
.codeMirror-editor .CodeMirror { font-size: .8em; transition: inherit; height: auto; }
it will give extra class check and get higher priority than other
.CodeMirror
class.
also it will not apply outside of.codeMirror-editor
so, it will not conflict with your other plugin…2. edit wp-content/plugins/wp-codemirror-block/assets/blocks/blocks.style.build.css
for front-end
replace from line 9 to 11.CodeMirror { transition: .3s all ease-in; }
with
.code-block .CodeMirror { transition: .3s all ease-in; height: auto; }
Tell me if it worked fine!
Thank you…