You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is one issue, when using evoAutoFolder plugin together with Pagebuilder.
EvoAutoFolder saves the images into assets/uploads/ directory, so thumb links become broken.
In this case we have to replace: thumb = thumb.replace('assets/images/', '../assets/' + opts.thumbsDir + '/images/');
to: thumb = '../' + thumb.replace('/images/', '/' + opts.thumbsDir + '/images/');
in interaction.js
The text was updated successfully, but these errors were encountered:
There is one issue, when using evoAutoFolder plugin together with Pagebuilder.
EvoAutoFolder saves the images into assets/uploads/ directory, so thumb links become broken.
In this case we have to replace:
thumb = thumb.replace('assets/images/', '../assets/' + opts.thumbsDir + '/images/');
to:
thumb = '../' + thumb.replace('/images/', '/' + opts.thumbsDir + '/images/');
in interaction.js
The text was updated successfully, but these errors were encountered: