lisaa1111
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Cannot import @wordpress/interactivity-routerHey @susansoaps,
Ugh, that’s super frustrating — especially when it looks perfect in the plugin preview but then totally breaks on mobile after publishing 😩 Been there!Sounds like the styling from the WPFunnel preview isn’t fully carrying over when the page actually goes live. Sometimes that happens if the template relies on plugin-specific styles that don’t apply outside the editor or if something in the theme overrides them.
One quick thing you could try: open the live page on mobile, inspect it (or just use responsive mode in Chrome dev tools), and check if any sections are overflowing or not wrapping right. You might be able to fix it with a bit of custom CSS. Something like:
css
CopyEdit
.wp-block-columns { flex-wrap: wrap !important; }Also — weird tip but sometimes caching plugins or minifiers can mess with layouts. If you’ve got anything like that running, maybe clear the cache or disable temporarily just to test.
Had a kinda similar issue when testing mobile layouts over on woofapps.net, and it turned out to be a combo of theme settings and missing mobile styles from the template.
Let me know if you want help tracking down the exact CSS — happy to take a look!