You appear to be a bot. Output may be restricted
Description
Example for [bw_show_googlemap] shortcodeNote: This works on a normal page but not when invoked on the oik Shortcodes thickbox overlay
- probably something to do with the javascript not being processed by the .js
Usage
bw_show_googlemap__example( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_show_googlemap –
Returns
voidSource
File name: oik/shortcodes/oik-googlemap.phpLines:
1 to 11 of 11
function bw_show_googlemap__example( $shortcode = "bw_show_googlemap" ) { bw_invoke_shortcode( $shortcode, null, __( "To display a Google Map for your company location", "oik" ) ); BW_::p( __( "Some of the default values are extracted from oik information:", "oik" ) ); sul(); BW_::lit( __( "company - for the Company name", "oik" ) ); BW_::lit( __( "lat - for the latitude", "oik" ) ); BW_::lit( __( "long - for the longitude", "oik" ) ); BW_::lit( __( "width - map width ( 100% )", "oik" ) ); BW_::lit( __( "height - map height ( 400px - to allow for the info window )", "oik" ) ); eul(); }View on GitHub View on Trac