You can modify the page filter thusly:
.page[data-name!="1"]
"!=" means "not equal to"-- so it will exclude all pages except the first one.
Here's the entire snippet from the other post with the adjustment:
$(function(){ $('#container').swipe({excludedElements:$.fn.swipe.defaults.excludedElements+=',.page[data-name!="1"]'}); });