Tribe__Tickets__Attendee_Registration__Template::set_edit_post_link( string $link )

Hijack the edit post link for our fake page


Parameters

$link

(string) (Required) The edit post link.


Top ↑

Return

(string) The edit post link or blank if on the AR page.


Top ↑

Source

File: src/Tribe/Attendee_Registration/Template.php

	public function set_edit_post_link( $link ) {

		// Bail if we're not on the attendee info page
		if ( ! $this->is_on_ar_page() ) {
			return $link;
		}

		return '';
	}

Top ↑

Changelog

Changelog
Version Description
4.9 Introduced.