eduardoarandah
Forum Replies Created
-
Forum: Plugins
In reply to: [SO Page Builder Animate] FIX: add priority to wp_footerHey!
I found the github repo and made the pull request.
Also made it properly, with enqueued scripts and their dependencies in order.Forum: Plugins
In reply to: [SO Page Builder Animate] FIX: add priority to wp_footerForum: Plugins
In reply to: [Imsanity] How to bulk resize using command lineYou’re right!
EWWW is perfect for the job.
I’ll leave this code for anyone who needs it:
# how to install required packages in ubuntu 16 sudo apt-get update && sudo apt-get install -y libjpeg-progs imagemagick php-imagick graphicsmagick gifsicle # run wp command, if not installed, install it in https://wp-cli.org/ wp ewwwio optimize media --skip-themes
Forum: Plugins
In reply to: [Imsanity] How to bulk resize using command lineLet me suggest a simple refactor like this:
function imsanity_resize_image() { imsanity_verify_permission(); global $wpdb; $id = (int) $_POST['id']; $results=imsanity_resize_image_id($id); die( json_encode( $results ) ); }
Forum: Plugins
In reply to: [Manual Related Posts] Does it load EVERY post?Loading that many posts would make the interface heavy for no good reason
In my opinion it should load the posts as you type, with ajax.
I found this plugin that does it: baw-manual-related-posts
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Version 2.2 broke my slider flexslideryes, I solved it, it was my mistake. Tried to delete my complaint but couldn’t.
Amazing plugin! congratulations
Forum: Plugins
In reply to: [Custom Post Type UI] Remove menu shortcutYou are right!
I use your plugin a lot for many projects because it makes it easy to develop themes.
However, when the project is ready, I export the code so the user don’t see the “complicated nerd stuff on the menu”
That solves the problem, however, when the user asks for changes, It would be awesome to “unhide” the plugin, make the changes and hide it again so I don’t have to remember what was the settings at first.
This is just a suggestion, the plugin does the job and I am thankful for it, great work!
Forum: Fixing WordPress
In reply to: Many processes running under index.php are killing the siteFirst of all install a cache plugin like WP Super Cache and set “htaccess method” with 86400 expiration time or longer.
If you have too many posts (more than 3000) consider deleting the old ones. I wrote a post about it here:
https://laloah.wordpress.com/2013/06/11/how-to-delete-thousands-of-posts-in-wordpress-via-phpmyadmin/And finally, change your theme because it may be using scripts like timthumb.php that rebuild the thumbnails every now and then.