Answered
Layers Missing on Products since Upgrading
Is anyone having the same problem? Every single one of the Fancy Products I created in the past are now missing layers. What's really strange is that on our live website the products appear fine, meaning the layers that have disappeared in the product builder appeare and can be customized. The images for the missing layers are in the image gallery so it's not like they got deleted or anything. The two possible solutions that the FPD developers recommended didn't fix the problem. Thanks.
Same problems here
That only happens if you have at some point switched from http to https - you'll need to go through your database and replace the http URL's with https (search and replace).
In my case the images only disappear from the backend of FPD (product builder) however in frontend the images are ok
In the tables of:
_wp_fpd_products
_wp_fpd_templates
_wp_fpd_views
All URLs are on https
Same issue. Layers appear on the frontend, but I am unable to see or edit layers in the Fancy Product Builder backend.
Has anyone found an actual solution??
I also have a separate issue with my text layer appearing as left aligned (when it is supposed to be centered) on mobile browsers
I can't work out where it was introduced but I can't find a reason for it.
You can run these queries to fix missing layers when you have switched to https:
REMEMBER TO BACK UP FIRST! Dont blame me if it goes to shit!
update wp_fpd_views SET elements = REPLACE (elements, 'http:', 'https:')
update wp_fpd_views SET thumbnail = REPLACE (thumbnail, 'http:', 'https:')
update wp_fpd_products SET thumbnail = REPLACE (thumbnail, 'http:', 'https:')
update wp_fpd_templates set views = REPLACE (views, 'http:', 'https:')
This fixed it for me, and yes, i did a backup first, just in case.
#1146 - Table 'shopmeo_wordp.wp_fpd_templates' doesn't exist
My layers are still missing in the product builder after going from http: to https:
Thank you.
Thank you.