This topic has 3 replies, 2 voices, and was last updated 9 years, 1 months ago ago by Eva Kemp
Can you provide me the complet html code from footer 3?
That would be awesome!
Thank you,
Jaap
You let us choose a footer in the theme options, why can we edit that the easy way? Instaed of creating complet new footer?
Can You please provide me the footer html to put into the html block!
Thanks a million,
Jaap
Hello,
The code for footer is:
<div class="row">
<div class="col-md-3">
<div class="about-company">
<a class="pull-left" href="#"><img title="RoyalStore" src="<?php echo get_template_directory_uri(); ?>/images/small-logo.png" alt="..."><br></a>
</div>
<h5 class="media-heading">About <span class="default-colored">RoyalStore</span></h5>
<p>Lorem ipsum dolor sit amet, consect etur adipisic ing elit, sed do eiusmod tempor incididunt ut labore.</p>
<address class="address-company">30 South Avenue San Francisco<br>
<span class="white-text">Phone</span>: +78 123 456 789<br>
<span class="white-text">Email</span>: <a href="mailto:Support@Royal.com">Support@Royal.com</a><br>
<a class="white-text letter-offset" href="#">www.royal.com</a><br>
<?php echo etheme_share_shortcode(array()); ?>
</address>
</div>
<div class="col-md-3">
<div class="widget-container widget_text">
<h3 class="widget-title"><span>Informations</span></h3>
<div class="textwidget">
<ul class="col-ct-6 list-unstyled">
<li><a href="#">London</a></li>
<li><a href="#">Singapore</a></li>
<li><a href="#">Paris</a></li>
<li><a href="#">Moscow</a></li>
<li><a href="#">Berlin</a></li>
<li><a href="#">Milano</a></li>
<li><a href="#">Amsterdam</a></li>
</ul>
<ul class="col-ct-6 list-unstyled">
<li><a href="#">London</a></li>
<li><a href="#">Singapore</a></li>
<li><a href="#">Paris</a></li>
<li><a href="#">Moscow</a></li>
<li><a href="#">Berlin</a></li>
<li><a href="#">Milano</a></li>
<li><a href="#">Amsterdam</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3">
<?php
$args = array(
'widget_id' => 'etheme_widget_flickr',
'before_widget' => '<div class="footer-sidebar-widget etheme_widget_flickr">',
'after_widget' => '</div><!-- //sidebar-widget -->',
'before_title' => '<h4 class="widget-title"><span>',
'after_title' => '</span></h4>'
);
$instance = array(
'screen_name' => '52617155@N08',
'number' => 6,
'show_button' => 1,
'title' => __('Flickr Photos', ETHEME_DOMAIN)
);
$widget = new Etheme_Flickr_Widget();
$widget->widget($args, $instance);
?>
</div>
<div class="col-md-3">
<?php the_widget('Etheme_Recent_Posts_Widget', array('title' => __('Recent posts', ETHEME_DOMAIN), 'number' => 2), array('before_title' => '<h3 class="widget-title">','after_title' => '</h3>', 'number' => 2)); ?>
</div>
</div>
<?php
break;
case 'footer9':
?>
<div class="textwidget">
<p>© Created with <i class="fa fa-heart default-colored"></i> by <a href="#" class="default-link">8Theme</a>. All Rights Reserved</p>
</div>
<?php
break;
case 'footer10':
?>
<img src="<?php echo get_template_directory_uri(); ?>/images/assets/payments.png">
<?php
break;
Also you can find it in wp-content/themes/royal/framework/theme.php file (the section “! Footer Demo Widgets”).
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up