Plugin Works as Expected
-
Thanks plugin works as expected.
One thing to be aware of is that the WordPress Editor will convert 3 dashes to an emdash.
If using the short code in the via the Editor in the content or excerpt area, leafly account names that have 3 hyphens in the urls will automatically have the hyphens converted to an emdash entity. This will create an incorrect menu url.
For example:
https://www.leafly.com/embed/menu/my-store—ne?initialWidth=1029&childId=leafly-menu
The following will disable the automatic conversion:
remove_filter ('the_content', 'wptexturize');
remove_filter ('the_excerpt', 'wptexturize');
Removing the filter corrects this issue:
https://www.leafly.com/embed/menu/my-store---ne?initialWidth=1029&childId=leafly-menu
- The topic ‘Plugin Works as Expected’ is closed to new replies.