Dear Jennifer,
You can add the following code to the button OnClick event:
fd.spSaved(function(result) {
var listId = fd.spFormCtx.ListAttributes.Id
result.RedirectUrl = "https://domain.sharepoint.com/sites/sitename/_layouts/15/listform.aspx?PageType=8&ListId=" + listId;
});
fd.save();
This should work, simply replace
https://domain.sharepoint.com/sites/sitename
with the address of your site instead.