- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Deleted Text Showing in Preview
Deleted Text Showing in Preview
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I deleted a bunch of text for a new variation. A couple blocks of that text are still showing up in the preview for that variation.
Sometimes, even though they don't show in the Editor, they are in the HTML. So I delete them. And I preview again. And they're still there. Even though now they are not in the HTML.
The next day I come back and they're back in the HTML, even though they don't show in the Editor.
Anyone have answers?
Re: Deleted Text Showing in Preview
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
It looks like you're replacing the HTML which is not the most efficient way to go about making the edit you mentioned. Try targeting the removal of a specific paragraph to start. For example, let's say you want to get rid of the second paragraph in this particular page, you could write something like this in your variation code: $("p:eq(1)").remove();
You can change the number in the eq brackets to another paragraph accordingly.

