---
title: "DIY Layout: Remove the &#8220;Go back&#8221; link"
date: 2026-04-23
author: "GravityKit"
link: "https://www.gravitykit.com/docs/gravityview-pro/diy-layout/diy-layout-remove-the-back-link/"
---

If you want to remove the "Go back" link from the Single Entry layout in the DIY layout, use the following code:

```

add_action( 'gravityview/template/before', function() {
	remove_action( 'gravityview/template/diy/single/before', array( 'GV\Entry_DIY_Template', 'back_link' ) );
}, 1 );
```

```

add_action( 'gravityview/template/before', function() {
	remove_action( 'gravityview/template/diy/single/before', array( 'GV\Entry_DIY_Template', 'back_link' ) );
}, 1 );
```