Home › Forums › Pro Support › Option to disable permalinks › Reply To: Option to disable permalinks
January 3, 2018 at 12:06 pm
#3203
Keymaster
Thinking about this more, wouldn’t it be easier to uncheck the “Include title” option in the list, then add the title manually without the link?
add_action( 'wpsp_before_header', 'tu_add_linkless_title' );
function tu_add_linkless_title() {
if ( is_page( 'my-list-page' ) ) {
the_title();
}
}
Wouldn’t work with multiple lists on a page, but we should be able to fix that as well once 1.1 is released.