Josh
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Edit] ConversionYes.. it should go seamlessly.
When I coded WP Edit… I took into consideration the naming conventions used by the different features of Ultimate Tinymce. So, since they each share the same naming convention… it should be seamless.
Of course, if you experience any issues whatsoever… just let me know; and we’ll knock them out together π
Forum: Plugins
In reply to: [WP Edit] new site , no workHello Nadine,
Thank you.Well.. can you perhaps share a screen grab or two illustrating the issue?
Are you familiar with the “Toolbar Toggle” button?
http://learn.wpeditpro.com/wordpress-tinymce-editor/#ipt_kb_toc_73_6Otherwise; it may be a javascript conflict… in which case we will need to do a little browser debugging.
Forum: Plugins
In reply to: [WP Edit] WP Edit Pro file managerHi Tony,
I apologize… I’ve had to move my home and office; kind of unexpectedly. I have been working my tail off making sure my family and work life are in order. This is not an excuse at all… just trying to explain what I’ve been going through.
Unfortunately, I cannot provide support for the premium version here on these forums. Instead, please visit my Dedicated Support Forum.
I know I have been quite absent lately… but that will all change by the end of the weekend. I cannot thank you enough for your kind patience and understanding during this matter.
Forum: Fixing WordPress
In reply to: WordPress Update EmailsYou’re welcome.
Should I copy paste the code you provided on the bottom of my wp-config.php file?
No. It should be placed in your child theme functions.php file.
Forum: Fixing WordPress
In reply to: WordPress Update EmailsP.S. In a perfect scenario I would like to turn off the emails that say that WordPress has updated altogether, but the forum threads I have gone through say such a feature does not exist.
Check the WordPress Codex on how to Disable Emails Via Filter.
Disable email update notifications:
// Disable update emails add_filter( 'auto_core_update_send_email', '__return_false' );As far as where the email is sent… it should be the email address under Settings -> General -> Email Address.
Forum: Plugins
In reply to: [WP Edit] How to add fonts to the Font Family drop-down menu in WP Edit?Hi Steve,
Well…
1) Are you aware of the “toggle toolbar” button?
http://learn.wpeditpro.com/wordpress-tinymce-editor/#ipt_kb_toc_73_62) Are you using any other plugins that may perform the same editor alterations (Ultimate tinymce, Tinymce Advanced, etc.)? If so, disable them.
Hmmm… the code looks good to me.
Perhaps try emptying/refreshing your browser cache?
Forum: Plugins
In reply to: [WP Edit] ConversionHello Prime Local,
You’re in the right place πHonestly… so much has changed…
I would suggest just ditching Ultimate Tinymce (use the uninstall feature under the “database” tab; so table entries are deleted also).Then, install WP Edit… and begin familiarizing yourself with the new interface. Many options have remained.. but the button interface is completely new.
Let me know if you have any issues whatsoever.
Where may I find a custom function that I can place in my child theme’s functions.php file to preserve the onClick event in the editor ?
function my_custom_onclick_event($args) { // Here, we define which attributes will be allowed (onclick, href, etc) // Using an asterisk allows all attributes $ext = 'a[*],img[*]'; // Check if this argument already exists or not; and add accordingly if (isset($args['extended_valid_elements'])) { $args['extended_valid_elements'] .= ',' . $ext; } else { $args['extended_valid_elements'] = $ext; } // Return argument to filter return $args; } add_filter('tiny_mce_before_init', 'my_custom_onclick_event');Notes when using ‘extended_valid_elements’:
1) When adding a new attribute by specifying an existing element rule (e.g. img), the entire rule for that element is over-ridden so be sure to include all valid attributes not just the one you wish to add.
2) Check out the TinyMCE documentation on extended_valid_elements for more information.Hello sadhaka,
I missed your question here. Please feel free to create a new topic for your question.If you are using a standard version of WordPress… then the onclick event (and any other javascript events) get removed from the editor whenever the view is switched or the content is saved.
You need to preserve the onclick event from within the tinymce configuration.
This can be done manually by a custom function; or via a plugin like WP Edit Pro.
Forum: Reviews
In reply to: [WP Edit] More than just new edit buttonsThanks wpweaver π
What an awesome review!Please do let me know if you ever have any suggestions for improvements.
Forum: Reviews
In reply to: [WP Edit] A pluginThanks Avery,
Please do let me know if you have any suggestions for improvements.Forum: Fixing WordPress
In reply to: Home Page LinkHow about creating a custom menu?
https://codex.wordpress.org/WordPress_Menu_User_GuideForum: Fixing WordPress
In reply to: You do not appear to have any plugins available at this time.No idea. I certainly don’t want to alarm you; but I’ve seen website hacks change folder permissions.
Or.. maybe you tried a new plugin which altered the permissions.
Or.. maybe your host did something.
It’s hard to say for sure. Just stay vigilant.. and if it happens again, try to track down the cause.
So is it working properly now?
Forum: Fixing WordPress
In reply to: Portfolio on website is empty after upgradeπ You’re welcome!