Show hours in more info popup if not certain category
-
I want to show the hours in the info window popup if the category is NOT “Coming Soon”. I’ve tried the following code in my functions.php file, but it does not work. Any help?
if ( $wpsl_store_category->name !== 'Coming Soon' ) { $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"; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Show hours in more info popup if not certain category’ is closed to new replies.