msephton
Forum Replies Created
-
Forum: Reviews
In reply to: [Far Future Expiry Header] didn’t work for meNot got time, sorry
I just updated and the plugin was removed and all files deleted? Very odd, I had to reinstall it.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Easily remove the size limit yourselfModerator please remove this topic
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Content Preservation or overriding?It will replace everything.
+1
I’d also appreciate this feature.
Forum: Reviews
In reply to: [All-in-One WP Migration and Backup] It just worksThanks for that! Quite nice.
To see where space was being wasted I ended up using a little dashboard widget that shows the size of certain directories (including all contents of subdirectories). So that did a little more than Traktor, which only shows the size of files rather than directories.
Anyway, I had quite a full backup directory and lots of unused media from a demo theme that I could prune.
Forum: Plugins
In reply to: [Simple Links] Links with no URL still output as linksOK, so I found a way around this myself using a filter. Thanks for the docs!
Hopefully this is useful for somebody else.
// output plain text for links with no URL (or just # as URL) add_filter( 'simple_links_shortcode_link_output', 'sl_change_link_output', 1, 4); function sl_change_link_output( $link_output, $meta, $link, $image ){ if (trim($meta[web_address][0]) == '' || trim($meta[web_address][0]) == '#') { return $link->post_title; } else { return $link_output; } }
Forum: Plugins
In reply to: [Simple Links] Bulk edit open in new tab?Thanks Mat! I’ll use one as a workaround.
Well that’s unlikely as I won’t need to upload the fonts more than once!
It just looks unprofessional.
But thanks for the plugin!
- This reply was modified 7 years, 8 months ago by msephton.
Forum: Requests and Feedback
In reply to: Ability to search all settings easilyThat’s great!
It would have helped me find the setting for sure.
Many thanks!
Forum: Plugins
In reply to: [BackUpWordPress] Full backup does not include uploads/2014 directory?No exclusions were made.
I can only think that there was a permissions problem?
The zip was complete but did not include the 2014 folder.
The schedule was setup during 2014.
Please do not email the admin address on that domain, they do not go directly to me.
Forum: Plugins
In reply to: [BackUpWordPress] Full backup does not include uploads/2014 directory?Support enabled, as requested.
I cannot provide you with admin access.
We are currently recovering from a site change that removed a user and all related media files that it turns out were not backed up, as they were uploaded in 2014 and that folder was not being backed up.
Forum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Permission deniedThis has been plaguing me for some time.
Eventually, what I did was switch off error reporting at the top of twitter-feed-for-developers.php by adding:
error_reporting(0);
Of course you lose the benefit of the twitter cache speeding up page display.
The better solution would be to figure out what permission changes are needed for the files.
Forum: Reviews
In reply to: [Auto Tag Generator] Only uses words in post titleYes, I understand.
Then this is a feature request to ask for the plugin to also consider the body of the post. Is this possible?