Articles on this Page
- 01/14/10--10:05:_Comment on RoloPress v.1...
- 01/14/10--10:09:_Comment on RoloPress 1.1...
- 02/03/10--15:56:_Comment on RoloPress 1.1...
- 02/12/10--12:47:_Comment on Twitter Tweets...
- 03/16/10--01:13:_Comment on RoloPress...
- 10/27/10--09:43:_Comment on RoloPress...
- 12/21/10--03:31:_Comment on Automatic...
- 12/21/10--07:21:_Comment on Automatic...
- 04/16/11--04:40:_Comment on Add Files and...
- 05/04/11--23:32:_Comment on Making...
More Channels
- Feb 23: IHE Knowledge Network
- Feb 23: Twitter / Favorites from...
- Nov 24: atomz501
- Feb 22: 肥満人の...
- Nov 27: EiffelArt
- Nov 24: ...
- Nov 29: Ethel. » Uncategorized
- Nov 29: Stiri Scurte - prevenimente
- Feb 22: Yahoo!天気・災害 -...
- Nov 27: Navigating Monogamy in a Sea of...
- Nov 27: benzodiazepine | Keyword Feed
- Nov 27: taking ones own lif | Keyword Feed
- Jan 18: Last 25 matches for busch
- Jan 30: Forex in Romania » Forex...
- Nov 21: AOL News
- Nov 21: 有希のガンプラ量産工...
- Nov 21: 劍心.回憶
- Nov 18: Recent Videos for KickingJON
- Jan 30: Davis Arinaitwe news from ESPN...
- Nov 27: WoW Insider
- Nov 27: Keeping is power!!
- Feb 9: Awaiting the Flood
- Nov 27: A love like that... - Pisces -...
- Feb 21: starry sky
- Nov 27: Italy Vacations Guide
- Nov 27: Comentarios para Ubuntuxeando al...
- Feb 17: Cafe ONE OR EIGHT
- Nov 27: shinbohのダラダラなひと...
- Nov 24: Asti Warmel
- Nov 24: Atelier 2-42
- Jan 12: part 2 we may loose | Keyword Feed
- Nov 21: cinemax - cannes-2008
- Nov 21: n2nation
- Nov 28: Podnikové vzdělávání v...
- Feb 20: Hawaii 発 カサブラン...
- Dec 17: Twitter / Favorites from fchimero
- Feb 22: This is my story.
- Feb 13: Kommentare für Fee Feuer.
- Feb 3: Pro-digital...
- Nov 29: Personajes Predeterminados
- Dec 17: Présentations
- Dec 9: things happen for a reason^^
- Nov 27: Water Flame...
- Nov 27: "Désormais, quand il y a...
- Nov 27: Flying Fantasmagorie
- Nov 27: Raging Rancor Cantina
- Feb 22: YLE Uutiset | Tiede ja tekniikka...
- Feb 9: The Devil is alive I feel him...
- Feb 6: Topsy -...
- Nov 27: Chris
|
|
Are you the publisher? Claim this channel |
|
Channel Description:
Latest Articles in this Channel:
- 01/14/10--10:05: Comment on RoloPress v.1 Beta Released by RoloPress 1.1 - Night Dreaming (by Sudar) (chan 1943263)
- 01/14/10--10:09: Comment on RoloPress 1.1 beta available by RoloPress 1.1 - Night Dreaming (by Sudar) (chan 1943263)
- 02/03/10--15:56: Comment on RoloPress 1.1 beta available by Auf WordPress gebaut: RoloPress für CRM Lösungen – Koffeinbetriebenes.Net (chan 1943263)
- 02/12/10--12:47: Comment on Twitter Tweets for RoloPress by » 10 usages alternatifs de WordPress RU3 :: Tentatives d'intelligence collective :: Luc Legay (chan 1943263)
- 03/16/10--01:13: Comment on RoloPress Version 1.2 Beta ready for download by Display Twitter profile image instead of Gravatar in WordPress comments - Night Dreaming (by Sudar) (chan 1943263)
- 10/27/10--09:43: Comment on RoloPress Importer for Outlook CSV by RoloPress 1.5 Released | RoloPress (chan 1943263)
- 12/21/10--03:31: Comment on Automatic Contact Images by Edgar (chan 1943263)
- 12/21/10--07:21: Comment on Automatic Contact Images by sbruner (chan 1943263)
- 04/16/11--04:40: Comment on Add Files and Images to your Notes by steve (chan 1943263)
- 05/04/11--23:32: Comment on Making RoloPress Private by Bradley Allen (chan 1943263)
[...] updates on this topic.RoloPress 1.1As promised RoloPress, the WordPress based contact Manger was released at the beginning of this [...]
[...] the first maintenance release (version 1.1) has been released with a couple of bug fixes and some enhancements. You can read the full list of changes in the [...]
[...] interessant das an einem komplexeren Beispiel studieren zu können. RoloPress steht aktuell als 1.1 Beta zur Verfügung und das Beta kann man ruhig noch sehr ernst [...]
[...] les sociétés directement en front-office. En option, on peut même charger le plugin « Twitter Tweets for RoloPress » qui permet d’ajouter le fil Twitter du contact [...]
[...] updates on this topic.Display Twitter profile image instead of Gravatar in WordPress commentsIn the recent release of RoloPress I implemented Twitter avatar, which allows you to show the user’s Twitter profile image instead [...]
[...] RoloPress Free Open Source Contact Manager built on the WordPress platform. Skip to content AboutContactContributingAdd-on'sDocumentationInstallationFiltersHomeRoloPress: Coming Soon!ServicesHostingAction Hooks Home > RoloPress 1.5 Released « RoloPress Importer for Outlook CSV [...]
Hi,
Is there a way to pull images from LinkedIn profiles.
hi Edgar-- currently this is not available, but we'll add it to our list.
Easy Comment is a great addition
Thanks for RoloPress and this tip for keeping it private. For increased privacy, I disabled RSS feeds by adding the following code to the active theme's (RoloPress Default) functions.php
// disable RSS feed
function fb_disable_feed() {
wp_die( __('No feed available, please visit the homepage!') );
}
add_action('do_feed', 'fb_disable_feed', 1);
add_action('do_feed_rdf', 'fb_disable_feed', 1);
add_action('do_feed_rss', 'fb_disable_feed', 1);
add_action('do_feed_rss2', 'fb_disable_feed', 1);
add_action('do_feed_atom', 'fb_disable_feed', 1);
// end disable RSS feed