Custom Fields for Users

Custom Field definition for Users
Custom fields detail in the user edit

Custom Fields for Contacts

Custom fields for Forms

Custom Field definition for Mail form contact
Custom field in the contact form

Custom Fields for Weblinks

Custom Field definition for links

Custom Fields for Content

Custom Field definition for articles
Custom field definition for categories

Good Podcast Content

We will use JoomCast amazing podcast content in this example

How to

  1. Install any template of your liking
  2. Create a URL Custom Field for embedded player
  3. Create a Text Custom Field for Duration

Podcast Custom Fields

We will use 2 fields, one for the podcast url and the other to show episode duration

Result

This is how it looks our site with the custom fields (no player yet)

Template override for URL field

												
													<?php

													defined('_JEXEC') or die;
													
													$value = $field->value;
													
													if ($value == '')
													{
														return;
													}
													
													echo '<iframe src="' . $value . '" height="150px" width="800px" frameborder="0" scrolling="no">';
												
											

We have the player at last!

Detail of the URL custom field template override
Player showing on the page

Result

This is how it looks our site with the custom fields