lfbp

Forum Replies Created

Viewing 1 post (of 1 total)

lfbp
Member

It seems silly not to use the bootstrap classes. I’ve used the download_link filter to achieve what I need by adding this simple function.

function change_button_class( $text ) {
return str_replace(‘[btnclass]’, ‘btn btn-primary btn-large’, $text);
}
add_filter( ‘download_link’, ‘change_button_class’ );

Viewing 1 post (of 1 total)