I’ve been experimenting with modifying a copy of the Joomla “profile” plugin (/plugins/users/profile) and adding custom profile fields to use in other Components. Retrieving those stored profile values required some research, but it turns out it’s pretty straight-forward: $User = JFactory::getUser(); $Profile = JUserHelper::getProfile(User->id); From there, it may be easiest to just use the print_r() […]
Archives: November, 2013
WordPress Custom Post Types and 404 Error
Nov 02, 2013
If you’re working on a custom post type in WordPress and make a change to the post type or category slug (or add a new one), and you’re getting 404 errors when visiting the pages at the new address, chances are you just need to refresh the WordPress rewrite rules for permalinks. You can do […]