Josh
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Edit] Need a plugin to insert mathsHi,
I had not seen the plugin @ronbme recommended… so I’ll be curious as well to hear how it performs.
I know TinyMCE had something called “Latex” which was a mathematical formula editor. I did some searching; and here is what I found:
1) Latex via Google API
http://moonwave99.github.io/TinyMCELatexPlugin/2) CodeGogs Equation Editor
https://www.codecogs.com/latex/integration/tinymce_v4/install.php3) WIRIS TinyMCE Plugin
http://www.wiris.com/plugins/demo/tinymce/php/Let me know which one you like… and I’ll check on integration.
Forum: Plugins
In reply to: [WP Edit] Add other fonts to the existing fewHere you go… a detailed tutorial on how to add additional custom fonts to the “Font Family” dropdown editor button:
http://learn.wpeditpro.com/adding-new-wordpress-tinymce-fonts/
Forum: Plugins
In reply to: [WP Edit] non-breaking space button?Sorry… it’s been a long week… and I’m working over-capacity.
Okay, I understand.That button was one of the many which had to be re-written when TinyMCE updated from version 3 to version 4. So, it was only included in my Pro version initially.
But, I don’t mind adding it to the free version.
I’ll get it in there for the next update.Forum: Reviews
In reply to: [WP Edit] WP Edit is a winner!!HEEYYY!!! I remember you!
I’ll be ready for some of your awesome feedback soon.
Thanks for the rating and review.Forum: Plugins
In reply to: [WP Edit] non-breaking space button?Hi Mike,
The editor actually preserves white space in it’s default capacity.
IN a new post/page…
1) Type the words “This is”.
2) Press the space bar about 50 times.
3) Type the words “a test.”.It should preserve the white space both when saving; and switching between visual and text views.
Were you describing something different?
Forum: Reviews
In reply to: [WP Edit] A must HaveYou’re welcome!! π
Thank YOU for taking the time to leave a rating and review.Please do let me know if you ever have any suggestions for improvements/enhancements. Some of the best plugin features come from user suggestions.
Have a wonderful week.
Forum: Reviews
In reply to: [WP Edit] Adds Nice FunctionalityThank you very much!
LOVE your gravatar (I’m an avid collector myself :).
Please let me know if you have any suggestions for improving the plugin…. I love user feedback!
Have a great weekend.. and thanks for taking the time to leave a rating and review.
Forum: Reviews
In reply to: [WP Edit] worksThank you very much, my friend!
Please do let me know if you ever have any suggestions for improvements. Some of the best features come from user suggestions π
Have a great day.
Forum: Fixing WordPress
In reply to: scrollbar for collapsing menuYou don’t need to edit your code. We can fix it by adding a little custom CSS:
.map_category{ max-height: 400px; overflow: auto; }The
max-heightwill set the maximum height of thedivcontainer.The
overflowwill add the scrollbar.Forum: Plugins
In reply to: [WP Edit] NG With Page BuilderHello,
Sorry for my late reply.I’m not familiar with Page Builder. Could you possible show me a couple screenshots, illustrating the steps you are taking?
You may want to visit my dedicated forum; as it’s a lot easier to upload images and attachments.
Talk to you soon π
Forum: Plugins
In reply to: [WP Edit] Adding code snippetsForum: Plugins
In reply to: [WP Edit] Responsive issuesYou bet π
Thanks for the confirmation.(Do you want me to delete the passwords you provided, above?)
Forum: Plugins
In reply to: [WP Edit] Add other fonts to the existing fewUnderstood π
Okay.. you are probably not using a child theme. A child theme needs to be created and activated by the user. It is used for adding custom styles and functions to your theme; without worrying about them being over-ridden when you update the theme.
I can’t really suggest anything else; other than considering pro; or searching the WordPress plugins repo for a free plugin which allows adding fonts to the editor.
I’m also going to write an in-depth article for adding fonts (both using pro; and by using custom code). I’ll post a link to that article here; once I have it completed.
Forum: Plugins
In reply to: [WP Edit] Responsive issuesOkay.. good. No brain aneurysms yet π
Okay… let’s check:
1) Make sure you manually empty your browser cache.
2) Let’s try adding the!importantdeclaration..jwl_one_third {width: 100% !important;}Forum: Plugins
In reply to: [WP Edit] Responsive issuesThank you.
(Was that there before, and I’m getting old…. or did you go back and add the password to your first comment?)
Okay… the code is resizing the container.. as it was designed. So that part is working properly.
If you would like to have the elements “stack” instead of “resize”… then we’ll need to add a little custom css.
Something like this should work:
/* Smartphones (portrait and landscape) ----------- */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { .jwl_one_third {width: 100%;} }