#1
Posted 17 December 2011 - 08:31 PM
#2
Posted 17 December 2011 - 08:39 PM
#3
Posted 17 December 2011 - 09:10 PM
#4
Posted 18 December 2011 - 12:25 PM
#5
Posted 18 December 2011 - 03:47 PM
#6
Posted 18 December 2011 - 05:17 PM
#7
Posted 18 December 2011 - 05:25 PM
#8
Posted 18 December 2011 - 05:40 PM
#9
Posted 18 December 2011 - 08:17 PM
#10
Posted 18 December 2011 - 08:21 PM
#11
Posted 18 December 2011 - 08:28 PM
#12
Posted 18 December 2011 - 08:30 PM
#13
Posted 18 December 2011 - 11:16 PM
#14
Posted 20 December 2011 - 01:41 AM
#15
Posted 20 December 2011 - 07:40 AM
#16
Posted 18 September 2012 - 03:01 AM
#17
Posted 18 September 2012 - 10:26 PM
This is the list of current hooks.
#18
Posted 07 February 2013 - 10:20 AM
Hi to all,
I'd like to customize the icon on brandnav by adding some custom icons (like blog)
I just read this topic but i don't know how hooks work.
Is there a tutorial o someone can explain it to me??
the result should be something like this
thanks
#19
Posted 07 February 2013 - 10:52 AM
Hi,
The link below is code that should be added to your child themes/customise plugin functions.php file.
#20
Posted 07 February 2013 - 02:19 PM
Thanks Danny but there's something wrong on my step!
1- I installed Pagelines Customize plugin from the Store
2- Then I open Appearance > Editor and selected funtions.php file from the list at right.
3- On Appearance>Css I insert this code:
.custom {
background: no-repeat scroll 50% 0 transparent;
}
4- I pasted this code into the file then I saved
// ------- ADDS SOCIAL ICONS TO BRANDNAV ------- //
add_action('pagelines_inside_bottom_brandnav', 'social_icons'); function social_icons(){ ?>
<div class="icons" style="bottom: 12px; right: 1px;">
<a target="_blank" href="#" class="custom"><img src="
</div>
<script type="text/javascript">
jQuery('.icons a').hover(function(){ jQuery(this).fadeTo('fast', 1); },function(){ jQuery(this).fadeTo('fast', 0.5);});
</script>
<?php }
But It doesn't work :-(












