Info Section Icons not showing

Hi there!

On my website, the Info Section Icons aren’t showing anymore. I think this happened after the last theme update, but I’m not sure.
When I go to Customize → Front Page Sections → Slider Section Info, the icons are selected.

My site is: www.jacksonrecords.nl

Hope you can help me.

Hello there,

I hope you are doing well today.

Please try using the following plugin to clear your WordPress cache and reload the page:

Best Regards,
Support

Ok, I tried that, but with no result.

I see they ain’t working in your own demo either.
https://colorlib.com/tyche/

Hi,

I’m facing the same regression with the last update… + my slider buttons have disappeared!

Hello there,

Thanks for bring this to my attention.

I will have this issue brought up with the developer so that it can be addressed and an update can be issued out.

Best Regards,
Support

Bump. Any news?

I fixed this issue by editing the main-slider.php (\tyche\template-parts\main-slider.php):

change this block of code:

<ul class="main-slider-info">
	<li class="col-sm-4 col-xs-12">
		<div class="main-slider-info-cell">
			<div class="cell-icon">
				<?php
				$icon = get_theme_mod( 'info_section_one_icon', 'dashicons dashicons-store' );
				?>
				<i class="<?php echo esc_attr( $icon ); ?>"></i>
			</div>
			<div class="cell-content">
				<span class="cell-caption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_one_text', 'FREE SHIPPING' ) ); ?>
				</span> <span class="cell-subcaption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_one_subtext', 'On all orders over 90$' ) ); ?>
				</span>
			</div>
		</div>
	</li>
	<li class="col-sm-4 col-xs-12">
		<div class="main-slider-info-cell">
			<div class="cell-icon">
				<?php
				$icon = get_theme_mod( 'info_section_two_icon', 'dashicons dashicons-phone' );
				?>
				<i class="<?php echo esc_attr( $icon ); ?>"></i>
			</div>
			<div class="cell-content">
				<span class="cell-caption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_two_text', 'CALL US ANYTIME' ) ); ?>
				</span> <span class="cell-subcaption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_two_subtext', '+04786445953' ) ); ?>
				</span>
			</div>

		</div>
	</li>
	<li class="col-sm-4 col-xs-12">
		<div class="main-slider-info-cell">
			<div class="cell-icon">
				<?php
				$icon = get_theme_mod( 'info_section_three_icon', 'dashicons dashicons-location-alt' );
				?>
				<i class="<?php echo esc_attr( $icon ); ?>"></i>
			</div>
			<div class="cell-content">
			<span class="cell-caption">
				<?php echo wp_kses_post( get_theme_mod( 'info_section_three_text', 'OUR LOCATION' ) ); ?>
			</span> <span class="cell-subcaption">
				<?php echo wp_kses_post( get_theme_mod( 'info_section_three_subtext', '557-6308 Lacinia Road. NYC' ) ); ?>
			</span>
			</div>
		</div>
	</li>
</ul>

By this:

<ul class="main-slider-info">
	<li class="col-sm-4 col-xs-12">
		<div class="main-slider-info-cell">
			<div class="cell-icon">
				<?php
				$icon = get_theme_mod( 'info_section_one_icon', 'dashicons dashicons-store' );
				if ( 'dashicons dashicons-store' !== $icon ) {
					$icon = 'dashicons dashicons-' . get_theme_mod( 'info_section_one_icon' );
				}
				?>
				<i class="<?php echo esc_attr( $icon ); ?>"></i>
			</div>
			<div class="cell-content">
				<span class="cell-caption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_one_text', 'FREE SHIPPING' ) ); ?>
				</span> <span class="cell-subcaption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_one_subtext', 'On all orders over 90$' ) ); ?>
				</span>
			</div>
		</div>
	</li>
	<li class="col-sm-4 col-xs-12">
		<div class="main-slider-info-cell">
			<div class="cell-icon">
				<?php
				$icon = get_theme_mod( 'info_section_two_icon', 'dashicons dashicons-phone' );
				if ( 'dashicons dashicons-phone' !== $icon ) {
					$icon = 'dashicons dashicons-' . get_theme_mod( 'info_section_two_icon' );
				}
				?>
				<i class="<?php echo esc_attr( $icon ); ?>"></i>
			</div>
			<div class="cell-content">
				<span class="cell-caption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_two_text', 'CALL US ANYTIME' ) ); ?>
				</span> <span class="cell-subcaption">
					<?php echo wp_kses_post( get_theme_mod( 'info_section_two_subtext', '+04786445953' ) ); ?>
				</span>
			</div>

		</div>
	</li>
	<li class="col-sm-4 col-xs-12">
		<div class="main-slider-info-cell">
			<div class="cell-icon">
				<?php
				$icon = get_theme_mod( 'info_section_three_icon', 'dashicons dashicons-location-alt' );
				if ( 'dashicons dashicons-location-alt' !== $icon ) {
					$icon = 'dashicons dashicons-' . get_theme_mod( 'info_section_three_icon' );
				}
				?>
				<i class="<?php echo esc_attr( $icon ); ?>"></i>
			</div>
			<div class="cell-content">
			<span class="cell-caption">
				<?php echo wp_kses_post( get_theme_mod( 'info_section_three_text', 'OUR LOCATION' ) ); ?>
			</span> <span class="cell-subcaption">
				<?php echo wp_kses_post( get_theme_mod( 'info_section_three_subtext', '557-6308 Lacinia Road. NYC' ) ); ?>
			</span>
			</div>
		</div>
	</li>
</ul>

late slow respon my forum :slight_smile:

Works!! Thank!!

Works for me too! Thank you very, very, very much!!!