Hi,
Which version you are using.
If you are using latest version then follow below instructions:
Please visit this LINK for ssetup the home page.
For home page slider visit this LINK
For “Service” section Go to Dashboard Admin Panel >> Appearance Menu >> Customize >> Kyma Options >> Service Options.
Now her you can change everything for “Service” section like: Title, column layout, services icons, title, description etc.
For “Portfolio” section firstly download the “Photo Video Gallery Master” plugin and activate it.
After it Go to Dashboard Admin Panel >> Photo Video Gallery Master > Add New Gallery >> Add images and apply settings according to your needs.
Now copy the “shortcode” and Go to again customizer >> Kyma Options >> Portfolio Options >> “Put Your Gallery Shortcode here” field.
And paste the shortcode in this field.
Save all the changes.
Let us know for further help.
Note: Please provide website URL for further issue.
Thank You.
Hi,
Did the above solution work for you.
We are marking this ticket as resolved.
Thank You
How can we make the 4th service not display if we only want 3?
Hi,
Create a “Child-Theme” first because its a part of code customization.
Now create a “home-service.php” into your “Child-Theme” directory.
Now copy the below line of code and paste into above created file.
<?php $kyma_theme_options = kyma_theme_options();
if ($kyma_theme_options['home_service_enabled'] == 1){ ?>
<section class="content_section bg_gray">
<div class="container icons_spacer">
<div class="main_title centered upper"><?php if ($kyma_theme_options['home_service_heading'] != ""){ ?>
<h2 id="service_heading"><span class="line"><span
class="dot"></span></span><?php echo esc_attr($kyma_theme_options['home_service_heading']);
} ?></h2>
</div>
<div class="icon_boxes_con style1 clearfix"><?php
$col = 12 / (int)$kyma_theme_options['home_service_column'];
$color = array('', 'color1', 'color2', 'color3');
for ($i = 1; $i <= 3; $i++) {
?>
<div class="service col-md-<?php echo esc_attr($col); ?>">
<div class="service_box">
<span class="icon"><i id="service-icon-<?php echo $i; ?>" class="<?php if ($kyma_theme_options['service_icon_' . $i] != "") { echo esc_attr($kyma_theme_options['service_icon_' . $i] . ' ' . $color[$i - 1]); } ?>"></i></span>
<div class="service_box_con centered">
<?php if ($kyma_theme_options['service_title_' . $i] != "") { ?>
<h3
id="service-title-<?php echo $i; ?>"><?php echo esc_attr($kyma_theme_options['service_title_' . $i]); ?></h3><?php
}
if ($kyma_theme_options['service_text_' . $i] != "") {
?>
<span id="service-desc-<?php echo $i; ?>"
class="desc"><?php echo esc_attr($kyma_theme_options['service_text_' . $i]); ?></span><?php
}
if ($kyma_theme_options['service_link_' . $i] != "") {
?>
<a id="service-link-<?php echo $i; ?>"
href="<?php echo esc_url($kyma_theme_options['service_link_' . $i]); ?>"
class="ser-box-link"><span></span><?php _e('Read More', 'kyma'); ?></a><?php
} ?>
</div>
</div>
</div><?php
}
?>
</div>
</div>
</section>
<?php } ?>
Save the changes.
Thank You