File Editor
Directories:
.. (Back)
core
css
fonts
images
js
Files:
404.php
archive.php
author-intro.php
author.php
breadcrums.php
category.php
comments.php
customizer.php
footer-callout.php
footer.php
front-page.php
fullwidth.php
functions.php
google-font.php
header.php
home-blog.php
home-portfolio.php
home-services.php
home-slideshow.php
index.php
more.php
nocontent.php
options-reset.php
page-leftsb.php
page.php
post-content.php
post-page.php
readme.txt
rtl.css
search.php
searchform.php
sidebar.php
single.php
style.css
tag.php
woocommerce.php
Create New File
Create
Edit File: home-services.php
<!-- service section --> <?php $wl_theme_options = weblizar_get_options(); ?> <div class="enigma_service"> <?php if($wl_theme_options['home_service_heading'] !='') { ?> <div class="container"> <div class="row"> <div class="col-sm-12"> <div class="enigma_heading_title"> <h3><?php echo esc_attr($wl_theme_options['home_service_heading']); ?></h3> </div> </div> </div> </div> <?php } ?> <div class="container"> <div class="row isotope" id="isotope-service-container"> <?php for($i=1; $i<4; $i++ ) { ?> <div class=" col-md-4 service"> <div class="enigma_service_area appear-animation bounceIn appear-animation-visible"> <?php if($wl_theme_options['service_'.$i.'_icons'] !='') { ?><div class="enigma_service_iocn pull-left"><i class="<?php echo esc_attr($wl_theme_options['service_'.$i.'_icons']); ?>"></i></div><?php } ?> <div class="enigma_service_detail media-body"> <?php if($wl_theme_options['service_'.$i.'_title'] !='') { ?><h3><a href="<?php echo esc_url($wl_theme_options['service_'.$i.'_link']); ?>"><?php echo esc_attr($wl_theme_options['service_'.$i.'_title']); ?></a></h3><?php } ?> <?php if($wl_theme_options['service_'.$i.'_text'] !='') { ?><p><?php echo apply_filters('the_content', $wl_theme_options['service_'.$i.'_text'], true); ?></p><?php } ?> </div> </div> </div> <?php } ?> </div> </div> </div> <!-- /Service section -->
Save Changes
Rename File
Rename