We’re launching a new custom Joomla eCommerce site this week. I’m especially excited about this one, because it’s one of my own ventures, via Mock-Epic LLC. The first retail site is TwistedPens.com, which sells twisted pens (some of which we make here in-house). We hope to have a total of three retail sites online before […]
Category: Uncategorized
New eCommerce Site: TwistedPens.com
Mar 04, 2014
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() […]