usminteractive

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • usminteractive
    Participant

    Thanks! Here is what I have tried…I have tried extending the class so in functions.php it looks like this…

    class customFilterBar extends Tribe__Events__Filterbar__Filter {
    
    	public function addCustomHooks() {
    		if ( $this->is_filtering() ) {
    			add_action( 'tribe_events_custom_filter_view_do_display_filters', array( $this, 'displayCustomFilter' ), $this->priority );
    			add_action( 'tribe_events_pre_get_posts', array( $this, 'addQueryArgs' ), 10 );
    		}
    		add_filter( 'tribe_events_all_filters_array', array( $this, 'allFiltersArray' ), 10, 1 );
    	}
    
    	public function displayCustomFilter() {
    			$values = apply_filters( 'tribe_events_filter_values', $this->get_values(), $this->slug );
    
    			if ( ! empty( $values ) ) {
    				?>
    				<div class="tribe_events_filter_item" id="tribe_events_filter_item_<?php echo esc_attr( $this->slug ); ?>">
    				<?php
    				switch ( $this->type ) {
    					case 'select':
    						// It's possible for multiple values to be specified in array form, but we can
    						// only use one of those for the select filter
    						$current_value = is_array( $this->currentValue ) ? current( $this->currentValue ) : $this->currentValue;
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-select">
    							<select name="<?php echo esc_attr( 'tribe_' . $this->slug ); ?>">
    								<option value="" <?php selected( trim( $current_value ), '' ) ?>><?php esc_html_e( 'Select', 'tribe-events-filter-view' ); ?></option>
    								<?php foreach ( $values as $option ):
    
    								$data = array();
    								if ( isset( $option['data'] ) && is_array( $option['data'] ) ) {
    									foreach ( $option['data'] as $attr => $value ) {
    										$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    									}
    								}
    								$data = join( ' ', $data );
    
    								// output option to screen
    								printf( '<option value="%s" %s %s >%s</option>',
    									esc_attr( $option['value'] ),
    									selected( trim( $current_value ), trim( $option['value'] ), false ),
    									$data,
    									esc_html( stripslashes( $option['name'] ) )
    									);
    
    								?>
    								<?php
    							endforeach ?>
    							</select>
    						</div>
    		                <?php
    					break;
    					//Option for Chosen Dropdown
    					case 'autocomplete':
    						if ( ! isset( $this->currentValue ) )
    							$this->currentValue = array();
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-autocomplete">
    							<select
    								data-no-results-text="<?php esc_attr_e(  'No items match', 'tribe-events-filter-view' ); ?>"
    								data-placeholder="<?php esc_attr_e(  'Select an Item', 'tribe-events-filter-view' ); ?>" multiple class="chosen-dropdown"
    								name="<?php echo esc_attr( 'tribe_' . $this->slug . '[]' ); ?>">
    								<?php foreach ( $values as $option ):
    
    								$data = array();
    								if ( isset( $option['data'] ) ) {
    									foreach ( $option['data'] as $attr => $value ) {
    										$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    									}
    								}
    								$data = join( ' ', $data );
    
    								// output option to screen
    								printf( '<option value="%s" %s %s >%s</option>',
    									esc_attr( $option['value'] ),
    									selected( $this->is_selected( trim( $option['value'] ) ) ),
    									$data,
    									esc_html( stripslashes( $option['name'] ) )
    								);
    
    								?>
    								<?php
    							endforeach ?>
    							</select>
    						</div>
    		                <?php
    					break;
    					case 'checkbox':
    						if ( ! isset( $this->currentValue ) ) {
    							$this->currentValue = array();
    						}
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-checkboxes">
    						<ul>
    						<?php foreach ( $values as $option ):
    
    							$data = array();
    							if ( isset( $option['data'] ) && is_array( $option['data'] ) ) {
    								foreach ( $option['data'] as $attr => $value ) {
    									$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    								}
    							}
    							$data = join( ' ', $data );
    
    							// Support CSS classes per list item
    							$class = '';
    
    							if ( isset( $option['class'] ) && ! empty( $option['class'] ) ) {
    								$class = ' class="' . esc_attr( $option['class'] ) . '"';
    							}
    
    							// output option to screen
    							printf( '<li%s><label><input type="checkbox" value="%s" %s name="%s" %s /><span title="%s">%s</span></label></li>',
    								$class,
    								esc_attr( $option['value'] ),
    								checked( $this->is_selected( trim( $option['value'] ) ), true, false ),
    								esc_attr( 'tribe_' . $this->slug . '[]' ),
    								$data,
    								esc_html( stripslashes( $option['name'] ) ),
    								esc_html( stripslashes( $option['name'] ) )
    								);
    							?>
    						<?php endforeach; ?>
    						</ul>
    						</div>
    						<?php
    					break;
    					case 'radio':
    
    						if ( ! isset( $this->currentValue ) ) {
    							$current_value = '';
    						} else {
    							$current_value = is_array( $this->currentValue ) ? current( $this->currentValue ) : $this->currentValue;
    						}
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-radio">
    						<ul>
    						<?php foreach ( $values as $option ):
    
    							$data = array();
    							if ( isset( $option['data'] ) && is_array( $option['data'] ) ) {
    								foreach ( $option['data'] as $attr => $value ) {
    									$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    								}
    							}
    							$data = join( ' ', $data );
    
    							// Support CSS classes per list item
    							$class = '';
    
    							if ( isset( $option['class'] ) && ! empty( $option['class'] ) ) {
    								$class = ' class="' . esc_attr( $option['class'] ) . '"';
    							}
    
    							// output option to screen
    							printf( '<li%s><label><input type="radio" value="%s" %s name="%s" %s /><span title="%s">%s</span></label></li>',
    								$class,
    								esc_attr( $option['value'] ),
    								checked( trim( $option['value'] ), $current_value, false ),
    								esc_attr( 'tribe_' . $this->slug ),
    								$data,
    								esc_html( stripslashes( $option['name'] ) ),
    								esc_html( stripslashes( $option['name'] ) )
    								);
    							?>
    						<?php endforeach; ?>
    						</ul>
    						</div>
    						<?php
    					break;
    					case 'range':
    						if ( ! empty( $this->currentValue ) && is_array( $this->currentValue ) ) {
    							$current = reset( $this->currentValue );
    						} else {
    							$current = $values;
    						}
    						$min_value = preg_replace( '/[^.0-9]/', '', floor( $values['min'] ) );
    						$max_value = preg_replace( '/[^.0-9]/', '', floor( $values['max'] ) );
    
    						if ( $current['min'] != $min_value || $current['max'] != $max_value ) {
    							$set_value = $current['min'] . '-' . $current['max'];
    						} else {
    							$set_value = '';
    						}
    						// Get our currency symbol
    						$currency_symbol = tribe_get_option( 'defaultCurrencySymbol' );
    						?>
    							<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    							<div class="tribe-events-filter-group tribe-events-filter-range">
    								<span id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug ); ?>_display" class="tribe_events_slider_val"></span>
    								<input type="hidden" id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug ); ?>" name="<?php echo esc_attr( 'tribe_' . $this->slug ); ?>" value="<?php echo esc_attr( $set_value ); ?>"  />
    							<div id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug . '_slider' ); ?>"></div>
    							</div>
    							<script>
    								<?php
    								//Check to see if currency position setting is in front of or behind the value
    								$reverse_position = tribe_get_option( 'reverseCurrencyPosition', false );
    								?>
    								jQuery(document).ready(function($) {
    									$( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider({
    										range: true,
    										min: <?php echo $min_value; ?>,
    										max: <?php echo $max_value; ?>,
    										values: [ <?php echo preg_replace( '/[^.0-9]/', '', $current['min'] ); ?>, <?php echo preg_replace( '/[^.0-9]/', '', $current['max'] ); ?> ],
    										slide: function( event, ui ) {
    											<?php
    												if ( $reverse_position ) {
    											?>
    											$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( ui.values[ 0 ] + "<?php echo $currency_symbol; ?>" + "-" + ui.values[ 1 ] + "<?php echo $currency_symbol; ?>" );
    											<?php } else { ?>
    											$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( "<?php echo $currency_symbol; ?>" + ui.values[ 0 ] + "-<?php echo $currency_symbol; ?>" + ui.values[ 1 ] );
    											<?php } ?>
    											if( ui.values[ 0 ] === <?php echo $min_value; ?> && <?php echo $max_value; ?> === ui.values[ 1 ] ) {
    												$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>" ).val('');
    											} else {
    												$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>" ).val( ui.values[ 0 ] + "-" + ui.values[ 1 ] );
    											}
    										}
    									});
    								<?php if ( $reverse_position ) { ?>
    									$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 0 ) + "<?php echo $currency_symbol; ?>" + "-" + $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 1 ) + "<?php echo $currency_symbol; ?>" );
    								<?php } else { ?>
    									$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( "<?php echo $currency_symbol; ?>" + $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 0 ) + "-<?php echo $currency_symbol; ?>" + $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 1 ) );
    								<?php } ?>
    								});
    							</script>
    						<?php
    					break;
    					case 'multi-select':
    						if ( ! isset( $this->currentValue ) ) {
    							$this->currentValue = array();
    						}
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-multi-select">
    						<select multiple="true" id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug ); ?>" name="<?php echo esc_attr( 'tribe_' . $this->slug ); ?>[]">
    							<?php foreach ( $values as $option ):
    
    							$data = array();
    							if ( isset( $option['data'] ) ) {
    								foreach ( $option['data'] as $attr => $value ) {
    									$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    								}
    							}
    							$data = join( ' ', $data );
    
    							// output option to screen
    							printf( '<option value="%s" %s %s >%s</option>',
    								esc_attr( $option['value'] ),
    								selected( $this->currentValue, trim( $option['value'] ) ),
    								$data,
    								esc_html( stripslashes( $option['name'] ) )
    							);
    							?>
    							<?php
    						endforeach ?>
    						</select>
    						</div>
    						<?php
    					break;
    				}
    				?>
    				</div>
    				<?php
    			}
    		}
    
    }

    In this I extended the main class and then changed the name of the action that is called in filter-view-horizontal.php so the section of this file that spits out the filter looks like this….

    <form id="tribe_events_filters_form" method="post" action="">
    
    			<?php do_action( 'tribe_events_custom_filter_view_do_display_filters' ); ?>
    
    			<input type="submit" value="<?php esc_attr_e( 'Submit', 'tribe-events-filter-view' ) ?>" />
    
    		</form>

    The issue with this is it is not overriding the class in Filter.php

    I have also tried removing the action in addHooks() and adding it back in like this in functions.php

    class customTribeFilter extends Tribe__Events__Filterbar__Filter {
    
    public function customActions() {
    
    	remove_action( 'tribe_events_filter_view_do_display_filters', array( 'Tribe__Events__Filterbar__Filter', 'displayFilter' ), 10 );
    	add_action( 'tribe_events_filter_view_do_display_filters', 'customDisplayFilter', 10 );
    
    }
    
    public function customDisplayFilter() {
    			$values = apply_filters( 'tribe_events_filter_values', $this->get_values(), $this->slug );
    
    			if ( ! empty( $values ) ) {
    				?>
    				<div class="tribe_events_filter_item" id="tribe_events_filter_item_<?php echo esc_attr( $this->slug ); ?>">
    				<?php
    				switch ( $this->type ) {
    					case 'select':
    						// It's possible for multiple values to be specified in array form, but we can
    						// only use one of those for the select filter
    						$current_value = is_array( $this->currentValue ) ? current( $this->currentValue ) : $this->currentValue;
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-select">
    							<select name="<?php echo esc_attr( 'tribe_' . $this->slug ); ?>">
    								<option value="" <?php selected( trim( $current_value ), '' ) ?>><?php esc_html_e( 'Select', 'tribe-events-filter-view' ); ?></option>
    								<?php foreach ( $values as $option ):
    
    								$data = array();
    								if ( isset( $option['data'] ) && is_array( $option['data'] ) ) {
    									foreach ( $option['data'] as $attr => $value ) {
    										$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    									}
    								}
    								$data = join( ' ', $data );
    
    								// output option to screen
    								printf( '<option value="%s" %s %s >%s</option>',
    									esc_attr( $option['value'] ),
    									selected( trim( $current_value ), trim( $option['value'] ), false ),
    									$data,
    									esc_html( stripslashes( $option['name'] ) )
    									);
    
    								?>
    								<?php
    							endforeach ?>
    							</select>
    						</div>
    		                <?php
    					break;
    					//Option for Chosen Dropdown
    					case 'autocomplete':
    						if ( ! isset( $this->currentValue ) )
    							$this->currentValue = array();
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-autocomplete">
    							<select
    								data-no-results-text="<?php esc_attr_e(  'No items match', 'tribe-events-filter-view' ); ?>"
    								data-placeholder="<?php esc_attr_e(  'Select an Item', 'tribe-events-filter-view' ); ?>" multiple class="chosen-dropdown"
    								name="<?php echo esc_attr( 'tribe_' . $this->slug . '[]' ); ?>">
    								<?php foreach ( $values as $option ):
    
    								$data = array();
    								if ( isset( $option['data'] ) ) {
    									foreach ( $option['data'] as $attr => $value ) {
    										$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    									}
    								}
    								$data = join( ' ', $data );
    
    								// output option to screen
    								printf( '<option value="%s" %s %s >%s</option>',
    									esc_attr( $option['value'] ),
    									selected( $this->is_selected( trim( $option['value'] ) ) ),
    									$data,
    									esc_html( stripslashes( $option['name'] ) )
    								);
    
    								?>
    								<?php
    							endforeach ?>
    							</select>
    						</div>
    		                <?php
    					break;
    					case 'checkbox':
    						if ( ! isset( $this->currentValue ) ) {
    							$this->currentValue = array();
    						}
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-checkboxes">
    						<ul>
    						<?php foreach ( $values as $option ):
    
    							$data = array();
    							if ( isset( $option['data'] ) && is_array( $option['data'] ) ) {
    								foreach ( $option['data'] as $attr => $value ) {
    									$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    								}
    							}
    							$data = join( ' ', $data );
    
    							// Support CSS classes per list item
    							$class = '';
    
    							if ( isset( $option['class'] ) && ! empty( $option['class'] ) ) {
    								$class = ' class="' . esc_attr( $option['class'] ) . '"';
    							}
    
    							// output option to screen
    							printf( '<li%s><label><input type="checkbox" value="%s" %s name="%s" %s /><span title="%s">%s</span></label></li>',
    								$class,
    								esc_attr( $option['value'] ),
    								checked( $this->is_selected( trim( $option['value'] ) ), true, false ),
    								esc_attr( 'tribe_' . $this->slug . '[]' ),
    								$data,
    								esc_html( stripslashes( $option['name'] ) ),
    								esc_html( stripslashes( $option['name'] ) )
    								);
    							?>
    						<?php endforeach; ?>
    						</ul>
    						</div>
    						<?php
    					break;
    					case 'radio':
    
    						if ( ! isset( $this->currentValue ) ) {
    							$current_value = '';
    						} else {
    							$current_value = is_array( $this->currentValue ) ? current( $this->currentValue ) : $this->currentValue;
    						}
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-radio">
    						<ul>
    						<?php foreach ( $values as $option ):
    
    							$data = array();
    							if ( isset( $option['data'] ) && is_array( $option['data'] ) ) {
    								foreach ( $option['data'] as $attr => $value ) {
    									$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    								}
    							}
    							$data = join( ' ', $data );
    
    							// Support CSS classes per list item
    							$class = '';
    
    							if ( isset( $option['class'] ) && ! empty( $option['class'] ) ) {
    								$class = ' class="' . esc_attr( $option['class'] ) . '"';
    							}
    
    							// output option to screen
    							printf( '<li%s><label><input type="radio" value="%s" %s name="%s" %s /><span title="%s">%s</span></label></li>',
    								$class,
    								esc_attr( $option['value'] ),
    								checked( trim( $option['value'] ), $current_value, false ),
    								esc_attr( 'tribe_' . $this->slug ),
    								$data,
    								esc_html( stripslashes( $option['name'] ) ),
    								esc_html( stripslashes( $option['name'] ) )
    								);
    							?>
    						<?php endforeach; ?>
    						</ul>
    						</div>
    						<?php
    					break;
    					case 'range':
    						if ( ! empty( $this->currentValue ) && is_array( $this->currentValue ) ) {
    							$current = reset( $this->currentValue );
    						} else {
    							$current = $values;
    						}
    						$min_value = preg_replace( '/[^.0-9]/', '', floor( $values['min'] ) );
    						$max_value = preg_replace( '/[^.0-9]/', '', floor( $values['max'] ) );
    
    						if ( $current['min'] != $min_value || $current['max'] != $max_value ) {
    							$set_value = $current['min'] . '-' . $current['max'];
    						} else {
    							$set_value = '';
    						}
    						// Get our currency symbol
    						$currency_symbol = tribe_get_option( 'defaultCurrencySymbol' );
    						?>
    							<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    							<div class="tribe-events-filter-group tribe-events-filter-range">
    								<span id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug ); ?>_display" class="tribe_events_slider_val"></span>
    								<input type="hidden" id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug ); ?>" name="<?php echo esc_attr( 'tribe_' . $this->slug ); ?>" value="<?php echo esc_attr( $set_value ); ?>"  />
    							<div id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug . '_slider' ); ?>"></div>
    							</div>
    							<script>
    								<?php
    								//Check to see if currency position setting is in front of or behind the value
    								$reverse_position = tribe_get_option( 'reverseCurrencyPosition', false );
    								?>
    								jQuery(document).ready(function($) {
    									$( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider({
    										range: true,
    										min: <?php echo $min_value; ?>,
    										max: <?php echo $max_value; ?>,
    										values: [ <?php echo preg_replace( '/[^.0-9]/', '', $current['min'] ); ?>, <?php echo preg_replace( '/[^.0-9]/', '', $current['max'] ); ?> ],
    										slide: function( event, ui ) {
    											<?php
    												if ( $reverse_position ) {
    											?>
    											$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( ui.values[ 0 ] + "<?php echo $currency_symbol; ?>" + "-" + ui.values[ 1 ] + "<?php echo $currency_symbol; ?>" );
    											<?php } else { ?>
    											$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( "<?php echo $currency_symbol; ?>" + ui.values[ 0 ] + "-<?php echo $currency_symbol; ?>" + ui.values[ 1 ] );
    											<?php } ?>
    											if( ui.values[ 0 ] === <?php echo $min_value; ?> && <?php echo $max_value; ?> === ui.values[ 1 ] ) {
    												$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>" ).val('');
    											} else {
    												$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>" ).val( ui.values[ 0 ] + "-" + ui.values[ 1 ] );
    											}
    										}
    									});
    								<?php if ( $reverse_position ) { ?>
    									$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 0 ) + "<?php echo $currency_symbol; ?>" + "-" + $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 1 ) + "<?php echo $currency_symbol; ?>" );
    								<?php } else { ?>
    									$( "#<?php echo 'tribe_events_filter_' . $this->slug; ?>_display" ).text( "<?php echo $currency_symbol; ?>" + $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 0 ) + "-<?php echo $currency_symbol; ?>" + $( "#<?php echo 'tribe_events_filter_' . $this->slug . '_slider'; ?>" ).slider( "values", 1 ) );
    								<?php } ?>
    								});
    							</script>
    						<?php
    					break;
    					case 'multi-select':
    						if ( ! isset( $this->currentValue ) ) {
    							$this->currentValue = array();
    						}
    						?>
    						<h3 class="tribe-events-filters-group-heading"><span></span><?php echo stripslashes( $this->title ); ?></h3>
    						<div class="tribe-events-filter-group tribe-events-filter-multi-select">
    						<select multiple="true" id="<?php echo esc_attr( 'tribe_events_filter_' . $this->slug ); ?>" name="<?php echo esc_attr( 'tribe_' . $this->slug ); ?>[]">
    							<?php foreach ( $values as $option ):
    
    							$data = array();
    							if ( isset( $option['data'] ) ) {
    								foreach ( $option['data'] as $attr => $value ) {
    									$data[] = 'data-' . esc_attr( $attr ) . '="' . trim( $value ) . '"';
    								}
    							}
    							$data = join( ' ', $data );
    
    							// output option to screen
    							printf( '<option value="%s" %s %s >%s</option>',
    								esc_attr( $option['value'] ),
    								selected( $this->currentValue, trim( $option['value'] ) ),
    								$data,
    								esc_html( stripslashes( $option['name'] ) )
    							);
    							?>
    							<?php
    						endforeach ?>
    						</select>
    						</div>
    						<?php
    					break;
    				}
    				?>
    				</div>
    				<?php
    			}
    		}
    
    }

    Hope that is helpful! Any guidance would be much appreciated.

    Thanks,
    Pete

    in reply to: iCal Feed Not working #1100739
    usminteractive
    Participant

    Hi Geoff,

    Great! Thanks for the update on this. Looking forward to the updated iCal importer.

    Cheers,
    Pete

    in reply to: Prioritizing Search Results #1047540
    usminteractive
    Participant

    Leah,

    Thanks so much for your response! It is very helpful, I’m sorry I didn’t see this sooner! But our team will definitely be able to incorporate your guidance. I appreciate your time and wish you a happy holidays.

    Best
    Libby

    in reply to: Event Prioritization #1047524
    usminteractive
    Participant

    Geoff,

    Thank you so much for your response! I am so sorry that I did not see Leah’s response from December 9. I appreciate you pointing me in the right direction!

    Cheers and happy holidays!

    Libby

Viewing 4 posts - 1 through 4 (of 4 total)