3def
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Elggzone</title>
	<atom:link href="http://www.perjensen-online.dk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.perjensen-online.dk</link>
	<description>Elgg theme design &#38; free plugins</description>
	<lastBuildDate>Thu, 23 May 2013 19:09:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>New plugin, Elggzone Update Info</title>
		<link>http://www.perjensen-online.dk/05/new-plugin-elggzone-update-info/</link>
		<comments>http://www.perjensen-online.dk/05/new-plugin-elggzone-update-info/#comments</comments>
		<pubDate>Sun, 12 May 2013 09:38:26 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Theme Updates]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2843</guid>
		<description><![CDATA[Our new free Elgg plugin, Elggzone Update Info, is now available for all our customers. The plugin adds a widget to the admin dashboard, showing the status of your Elggzone plugins. Sometimes we release minor fixes and improvements without telling you. That&#8217;s where Elggzone Update Info comes in. The plugin makes it easy for you [...]]]></description>
				<content:encoded><![CDATA[<p>Our new free Elgg plugin, Elggzone Update Info, is now available for all our customers. The plugin adds a widget to the admin dashboard, showing the status of your Elggzone plugins.</p>
<p>Sometimes we release minor fixes and improvements without telling you. That&#8217;s where Elggzone Update Info comes in. The plugin makes it easy for you to keep an eye on new releases. When a new version is available, you will get a notification in the Elgg admin dashboard. Then, if you want to update, just log in to your Elggzone account and download the new package.</p>
<p>To take advantage of this new update service, log in and go to Member &gt; Plugin Downloads to download a copy of Elggzone Update Info. Note that only purchased products are supported, not our free plugins.</p>
<p>Elggzone Update Info makes use of a new element that is added in the plugin manifest file,</p>
<pre class="brush: xml; gutter: false">&lt;category&gt;Elggzone&lt;/category&gt;</pre>
<p>If the element is not in your manifest.xml already, you can add it yourself or download the latest version of your product. We hope that you like this new service.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/05/new-plugin-elggzone-update-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a custom page in Elgg</title>
		<link>http://www.perjensen-online.dk/04/how-to-create-a-custom-page-in-elgg/</link>
		<comments>http://www.perjensen-online.dk/04/how-to-create-a-custom-page-in-elgg/#comments</comments>
		<pubDate>Sun, 21 Apr 2013 14:45:02 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2765</guid>
		<description><![CDATA[In this tutorial we walk through all the steps to creating a custom Elgg page. A custom page can be used to organize and manage any content. You can add static content like Company Information or pull content from the Elgg database. We’re going to create a page and populate it with a heading and [...]]]></description>
				<content:encoded><![CDATA[<p>In this tutorial we walk through all the steps to creating a custom Elgg page. A custom page can be used to organize and manage any content. You can add static content like Company Information or pull content from the Elgg database.</p>
<p>We’re going to create a page and populate it with a heading and three modules. The modules will display a user avatar, friends and latest blog posts.</p>
<p><strong>The Plugin</strong></p>
<p>Create a new directory called custompage. In this directory, create a manifest file and an empty file named start.php. A manifest file contains information about the plugin, like author and version. Open manifest.xml and add the following code,</p>
<p><em>manifest.xml</em></p>
<pre class="brush: xml; gutter: true">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;plugin_manifest xmlns=&quot;http://www.elgg.org/plugin_manifest/1.8&quot;&gt;
    &lt;name&gt;Custom Page&lt;/name&gt;
    &lt;author&gt;Elggzone&lt;/author&gt;
    &lt;version&gt;2013.04.21&lt;/version&gt;
    &lt;description&gt;Custom Page plugin for Elgg&lt;/description&gt;
    &lt;website&gt;http://www.perjensen-online.dk&lt;/website&gt;
    &lt;copyright&gt;(C) Elggzone - perjensen-online.dk 2013&lt;/copyright&gt;
    &lt;license&gt;GNU General Public License version 2&lt;/license&gt;
    &lt;requires&gt;
        &lt;type&gt;elgg_release&lt;/type&gt;
        &lt;version&gt;1.8&lt;/version&gt;
    &lt;/requires&gt;
&lt;/plugin_manifest&gt;</pre>
<p>To run our plugin during initialization, we need to register the elgg event handler function, which will register our function custompage_init(). Add the following code to start.php,</p>
<p><em>start.php</em></p>
<pre class="brush: php; gutter: true">&lt;?php
/*
 * Custom Page plugin
 *
 */

elgg_register_event_handler(&#039;init&#039;, &#039;system&#039;, &#039;custompage_init&#039;);

function custompage_init() {

}</pre>
<p>Now that we have the basic files in place, we can activate our plugin. Go to Administration &gt; Plugins &gt; Custom Page and click Activate.</p>
<p><strong>Page Handler</strong></p>
<p lang="en">This plugin does not change anything yet. To create our custom page, we still need a page handler and a new file with the content we want to display. Update start.php with this piece of code,</p>
<p lang="en"><em>start.php</em></p>
<pre class="brush: php; gutter: true">&lt;?php
/*
 * Custom Page plugin
 *
 */

elgg_register_event_handler(&#039;init&#039;, &#039;system&#039;, &#039;custompage_init&#039;);

function custompage_init() {

    // Register a pagehandler
    elgg_register_page_handler(&#039;custompage&#039;, &#039;custompage_page_handler&#039;);

    // Add a menu item to the main site menu
    elgg_register_menu_item(&#039;site&#039;, ElggMenuItem::factory(array(
        &#039;name&#039; =&gt; &#039;custompage&#039;,
        &#039;href&#039; =&gt; &#039;/custompage&#039;,
        &#039;text&#039; =&gt; elgg_echo(&#039;custompage:custompage&#039;),
    )));

}

function custompage_page_handler($page, $handler) {

    if (!isset($page[0])) {
        $page[0] = &#039;index&#039;;
    }

    $plugin_path = elgg_get_plugins_path();
    $pages = $plugin_path . &#039;custompage/pages/custompage&#039;;

    switch ($page[0]) {
        case &#039;index&#039;:
            include &quot;$pages/index.php&quot;;
            break;
        default:
            return false;
    }
    return true;
}</pre>
<p lang="en">Besides the page handler we&#8217;ve added a menu item to the site menu to let visitors find our page. The page handler function determines which page to display and in this case it will look for the file index.php in custompage/pages/custompage/.</p>
<p lang="en">Let&#8217;s add the file. Create a sub directory named pages, in pages create another sub directory named custompage. In this directory create the file index.php. To check out that everything is working, add this code snippet,</p>
<p lang="en"><em>pages/custompage/index.php</em></p>
<pre class="brush: php; gutter: true">&lt;?php
/**
 * Custom Page plugin, page
 * 
 */

$content = &quot;My new page!&quot;;
$body = elgg_view_layout(&#039;one_sidebar&#039;, $content);

echo elgg_view_page($title, $body);</pre>
<p lang="en">Refresh the browser window and click the “Custom Page” menu item to go to the new web page. You should see the output “My new page! ”. We&#8217;ve now created a custom Elgg page and displays it using a page handler.</p>
<p lang="en"><b>Content</b></p>
<p>Now that the page is available, let&#8217;s pull some content from the Elgg database. Replace the code in index.php with the following,</p>
<p><em>pages/custompage/index.php</em></p>
<pre class="brush: php; gutter: true">&lt;?php
/**
 * Custom Page plugin, page
 * 
 */

// We keep this for logged in users only
gatekeeper();

// Get the user
$user = elgg_get_logged_in_user_entity();
$icon = elgg_view_entity_icon($user, &#039;large&#039;, array(&#039;use_hover&#039; =&gt; false));

$title = elgg_echo(&#039;custompage:contact&#039;);

// Get friends
$options = array(
    &#039;type&#039; =&gt; &#039;user&#039;,
    &quot;limit&quot; =&gt; 100,
    &#039;relationship&#039; =&gt; &#039;friend&#039;,
    &#039;relationship_guid&#039; =&gt; elgg_get_logged_in_user_guid(),
    &#039;inverse_relationship&#039; =&gt; false,
    &#039;full_view&#039; =&gt; false,
    &#039;pagination&#039; =&gt; false,
    &#039;size&#039; =&gt; &#039;small&#039;,
    &#039;list_type&#039; =&gt; &#039;gallery&#039;
);
$friends = elgg_list_entities_from_relationship($options);

// Latest 4 blog posts
$params = array(
    &#039;type&#039; =&gt; &#039;object&#039;,
    &#039;subtype&#039; =&gt; &#039;blog&#039;,
    &#039;owner_guid&#039; =&gt; $user-&gt;getGUID(),
    &#039;limit&#039; =&gt; 4,
    &#039;full_view&#039; =&gt; false
);
$blogs = elgg_list_entities($params);

$vars = array(
    &#039;name&#039; =&gt; $user-&gt;name,
    &#039;icon&#039; =&gt; $icon,
    &#039;friends&#039; =&gt; $friends,
    &#039;blogs&#039; =&gt; $blogs
);
$content = elgg_view(&#039;custompage/content&#039;, $vars);

$vars = array(
    &#039;content&#039; =&gt; $content,
);
$body = elgg_view_layout(&#039;one_sidebar&#039;, $vars);

echo elgg_view_page($title, $body);</pre>
<p>Here we use some of the functions provided by Elgg to get content from the database. In line 46 we use the view system in elgg.</p>
<p>The view system let us break content into smaller chunks of code and include it with for example elgg_view(&#8216;custompage/content&#8217;), where custompage is the directory and content is the file in that directory.</p>
<p>Since views live in views/default, let&#8217;s create the directories we need, views/default/custompage/, and the file content.php in the custompage directory. Open content.php and add the following piece of code,</p>
<p><em>views/default/custompage/content.php</em></p>
<pre class="brush: php; gutter: true">&lt;?php
/**
 * Custom Page content
 *
 * @uses $vars[&#039;name&#039;]    The name of a user
 * @uses $vars[&#039;blogs&#039;]    Latest 4 blog posts by the user
 *
 */

$class = array(&#039;class&#039; =&gt; &#039;ptm elgg-divide-bottom&#039;);

$hello = elgg_echo(&#039;custompage:user&#039;, array($vars[&#039;name&#039;]));
echo elgg_view_title($hello, $class);

$icon = elgg_echo($vars[&#039;icon&#039;]);

$title = elgg_echo(&#039;friends&#039;);
$content = elgg_echo($vars[&#039;friends&#039;]);

echo &#039;&lt;div&gt;&#039;;
    echo elgg_view_module(&#039;custompage icon&#039;, &#039;&#039;, $icon);    
    echo elgg_view_module(&#039;custompage&#039;, $title, $content);    
echo &#039;&lt;/div&gt;&#039;;

$title = elgg_echo(&#039;blog&#039;);

if($vars[&#039;blogs&#039;]) {
    $content = elgg_echo($vars[&#039;blogs&#039;]);
} else {
    $content = elgg_echo(&#039;custompage:noblogs&#039;);
}

echo &#039;&lt;div&gt;&#039;;
    echo elgg_view_module(&#039;custompage&#039;, $title, $content);
echo &#039;&lt;/div&gt;&#039;;</pre>
<p>In this file we&#8217;ve organized our content into modules and prepared a few new classes that we will soon add to our css file, in order to render the html output, just like we want it.</p>
<p><b>Language support</b></p>
<p>As you can see in our files, we have used the function elgg_echo() quite often. The function outputs the appropriate string from the language file. Add the directory languages in the plugin root. In languages, create a file named en.php and add the following code,</p>
<p><em>languages/en.php</em></p>
<pre class="brush: php; gutter: true">&lt;?php
/**
 * Custom Page English language file
 * 
 */

$english = array(

    &#039;custompage:contact&#039;    =&gt; &#039;Custom Page&#039;,        
    &#039;custompage:custompage&#039; =&gt; &#039;Custom Page&#039;,
    &#039;custompage:noblogs&#039;    =&gt; &#039;No blog posts yet!&#039;,
    &#039;custompage:user&#039;       =&gt; &#039;Hello, %s!&#039;,

);
add_translation(&quot;en&quot;, $english);</pre>
<p lang="en">Refresh the browser window and have a look at the updated content. You should see three modules with your avatar, friends and latest blog posts. Now let&#8217;s add some styling to the new modules.</p>
<p lang="en"><b>Extend CSS</b></p>
<p lang="en">We need to tell Elgg that we want to extend the core CSS with our own CSS file. We can do that with a single line of code. Open start.php and add the following line to the init function,</p>
<pre class="brush: php; gutter: false">elgg_extend_view(&#039;css/elgg&#039;, &#039;custompage/css&#039;);</pre>
<p lang="en">Create the new file css.php in the directory views/default/custompage/ and add the following code,</p>
<p lang="en"><i>views/default/custompage/css.php</i></p>
<pre class="brush: css; gutter: true">&lt;?php
/**
 * CSS in this file will extend or override core CSS
 * 
 */
?&gt;

/* ***************************************
    CUSTOM PAGE CSS
*****************************************/
.elgg-css-table {
    display: table;
    border-collapse: separate;
    border-spacing: 20px 0;
    margin-top: 20px;
}
.elgg-css-table .icon {
    width: 220px;
}
.elgg-css-table .elgg-list {
    border: none;
}
.elgg-module-custompage .elgg-gallery li {
    padding: 1px;
}
.elgg-module-custompage {
    display: table-cell;
    vertical-align: top;
    background-color: #F7F7F7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    box-shadow: inset 0 0 3px #FFF;
}
.elgg-module-custompage .elgg-head {
    border-bottom: 1px solid #CCC;
    margin-bottom: 0;
    padding: 10px;
}
.elgg-module-custompage &gt; .elgg-body {
    padding: 10px 10px 5px 10px;
}</pre>
<p>Save all files, reload the page and check out the final result. As mentioned you can add any content to an Elgg page like this, and with some CSS you can easily adapt the appearance and layout to your existing theme.</p>
<p><b>We&#8217;re done</b></p>
<p>This is how to create a custom page in Elgg. Please fell free to comment on this tutorial. Thanks for reading.</p>
<div id='wpdm_file_44' class='wpdm_file wpdm-only-button'><div class='cont'><div class='btn_outer'><div class='btn_outer_c' style=''><a class='btn_left  ' rel='44' title='Custom Page 1.8' href='http://www.perjensen-online.dk/?wpdmact=process&did=NDQuaG90bGluaw=='  >Download Custom Page 1.8</a><span class='btn_right'>&nbsp;</span></div></div><div class='clear'></div></div></div>

1f44
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/04/how-to-create-a-custom-page-in-elgg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a custom logo to your Elgg site</title>
		<link>http://www.perjensen-online.dk/04/how-to-add-a-custom-logo-to-your-elgg-site/</link>
		<comments>http://www.perjensen-online.dk/04/how-to-add-a-custom-logo-to-your-elgg-site/#comments</comments>
		<pubDate>Fri, 12 Apr 2013 09:22:47 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2731</guid>
		<description><![CDATA[In Elgg, you have the ability to add a header text from within the admin panel. In this tutorial you will learn how to replace this header text with an image logo. Create Plugin First and foremost, you must create a new plugin, which should contain all your changes to your Elgg site. If this [...]]]></description>
				<content:encoded><![CDATA[<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">In Elgg, you have the ability to add a header text from within the admin panel. In this tutorial you will learn how to replace this header text with an image logo.</span></span></p>
<p><b>Create Plugin</b></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">First and foremost, you must create a new plugin, which should contain all your changes to your Elgg site. If this is new to you, <a title="Don't modify core" href="http://www.perjensen-online.dk/10/dont-modify-core/">read here</a> first!</span></span></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">If you haven’t created a plugin already, you can download the plugin skeleton we’ve created to help you get started, <a title="Elgg Plugin, Customizations" href="http://www.perjensen-online.dk/10/dont-modify-core/">Customizations</a>.</span></span></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">Let’s get started. Open customizations and add your logo file to the folder customizations/graphics/. Start out with a moderate size, so you don’t break the layout. You can always change the size later.</span></span></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;"><b>The Code</b></span></span></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">The header text, which we want to replace, is in a file named header_logo.php. Since views in plugin directories always override views in the core directory, we may customize header_logo.php without touching Elgg core. We only need to copy/paste the file. Locate header_logo.php in Elgg core,</span></span></p>
<pre class="brush: php; gutter: false">elgg/views/default/page/elements/header_logo.php</pre>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">and copy/paste it to the same location in your plugin,</span></span></p>
<pre class="brush: php; gutter: false">customizations/views/default/page/elements/header_logo.php</pre>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">Now open header_logo.php in your editor, and edit the code to look like this, </span></span></p>
<pre class="brush: php; gutter: false">&lt;?php
/**
 * Elgg header logo
 */

$site = elgg_get_site_entity();
$site_name = $site-&gt;name;
$site_url = elgg_get_site_url();
$logo_url = $site_url . &quot;mod/customizations/graphics/logo.png&quot;;

?&gt;

&lt;h1&gt;
    &lt;a href=&quot;&lt;?php echo $site_url; ?&gt;&quot;&gt;
        &lt;img src=&quot;&lt;?php echo $logo_url; ?&gt;&quot; alt=&quot;&lt;?php echo $site_name; ?&gt;&quot; width=&quot;180&quot; height=&quot;50&quot; /&gt;
    &lt;/a&gt;
&lt;/h1&gt;</pre>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">So, what happens here? We create a variable called logo_url, assigns the value “path to your logo file” to it, and replace $site_name; with an image tag, containing our new variable. </span></span></p>
<pre class="brush: html; gutter: false">&lt;img src=&quot;&lt;?php echo $logo_url; ?&gt;&quot; alt=&quot;&lt;?php echo $site_name; ?&gt;&quot; width=&quot;180&quot; height=&quot;50&quot; /&gt;</pre>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;"><b>Final Step</b></span></span></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">Save all files and reload your page to check it out. If you do not see any changes, you probably have caching enabled. Go to Administration &gt; Advanced Settings and uncheck ”Use simple cache (recommended)” and ”Use system cache (recommended)”.</span></span></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">If you need to customize css in order to place your new logo exactly where you want it, follow the copy/paste procedure, mentioned above with the appropriate css file, typography.php and open the file for editing.</span></span></p>
<p><span style="font-family: Segoe UI,sans-serif;"><span style="font-size: small;">I hope you’ve now added a nice header logo to your Elgg site. Please feel free to comment on this tutorial. Thanks for reading.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/04/how-to-add-a-custom-logo-to-your-elgg-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gianna, a Stylish, Elegant and Catchy Elgg Theme</title>
		<link>http://www.perjensen-online.dk/03/gianna-a-stylish-elegant-and-catchy-elgg-theme/</link>
		<comments>http://www.perjensen-online.dk/03/gianna-a-stylish-elegant-and-catchy-elgg-theme/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 14:54:13 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[Gianna]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Theme Releases]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[full screen background]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2711</guid>
		<description><![CDATA[We are happy to announce the release of our new theme, Gianna. Gianna is a stylish, elegant and conspicuous Elgg theme. The theme comes with great features, such as responsive design, fullscreen custom background image and more. Gianna allows you to easily add your own background images. Just upload your images to the specified folder [...]]]></description>
				<content:encoded><![CDATA[<p>We are happy to announce the release of our new theme, Gianna. Gianna is a stylish, elegant and conspicuous Elgg theme. The theme comes with great features, such as responsive design, fullscreen custom background image and more.</p>
<p>Gianna allows you to easily add your own background images. Just upload your images to the specified folder and they will automatically be added to the dropdown list in Gianna options panel.</p>
<p>Then you can select a single image as background or select multiple images, to display one of them randomly.</p>
<p>As all our themes, Gianna is carefully worked through and supports all default Elgg plugins. Please go to <a title="Gianna Product Page" href="http://www.perjensen-online.dk/products-page/themes-responsive/gianna-2/">Gianna</a> product page to check out the full feature list of this awesome theme package.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/03/gianna-a-stylish-elegant-and-catchy-elgg-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elgg 1.8.14, theme updates</title>
		<link>http://www.perjensen-online.dk/03/elgg-1-8-14-theme-updates/</link>
		<comments>http://www.perjensen-online.dk/03/elgg-1-8-14-theme-updates/#comments
19d7
</comments>
		<pubDate>Tue, 19 Mar 2013 11:36:28 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Theme Updates]]></category>
		<category><![CDATA[elgg 1.8]]></category>
		<category><![CDATA[Elggzone]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2690</guid>
		<description><![CDATA[As you might know already, Elgg 1.8.14 has been released, and to keep our themes current with the latest Elgg version, we&#8217;ve just released a new round of theme updates. The 1.8.14 release includes significant bug fixes to localization in JavaScript, saving blog drafts, and displaying system errors due to token timeouts. In all there [...]]]></description>
				<content:encoded><![CDATA[<p>As you might know already, <a title="Elgg 1.8.14 download" href="http://www.elgg.org/download.php" target="_blank">Elgg 1.8.14</a> has been released, and to keep our themes current with the latest Elgg version, we&#8217;ve just released a new round of theme updates.</p>
<p>The 1.8.14 release includes significant bug fixes to localization in JavaScript, saving blog drafts, and displaying system errors due to token timeouts. In all there were 40 bug fixes and enhancements.</p>
<p>If you are already a customer, the latest version of your theme is available from <a title="Log in" href="http://www.perjensen-online.dk/products-page/your-account/">your download page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/03/elgg-1-8-14-theme-updates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Shippingcluster</title>
		<link>http://www.perjensen-online.dk/03/shippingcluster/</link>
		<comments>http://www.perjensen-online.dk/03/shippingcluster/#comments</comments>
		<pubDate>Thu, 14 Mar 2013 07:18:09 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[Theme Showcase]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2684</guid>
		<description><![CDATA[Shippingcluster is an industry initiative, enabling cloud services for shipping, under a cost sharing principle. Visit Shippingcluster]]></description>
				<content:encoded><![CDATA[<p>Shippingcluster is an industry initiative, enabling cloud services for shipping, under a cost sharing principle.</p>
<p><a title="netaof" href="http://shippingcluster.com/" target="_blank">Visit Shippingcluster</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/03/shippingcluster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming soon: Gianna</title>
		<link>http://www.perjensen-online.dk/03/coming-soon-gianna/</link>
		<comments>http://www.perjensen-online.dk/03/coming-soon-gianna/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 15:46:04 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[elgg]]></category>
		<category><![CDATA[Elgg responsive]]></category>
		<category><![CDATA[elgg theme]]></category>
		<category><![CDATA[Elggzone]]></category>
		<category><![CDATA[full screen image]]></category>
		<category><![CDATA[fully responsive]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2680</guid>
		<description><![CDATA[Here is a new sneak peek for you. We are very excited to work on our next theme Gianna, which will be a theme with full screen background images. Gianna will be a fully responsive minimalistic theme from Elggzone, as you know it. Carefully worked through and supporting all default Elgg plugins. We hope that [...]]]></description>
				<content:encoded><![CDATA[<p>Here is a new sneak peek for you. We are very excited to work on our next theme Gianna, which will be a theme with full screen background images.</p>
<p>Gianna will be a fully responsive minimalistic theme from Elggzone, as you know it. Carefully worked through and supporting all default Elgg plugins.</p>
<p>We hope that you like what you see! Please let us know what you think in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/03/coming-soon-gianna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Registration Page With Random Fullscreen Background Image</title>
		<link>http://www.perjensen-online.dk/02/registration-page-with-random-fullscreen-background-image/</link>
		<comments>http://www.perjensen-online.dk/02/registration-page-with-random-fullscreen-background-image/#comments</comments>
		<pubDate>Fri, 22 Feb 2013 10:08:08 +0000</pubDate>
		<dc:creator>KappeD</dc:creator>
				<category><![CDATA[Free Themes and Plugins]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.perjensen-online.dk/?p=2633</guid>
		<description><![CDATA[When visitors want to register on your site, they probably already know what it’s all about. But why not stimulate their interest with some nice appealing background images. Our new free Elgg plugin, Random Background, does just this. When visiting registration page, a jQuery function randomly select an image. The example above shows the result [...]]]></description>
				<content:encoded><![CDATA[<p>When visitors want to register on your site, they probably already know what it’s all about. But why not stimulate their interest with some nice appealing background images.</p>
<p>Our new free Elgg plugin, Random Background, does just this. When visiting registration page, a jQuery function randomly select an image. The example above shows the result when used with theme Business.</p>
<p>You can easily replace the supplied images with your own backgrounds. Upload your background images to the folder graphics / backgrounds / and paste the file names in the file random.php.</p>
<p>We hope that you like Random Background. If you have any questions or comments, please leave your responses in the comments below.</p>
<div id='wpdm_file_42' class='wpdm_file wpdm-only-button'><div class='cont'><div class='btn_outer'><div class='btn_outer_c' style=''><a class='btn_left  ' rel='42' title='Random Background 1.8' href='http://www.perjensen-online.dk/?wpdmact=process&did=NDIuaG90bGluaw=='  >Download Random Background 1.8</a><span class='btn_right'>&nbsp;</span></div></div><div class='clear'></div></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.perjensen-online.dk/02/registration-page-with-random-fullscreen-background-image/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

0

