Last active
September 18, 2018 13:07
-
-
Save paullacey78/37f4307677567e3c9a3739af732dbb74 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.fl-builder-module-template { | |
padding: 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add booking button shortcode | |
function booking_button() { | |
$output = do_shortcode( '[fl_builder_insert_layout slug="book-now-button"]' ); | |
return $output; | |
} | |
add_shortcode( 'book', 'booking_button' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment