Comments Randy started the conversationFebruary 7, 2019 at 11:41pmHow can I take out the links in the Services section of the front page? I don't want the icons to be clickable.Thanks! 1,692Andrey repliedFebruary 8, 2019 at 10:28amHello, Dear Randy.Please open in code editor file loop-item2.php which locates \wp-content\themes\dotdigital\framework-customizations\extensions\services\views\Replace all existing code inside with the following: <?php if ( ! defined( 'FW' ) ) { die( 'Forbidden' ); } /** * Single service loop item layout * also using as a default service view in a shortcode */ $ext_services_settings = fw()--->extensions->get( 'services' )->get_settings(); $taxonomy_name = $ext_services_settings['taxonomy_name']; $icon_array = fw_ext_services_get_icon_array(); ?> <div class="service_item vertical-item content-padding text-center overflow-hidden loop-2"> <?php if ( $icon_array['icon_type'] === 'image' ) : ?> <!--?php echo wp_kses_post( $icon_array['icon_html'] ); ?--> <!--?php else: //icon ?--> <div class="teaser_icon highlight size_big border_icon"> <!--?php echo wp_kses_post( $icon_array['icon_html'] ); ?--> </div> <!--?php endif; ?--> <div class="item-content"> <h4 class="entry-title"> <!--?php the_title(); ?--> </h4> <div class="excerpt"> <!--?php the_excerpt(); ?--> </div> </div><!-- eof .item-content --> </div><!-- eof .teaser --> Save changes and check results at front-end.Best Regards!Randy repliedFebruary 9, 2019 at 2:02amThat solution is giving me a syntax error and causing the site to go blank....Randy repliedFebruary 9, 2019 at 9:09pmOkay, took out the commented items and is working perfectly. Thanks! 1,692Andrey repliedFebruary 11, 2019 at 10:10amHello, Dear Randy!Thank you for informing us about positive result.Best Regards! Sign in to reply ...
How can I take out the links in the Services section of the front page? I don't want the icons to be clickable.
Thanks!
Hello, Dear Randy.
Please open in code editor file loop-item2.php which locates \wp-content\themes\dotdigital\framework-customizations\extensions\services\views\
Replace all existing code inside with the following:
Save changes and check results at front-end.
Best Regards!
That solution is giving me a syntax error and causing the site to go blank....
Okay, took out the commented items and is working perfectly. Thanks!
Hello, Dear Randy!
Thank you for informing us about positive result.
Best Regards!