stevoli
Forum Replies Created
-
Logo continues to show if you resize the window, but if you view on mobile, or toggle to device view in Chrome, the logo disappears.
hamburgers.min.css is no where in the folder.
Also a new gray border shows up on the right side of the page now when you resize the window down, that wasn’t happening before the update.
Everything was working fine before the update today.
- This reply was modified 5 years, 9 months ago by stevoli. Reason: removed website URL
Thanks for the help, problem solved
Submitted
Yes, here is the format section: https://i.imgur.com/WDA8qSJ.jpg
Dates show correct in the preview, and in CSV, but always show “FALSE” in the Excel export.
Screen shot: https://i.imgur.com/MtHmR7r.jpg
Thanks for the reply, I ended up doing it a different way and just hiding the price on the designer. There was always a delay in updating the price with the new price from the ajax function, so it didn’t look very good.
Found another issue, after the latest patch. The above code works perfectly on i-text objects, but not on group or path-group objects. The i-text objects seem to be handled differently, you don’t need to subtract 50% of the width.
The following code seems to fix it at both normal and scaled.
var left = (parseFloat(wpd.canvas_w) ) / 2; if (wpd_editor.box_center_x) left = wpd_editor.box_center_x - realWidth / 2; //When the responsive mode is enabled, the scale factor already applies as zoom //so we remove it before setting the left if (wpd_editor.scale_factor) { left = (parseFloat(wpd.canvas_w) * wpd_editor.scale_factor) / 2; left = left / wpd_editor.scale_factor; } if(object.type != 'i-text') left = left - (object.getWidth() / 2); object.set("left", left);
- This reply was modified 8 years ago by stevoli.