James Whayman [WildPress]
Forum Replies Created
-
Forum: Plugins
In reply to: [Airpress] Plugin not being kept up to date?Hi Chester, just wondering about this myself too, please? Are you accepting pull requests on the Github repo?
Possibly related? https://github.com/CMB2/CMB2/issues/1333
I’m having this issue too when trying to use this plugin standalone.
Error message: Uncaught Error: Class ‘CMB2_Hookup’ not found in /home/www.newsomconsulting.co.uk/www/wp-content/plugins/schema-markup-rich-snippets/includes/admin/metabox/class-metabox.php:77
Stack trace:Forum: Plugins
In reply to: [Contact Form 7] Recaptcha V3I was getting the Uncaught Error: Invalid site key or not loaded in api.js error message as well. I was using a caching plugin and after clearing the cache the problem resolved itself and the error disappeared.
I had a similar issue which was because my theme was using lodash and the _.object function was being overwritten. Removing lodash from the theme solved it for me.
Forum: Plugins
In reply to: [ACF-VC Integrator] Overriding default outputThanks @frederik-rosendahl-kaa looking forward to it.
- This reply was modified 7 years ago by James Whayman [WildPress].
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Backup verification checksum@yaniiiliev, perfect, thank you!
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Backup verification checksumHey @yaniiliev, thanks, that’s great, working nicely.
Is there any chance the code for that viewer is available in a public Git repository? It would be great if I could fork it and get it working as a command line tool.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Backup verification checksumThat’s great, thanks @yaniiliev! Looking forward to it.
Also, let me know if this should be another ticket, but is there any way to examine the contents of the file without re-importing it into WordPress? Sometimes it would be handy just to extract the SQL file or Uploads directory, rather than the whole site, but looking at the source code it seems you have a custom compression method.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] BackWPUp v3.2.4 is brokenJust adding my +1 to this. I’ve updated one of my clients and it’s been failing to back up since the update, my other clients running older versions haven’t had any issues.
Forum: Plugins
In reply to: [Regenerate Thumbnails] Site Icons issue after regenerate thumbnailsHi, I’m having this issue as well. I was using a custom size for get_site_icon_url($size), but after regenerating the thumbnails, this function just returned the default site icon.
I’m also having this issue. I don’t see the event tracking code. I’ve tried deactivating and reactivating the plugin, but no luck.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Hook for resizing image uploadsYou might need to update the $field->name, mine is “Cover image”, but this needs to be the field you’re trying to resize. Is the $image->valid if statement returning true?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Hook for resizing image uploadsI’ve actually updated the code since my previous post, as it had some errors:
/** * Resize xprofile image uploads before saving them to the filesystem */ function resize_image_uploads($data) { $field_id = $data->field_id; $field = new BP_XProfile_Field($field_id); if ($field->name === "Cover image" && !empty($data->value)) { $upload_dir = wp_upload_dir(); $image_path = $upload_dir['basedir'] . $data->value; $image = new Imagick(realpath($image_path)); if ($image->valid()) { $image->resizeImage(400, 210, Imagick::FILTER_LANCZOS, 1); $image->writeImage(); $image->destroy(); } } }
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Hook for resizing image uploadsYou probably don’t have ImageMagick installed on your server or the PHP module enabled.
This link shows you how to install ImageMagick.
https://php.net/manual/en/imagick.setup.phpIf you’re not able to install it, because you don’t have permission, you might be able to use PHP GD to process the thumbnails.
https://php.net/manual/en/book.image.php