tiny customization

HomeForumsGeneral Supporttiny customization

This topic has 2 voices, contains 1 reply, and was last updated by  fiscal sanity 495 days ago.

Viewing 2 posts - 1 through 2 (of 2 total)
Author Posts
Author Posts
June 9, 2010 at 5:53 pm #924

robrush

I am trying to figure out how to get the phone number field to show up in the main contacts list. I know that it’s visible when you expand and go into a single contact but if the phone number could be made available on the main page list my life would be complete. Any idea where to start editing for this? I’ve changed around some of the fields (mostly just changed their names) but can’t seem to find any way to isolate a single field for display. I hope this is something i can do easily. I’m pretty crafty but the rolopress code has got me pretty confused. Anyone have any ideas?

September 28, 2010 at 2:52 pm #925

fiscal sanity

Coming in RoloPress v1.5. We just added two hooks:
-rolopress_after_contact_hcard
-rolopress_after_company_hcard

So, you would place this in your child theme functions.php file:

function add_stuff_to_list() {
echo ‘this is the stuff I want to add’;
}
add_action (‘rolopress_after_contact_vcard’, ‘add_stuff_to_list’);
add_action (‘rolopress_after_company_vcard’, ‘add_stuff_to_list’);

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.