-
AuthorPosts
-
September 22, 2015 at 6:47 pm #507292
Hello!
I would like to add an additional widgetized area (actually 6 areas) to the footer to contain menus and achieve the result you can see at the bottom of the homepage (see website link in private content). The menus would be in 6 footer widgetized areas that sit on top of the existing 4 footer areas containing the logo, social icons and address.
I found some help in the thread below, but the info is old/dated (2010-2011) and the php line references don’t match up with today’s current files.
https://kriesi.at/support/topic/add-widgets-to-the-footer-i-need-help/Can you please help?!
Thank you VERY much!!
-LD3September 22, 2015 at 9:49 pm #507381Hey LD3!
Everything is possible, but that would need a lot of work to be done.
You can contact one of our Customization Contractors, who will help you out with the process.
http://kriesi.at/contact/customizationLet us know if we could do anything else, regarding our theme
Best regards,
BasilisSeptember 23, 2015 at 11:53 pm #508112Thank you Basilis – I understand that there are contractors out there that could do the work – however, since I came across the thread above that seemed to address the issue (https://kriesi.at/support/topic/add-widgets-to-the-footer-i-need-help/), but was dated, I was hoping that you might be able to help as before, but with updated info … ?
Is there anyone else who might chime in … maybe Devin, or Dude?
Thanks very much!!
-LD3September 24, 2015 at 1:11 pm #508383Hi!
Please go to Appearance > Editor and open Footer.php file and find
<footer class='container_wrap socket_color' id='socket' <?php avia_markup_helper(array('context' => 'footer')); ?>>
and right above it, add following code
<div class="container_wrap new-footer"><div class="container"><div class="entry-content-wrapper clearfix"><div class="flex_column av_one_fifth flex_column_div av-zero-column-padding first el_before_av_one_fifth avia-builder-el-first " style="border-radius:0px; "><?php dynamic_sidebar( 'socket-one' ); ?> </div><div class="flex_column av_one_fifth flex_column_div av-zero-column-padding avia-builder-el-2 el_after_av_one_fifth el_before_av_one_fifth " style="border-radius:0px; "><?php dynamic_sidebar( 'socket-two' ); ?> </div><div class="flex_column av_one_fifth flex_column_div av-zero-column-padding avia-builder-el-4 el_after_av_one_fifth el_before_av_one_fifth " style="border-radius:0px; "><?php dynamic_sidebar( 'socket-three' ); ?> </div><div class="flex_column av_one_fifth flex_column_div av-zero-column-padding avia-builder-el-6 el_after_av_one_fifth el_before_av_one_fifth " style="border-radius:0px; "><?php dynamic_sidebar( 'socket-four' ); ?> </div><div class="flex_column av_one_fifth flex_column_div av-zero-column-padding avia-builder-el-8 el_after_av_one_fifth el_before_av_masonry_entries avia-builder-el-last " style="border-radius:0px; "><?php dynamic_sidebar( 'socket-five' ); ?></div></div></div></div>
and then go to Appearance > Widgets and create 5 widget areas name “socket-one”, “socket-two”, “socket-three”, “socket-four” and “socket-five”
Regards,
Yigit -
AuthorPosts
- You must be logged in to reply to this topic.