Info window isn't shown after adding extra custom fields
-
Hi I followed your tutorial on adding extra metafields: https://wpstorelocator.co/document/add-custom-meta-data-to-store-locations/
2 extrafields has been added :
– tarif (ie price in english)
– nb_simu (ie simulator number)When I click on marker. Info window doesn’t appear appear. Here it is the code I have added in my theme functions.php. Can you please help to find out where is the syntax error ?
/* [Store Locator] Add extra fields */ add_filter( 'wpsl_meta_box_fields', 'custom_meta_box_fields' ); function custom_meta_box_fields( $meta_fields ) { $meta_fields[__( 'Additional Information', 'wpsl' )] = array( 'phone' => array( 'label' => __( 'Tel', 'wpsl' ), 'required' => true // This will place a * after the label ), 'email' => array( 'label' => __( 'Email', 'wpsl' ) ), 'url' => array( 'label' => __( 'Site', 'wpsl' ), 'required' => true // This will place a * after the label ), 'nb_simu' => array( 'label' => __( 'Nb de simulateur', 'wpsl' ), 'required' => true // This will place a * after the label ), 'type_simu' => array( 'label' => __( 'Type de simulateur', 'wpsl' ), 'required' => true // This will place a * after the label ), 'jeu' => array( 'label' => __( 'Jeu', 'wpsl' ), 'required' => true, // This will place a * after the label 'type' => 'dropdown', 'options' => array( 'option1' => 'rFactor', 'option2' => 'Assetto Corsa', 'option3' => 'rFactor2', 'option4' => 'iRacing', 'option5' => 'Nitro Stunt Racing ' ) ), 'tarif' => array( 'label' => __( 'Tarif', 'wpsl' ), 'required' => true // This will place a * after the label ) ); return $meta_fields; } add_filter( 'wpsl_templates', 'custom_templates' ); /* [Store Locator] Store extra fields in JSON */ add_filter( 'wpsl_frontend_meta_fields', 'custom_frontend_meta_fields' ); function custom_frontend_meta_fields( $store_fields ) { $store_fields['wpsl_tarif'] = array( 'name' => 'tarif', 'type' => 'text' ); $store_fields['wpsl_nb_simu'] = array( 'name' => 'nb_simu', 'type' => 'text' ); return $store_fields; } /* [Store Locator] Add extra fields in Info window Template */ add_filter( 'wpsl_info_window_template', 'custom_info_window_template' ); function custom_info_window_template() { global $wpsl; $info_window_template = '<div data-store-id="<%= id %>" class="wpsl-info-window">' . "\r\n"; $info_window_template .= "\t\t" . '<p>' . "\r\n"; $info_window_template .= "\t\t\t" . wpsl_store_header_template() . "\r\n"; // Check which header format we use $info_window_template .= "\t\t\t" . '<span><%= address %></span>' . "\r\n"; $info_window_template .= "\t\t\t" . '<% if ( address2 ) { %>' . "\r\n"; $info_window_template .= "\t\t\t" . '<span><%= address2 %></span>' . "\r\n"; $info_window_template .= "\t\t\t" . '<% } %>' . "\r\n"; $info_window_template .= "\t\t\t" . '<span>' . wpsl_address_format_placeholders() . '</span>' . "\r\n"; // Use the correct address format $info_window_template .= "\t\t" . '</p>' . "\r\n"; $info_window_template .= "\t\t" . '<% if ( phone ) { %>' . "\r\n"; $info_window_template .= "\t\t" . '<span><strong>' . esc_html( $wpsl->i18n->get_translation( 'phone_label', __( 'Phone', 'wpsl' ) ) ) . '</strong>: <%= formatPhoneNumber( phone ) %></span>' . "\r\n"; $info_window_template .= "\t\t" . '<% } %>' . "\r\n"; $info_window_template .= "\t\t" . '<% if ( fax ) { %>' . "\r\n"; $info_window_template .= "\t\t" . '<span><strong>' . esc_html( $wpsl->i18n->get_translation( 'fax_label', __( 'Fax', 'wpsl' ) ) ) . '</strong>: <%= fax %></span>' . "\r\n"; $info_window_template .= "\t\t" . '<% } %>' . "\r\n"; $info_window_template .= "\t\t" . '<% if ( email ) { %>' . "\r\n"; $info_window_template .= "\t\t" . '<span><strong>' . esc_html( $wpsl->i18n->get_translation( 'email_label', __( 'Email', 'wpsl' ) ) ) . '</strong>: <%= email %></span>' . "\r\n"; $info_window_template .= "\t\t" . '<% } %>' . "\r\n"; $info_window_template .= "\t\t" . '<% if ( hours ) { %>' . "\r\n"; $info_window_template .= "\t\t" . '<div class="wpsl-store-hours"><strong>' . esc_html( $wpsl->i18n->get_translation( 'hours_label', __( 'Hours', 'wpsl' ) ) ) . '</strong>' . "\r\n"; $info_window_template .= "\t\t" . '<%= hours %>' . "\r\n"; $info_window_template .= "\t\t" . '</div>' . "\r\n"; $info_window_template .= "\t\t" . '<% } %>' . "\r\n"; $info_window_template .= "\t\t\t" . '<% if ( tarif ) { %>' . "\r\n"; $info_window_template .= "\t\t\t" . '<p><a href="<%= tarif %>">' . __( 'Tarif', 'wpsl' ) . '</a></p>' . "\r\n"; $info_window_template .= "\t\t\t" . '<% } %>' . "\r\n"; $info_window_template .= "\t\t\t" . '<% if ( nb_simu ) { %>' . "\r\n"; $info_window_template .= "\t\t\t" . '<p><a href="<%= nb_simu %>">' . __( 'Nb de simulateur', 'wpsl' ) . '</a></p>' . "\r\n"; $info_window_template .= "\t\t\t" . '<% } %>' . "\r\n"; $info_window_template .= "\t\t" . '<%= createInfoWindowActions( id ) %>' . "\r\n"; $info_window_template .= "\t" . '</div>'; return $info_window_template; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Info window isn't shown after adding extra custom fields’ is closed to new replies.