snorkeltorkel
Forum Replies Created
-
So if you decide to run this theme or are already running this theme, make sure to have daily database backups and if you suddenly just loose your theme settings do the following:
1. Extract the value of tc_theme_options from the wp_options table in your database backup
2. Overwrite the current value of tc_theme_options in the wp_options table of your database
3. Reset your browser cache and/or any kind of CDN/caching in front of your WordPress
4. Back to businessMaybe not so complicated to do the restore, but it is annoying that it is just happening randomly and sometimes you don’t detect it right away and run your site with the default theme settings for a few days.
Forum: Plugins
In reply to: [Import External Images] Has anyone gotten this to work with Squarespace?And remember to use the Search Replace plugin to replace /?format=original with /img.jpg?format=original _AND_ https://static with https://static because the Squarespace version of the plugin doesn’t support SSL at the moment.
Forum: Reviews
In reply to: [Import External Images] There is a new plugin built on the same code baseDownload the Squarespace version of the plugin from https://www.moeloubani.com/downloads/import-external-images-sqspc.zip
…and replace:
curl_grab_image($file, $tmp);
with:
curl_grab_image($file . “?format=original”, $tmp);
in the modified squarespace version to get the original attachments downloaded/imported in full size from Squarespace and saved in your WordPress Media Library.
This took me hours to figure out and I found the above solution in https://www.ads-software.com/support/topic/has-anyone-gotten-this-to-work-with-squarespace/ way too late.
I hate Squarespace even more now.
Forum: Plugins
In reply to: [Import External Images] Has anyone gotten this to work with Squarespace?I just replaced
curl_grab_image($file, $tmp);
with
curl_grab_image($file . “?format=original”, $tmp);
in the modified squarespace version downloaded from https://www.moeloubani.com/downloads/import-external-images-sqspc.zip and I got the original attachments downloaded/imported and saved in my Media Library.
Forum: Reviews
In reply to: [Image Teleporter] Warning erases imagesKind of happened to me too, I got a partial import and then it just replaced the rest with “” img tags, so I had to back each post to previous revision. So use this plugin with caution.