infosws
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Editor Tools] Anchors using button don't stay when updatedTo reproduce:
– Create a page
– add an anchor in visual display mode
– Switch to text display mode and the code for the a tag isn’t there.If I edit the plugin to change it from id to name and run the same test, it works.
In the file mce/anchor/plugin.js file I changed line 22.
From
id: e.data.name
to
name: e.data.nameI also made the same change in the plugin.min.js file.
(This may not be the correct change but it worked for me).
Forum: Plugins
In reply to: [Advanced Editor Tools] Anchors using button don't stay when updatedI have seen this problem too on many customer sites since upgrading to 4.0.2.
I think the issue is that the anchor created is
<a id="test"></a>when it should be
<a name="test"></a>Hope this helps.
Forum: Plugins
In reply to: [Maximum Quantity for WooCommerce Shops] undefined function wc_add_noticeThanks. This was it. After upgrading WordPress (and WooCommerce, just to be sure) it worked.
Forum: Plugins
In reply to: [A Page Flip Book] Flipbook shows images twice, above each otherThis is what I tried originally before I reported the issue but I could only use small sizes, not the sizes we wanted.
I have my main area as w=600 h=520 and the page is then w=300 h=520 but the images still don’t look right.
If I set “auto image sizing” on. then the images fit but are every blurry when zoomed in.
If I set “auto image sizing” off then the zoomed in images look OK but they don’t fit in the space (I see the image repeated underneath it).I also have an issue with loading images but I’ll create a new issue for that.
Forum: Plugins
In reply to: [A Page Flip Book] Flipbook shows images twice, above each otherthe problem now is that 400 is too small. I want to make the book as big as possible within the content area.
Setting the height to 520 and width to 600 in both places also showed the same repeating images.I’ve tried with auto-resize on and off.
with it off, the images look clearer (as the original images are bigger than 600/520).To have the pages as big as possible and have clear images, what settings should we use?
Forum: Plugins
In reply to: [A Page Flip Book] Flipbook shows images twice, above each otherHi,
I don’t think that’s the issue.
It is repeating the same image, one above the other.The image isn’t being resized to the size of the page in the book configuration.
Main animation: width=650, height=520.
page animation: width=300, height=400.The uploaded image is w=580, h=802 and it’s resized to 300/400.
The page code shows that the div holding the image is width: 325px; height: 520px;I assume the background is repeated which is why it shows part of the image again underneath.