Problem with editing saved rows

I’m attempting to edit a saved row and when I do so this happens:

http://recordit.co/SD5Ki6ATV8

As you can see the menu is the saved row I created. When I attempt to edit the row it opens it in a new page but it doesn’t display it so I can edit it.

Hey Jason,

Do you think you can share the URL of the site in question along with temp admin access so we can check? Feel free to use the private reply option below.

Ben

I think I may know whats going on, the theme we use has a bunch of conditionals around the the_content() im thinking maybe that is whats making this go wonky.

is there a way to specify a page template to use (like naming it fl-builder-template.php) or something to force it to use that file instead when editing one of these rows?

I ended up doing something like this around where the conditionals are for the_content() that is acting weird.

`$url = $_SERVER[“REQUEST_URI”];
$isTemplate = strpos($url, ‘fl-builder-template’);

if ($isTemplate!==false){
the_content();
}else{

all of my conditionals and such.

}

Awesome! And thanks for sharing how you fixed it. :slight_smile:

Enjoy BB!

Ben