Hi all,
I'm getting pretty comfortable with shaping up my Thematic child theme (at www.talino.org). However I'm having some difficulty with the Add To Any plugin (http://wordpress.org/extend/plugins/add-to-any/). I would like to add it in the .entry-utility div, but I can't figure out how to accomplish that.
The plugin's admin page says the code to include is the following:
echo '<ul class="addtoany_list">';
if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') ) ADDTOANY_SHARE_SAVE_ICONS( array("html_wrap_open" => "
<li>", "html_wrap_close" => "</li>
") );
if( function_exists('ADDTOANY_SHARE_SAVE_BUTTON') ) ADDTOANY_SHARE_SAVE_BUTTON( array("html_wrap_open" => "
<li>", "html_wrap_close" => "</li>
") );
echo '';
I've tried filtering different steps in the Thematic code, such as thematic_postfooter, thematic_postfooter_postconnect & thematic_postfooter_postcategory, but no matter what I do the plugin outputs its own HTML whenever my filter is called, instead of where Thematic would place it, i.e. somewhere here:
$postfooter = '<div class="entry-utility">' . $postcategory . $posttags . $postconnect;
Is there any way to do this cleanly? I've been doing a lot of customizations in my functions.php and I would hate touching the framework files.
Thanks for your help.