edit framework function in styles.css
-
Topic
-
Hi, I think I am close but am missing something. I wanted to add another social media button (a cart png actually) in the framework file display.php for the function:
function themeblvd_social_media_option( $id, $name, $val ) {
$sources = array(
‘amazon’ => ‘Amazon’,
‘delicious’ => ‘del.icio.us’,
ETC..
‘cart’ => ‘Cart’
)
ETC
}I have been able to do this successfully by editing the framework file, but want this in the child theme so that it stays. Per the docs (and they are great learning tools BTW!) it seemed that I should place this in the styles.css just prior to:
/*——————————————————-*/
/* Run Theme Blvd framework (required)
/*——————————————————-*/require_once ( TEMPLATEPATH . ‘/framework/themeblvd.php’ );
/*——————————————————-*/
/* Start Child Theme
/*——————————————————-*/ETC.
This is not working though, and I wondered if i have this in the wrong place, or that I need to add an action to get this to take.
Any help – greatly appreciated!
- The forum ‘Akita Responsive WordPress Theme’ is closed to new topics and replies.