dipaksaraf 0 Report post Posted May 10, 2011 Hello I am using PlatformPro theme and I can see options in the footer options of the Platfrom Pro setting. In the footer option on the first column there is option to add the log which is working fine. In addition to logo i want to add a logo which will be linking to mailing list. How do i add this in the footer? Another option i want is after the footer menu, a MP3 Player, I am able to add the MP3 player by editing the footer.php file but i guess that is not the cleanest way to do that, so is there any good way to do that may be via hook or custom CSS? Thanks Dipak Share this post Link to post Share on other sites
Kate 3 Report post Posted May 10, 2011 Hi Dipak, Have you checked out the widgets area? Go to Appearance->Widgets and you'll see where you can add widgets, which will take the place of any default content in the footer. Share this post Link to post Share on other sites
dipaksaraf 0 Report post Posted May 10, 2011 Hello kate Thanks for the reply, I have seen the widget option but would prefer to go with the default option as this give me more flexibility for using the content at ease.Can i used some hooks to accomplish the requirement of adding content below the logo? Any other way to add MP3 player below the Footer, without editing the footer.php theme file. Thanks Dipak Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 10, 2011 Yes hooks would be the way to go. Do you have code you would like to use the MP3 player? Share this post Link to post Share on other sites
dipaksaraf 0 Report post Posted May 10, 2011 Hi Adam I will be adding JW Player for WordPress for playing the MP3 files.....I have already added this in footer and it is working but i want the clean solution rather than hard coding it in the theme file. ` <?php echo do_shortcode('[jwplayer config="Custom Player1" playlistid="403"]'); ` How about adding addition content below the logo on column1 of Footer any solution for Share this post Link to post Share on other sites
catrina 103 Report post Posted May 11, 2011 How about adding addition content below the logo on column1 of Footer You can probably use a hook for this, too. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
dipaksaraf 0 Report post Posted May 11, 2011 I know i can use a hook but which one will be appropriate for this one i really don't know, so can you folks help me on the same. Do i need to write this hooks in function.php?? Share this post Link to post Share on other sites
timlinson 3 Report post Posted May 11, 2011 You can go to Template Setup in the platformpro settings. Click on "Advanced Setup" of the drag-and-drop boxes to see a list of hook names related to each element. Yes hooks should go in the platformbase/functions.php file. Some more info here: http://www.pagelines.com/docs/base-child-theme Basically something like this: ` function dipaks_mp3_hook() { echo do_shortcode('[jwplayer config="Custom Player1" playlistid="403"]'); } add_action('HOOK_LOCATION_HERE', 'dipaks_mp3_hook'); ` Share this post Link to post Share on other sites