BaseglobalKb: Agregar nuevos servicios

Para agregar  bloques con links en la página de inicio de http://baseglobalkb.azurewebsites.net/ (theme QualityOrange)

ServiciosQualityOrange

Se deben modificar los siguientes archivos:

theme_setup_data.php
index-service.php

En theme_setup_data.php agregar:

‘service_seven_title’ => ‘Nombre a mostrar en la página’,
‘service_seven_icon’ => ‘fa fa-shield’ //ícono a mostrar
‘service_seven_text’ => ‘Subtítulo a mostrar’

En index_service.php agregar:

<div class=”col-md-3 col-sm-6 qua-service-area”>
<?php if($current_options[‘service_seven_icon’]) { ?>
<div class=”hexagon-box”>
<a href=”http://baseglobalkb.azurewebsites.net/?page_id= 2851“><i class=”<?php echo $current_options[‘service_seven_icon’]; ?>”></i></a>
</div>
<?php } ?>
<?php if($current_options[‘service_seven_title’]) { ?>
<h2><?php echo $current_options[‘service_seven_title’]; ?></h2>
<?php } ?>
<?php if($current_options[‘service_seven_text’]) { ?>
<p><?php echo $current_options[‘service_seven_text’];?></p>
<?php } ?>
</div>

Nota: cambiar de número (texto rojo) para cada nuevo servicio.