Would it be possible to add the “Find & Replace” feature to RapidWeaver?
I can’t express how much time and energy this would save me when using my own code.
Would it be possible to add the “Find & Replace” feature to RapidWeaver?
I can’t express how much time and energy this would save me when using my own code.
Brilliant suggestion.
Absolutely. I just had to change banner resource code on every page. Sure it might help if my theme supported banner images in the general setting, but it does not. I also tried to search (find) the name of the image to see where they all were, and I got zero results. I know I spelled it right. Then I tired to search for the replaced file (home.png), no results. So what good is search if it can’t find things like this?
I just had to change my banner code again. Find and replace would have made a 30-minute job a 30-second job.
Add me to the list of requesters please! We have a really great ‘Find in Project’ facility in RW8, so why not a ‘Replace’ function? Would literally save me hours of editing embedded links etc.
Pretty please?
I need to find all “http:” in my website and replace it with “https:”.
Find located more than 1800 hits. Changing all this manually would be terrible.
Is there no way to get this done automated?
Before I found a way to replace all http: with https: automated, I have this in my .htaccess file, and it seems to help:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^(.*)$ https://www.my-site.com/$1 [R=301,L]