Josh
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Edit] Responsive issuesHello,
Is the post in your link password protected? I can’t seem to view the page; it redirects me to a login area.
Forum: Plugins
In reply to: [WP Edit] Add other fonts to the existing fewHi Jordi,
Thank you for the kind words.Unfortunately (at this time) inclusion of Google Webfonts is only available in WP Edit Pro.
However, if you are using a child theme… I can point you to some articles which will explain how to add other fonts.
Forum: Plugins
In reply to: [WP Edit] WP Edit Is Unusable Bring Back Ultimate TinyMCEI can’t say for certain… as I haven’t used TinyMCE Advanced in a couple years.
If you do decide to keep WP Edit; and notice it is lacking anything at all; I strongly encourage you to leave me some feedback! User suggestions helps make this plugin what it is today π
Forum: Plugins
In reply to: [WP Edit] WP Edit Is Unusable Bring Back Ultimate TinyMCENo worries, Marvin π
Great. Glad things returned to normal.
TinyMCE Advanced is a great plugin developed by Andrew Ozz, a WordPress core contributor. It is an excellent plugin.
However, having both plugins activated simultaneously can cause some issues. It is up to the end user to choose which one they prefer.
But yes, if you choose to keep WP Edit, I would suggest removing TinyMCE Advanced… and vice versa π
Forum: Reviews
In reply to: [WP Edit] My standard editorThank you very much for taking the time to leave such a kind rating and review.
Please do let me know if you ever have any suggestions for improvements. Some of the greatest plugin features come from user suggestions.
Thanks again!
Forum: Plugins
In reply to: [Simple Download Monitor] Sidebar issueSorry for the late reply.
Yes, shortcodes are not enabled to run in widget areas by default. This is WordPress core functionality.
To add this feature (as you’ve already discovered) you’ll want to add the following line to your child theme
functions.phpfile:add_filter('widget_text', 'do_shortcode');Thanks @runerunerune for posting your solution!
Forum: Plugins
In reply to: [WP Edit] WP Edit Is Unusable Bring Back Ultimate TinyMCEHello Marvin,
I apologize for the inconvenience.My first suggestion would be to access your file directories (using FTP or your hosts cPanel), an navigate to the
wp-content/pluginsdirectory.Look for a folder called “ultimate-tinymce”. If it is there, delete that folder.
Now check and see if you can access your admin dashboard.
If not, please go back to your plugins directory. This time, look for a folder called “wp-edit”. If this folder exists, delete it.
Again, check and see if you can login to your admin dashboard.
he might’ve even reached out to Obama I’m not sure π
Lol. Love it π
Thanks Joshua. It was a pleasure working with you and your team. I’m happy the end result works exactly how you envisioned.
Forum: Plugins
In reply to: [Simple Download Monitor] Link to downloald page gives "page not found"Hi Nancy,
Can you try something for me? Go to your WP admin panel, and go to “settings” -> “permalinks”.
Select something different (than current default) and save. Now, switch back to what you had, and save again.
Now, go and see if the direct url is working for you.
Forum: Reviews
In reply to: [WP Edit] DisappointedHi there, and thank you for taking the time to leave a review.
I’m sorry you didn’t like the plugin. However, I’m glad you found an alternative that works for you.
It’s unfortunate your rating reflects comparing this plugin to another… rather than the actual functionality of this plugin.
There are many topics I’ve written on why Ultimate Tinymce did not work after the WP 3.9 update.
https://wordpress.org/support/topic/wp-edit-and-wordpress-39-please-read?replies=45
These explain why some of the features had to be re-written (and ended up in the pro version of WP Edit).Again, thank you for your time.
Forum: Reviews
In reply to: [WP Edit] Smart and EasyThank you very much for the kind review.
Please do let me know if you ever have any suggestions for improvement.
Forum: Plugins
In reply to: [WP Edit] Not Visible on X-ThemeThank you… thank you.
I certainly appreciate the honest feedback!!That toggle button is part of WordPress. It is not a button I added, or have anything to do with. If I could have my way.. that button would have been “slain” long ago by my Excalibur!
I’ve thought about adding an option where this button would be removed permanently.. and all rows would be “forced open”. But, then there are some users out there who will want the button.
So, in order to cater to everyone… I’ve left the functionality of the button alone.
Where would you suggest to add that “Tip”? What part of the settings screen? Where did you first look after activating the plugin?
Again… thanks for the feedback π
Forum: Plugins
In reply to: [WP Edit] Not Visible on X-ThemeHello, and thank you for posting your question.
Can you please show me a screenshot of the WP Edit buttons settings; and another of your post/page editor?
Did you drag the buttons around in the WP Edit settings page, to see if their order changes?
Are you aware of the Toolbar Toggle button:
http://learn.wpeditpro.com/wordpress-tinymce-editor/#ipt_kb_toc_73_6Forum: Plugins
In reply to: [WP Edit] custom CSS1)
Most themes that have an editor-style.css file, will automatically include it in the editor.If you would like to include an additional CSS file in the editor, you can do so with a WordPress function, placed in your child theme
functions.phpfile:function add_css_to_editor($init) { $css_file_url = 'path_to_your_css_file'; if(isset($init['content_css'])) { $init['content_css'] = $init['content_css'].','.$css_file_url; }else{ $init['content_css'] = $css_file_url; } } add_action('tiny_mce_before_init', 'add_css_to_editor');Change the
path_to_your_css_fileto the location of the CSS file you wish to include.However, you shouldn’t simply replicate the theme css file. Instead, you should carefully select which styles to include in the editor, and create a new CSS file with those styles.
2)
Yes.. the link I provided before shows code which illustrates how to add additional formats to the dropdown.Yes.. the pro version of WP Edit provides a GUI for creating additional style formats which are added to the dropdown.
Thanks.