<?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>Sennza</title> <atom:link href="http://www.sennza.com.au/feed/" rel="self" type="application/rss+xml" /><link>http://www.sennza.com.au</link> <description>The best WordPress site ever!</description> <lastBuildDate>Tue, 31 Jan 2012 09:15:22 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Cart66 Action Hook &#8211; cart66_after_order_saved</title><link>http://www.sennza.com.au/2012/01/31/cart66-action-hook-cart66_after_order_saved/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cart66-action-hook-cart66_after_order_saved</link> <comments>http://www.sennza.com.au/2012/01/31/cart66-action-hook-cart66_after_order_saved/#comments</comments> <pubDate>Tue, 31 Jan 2012 06:23:46 +0000</pubDate> <dc:creator>Bronson Quick</dc:creator> <category><![CDATA[Logic]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=1122</guid> <description><![CDATA[We&#8217;ve recently been working on a horoscopes website for one of our clients that has some content that is for members only. The Cart66 WordPress eCommerce has been great for handling the PayPal subscriptions but I had to add some custom functionality so that new members on certain levels would be automatically signed up to a mailing list which is handled by Constant Contact. Cart66 actually has Constant Contact integration which adds an &#8220;opt-in&#8221; style mailing list signup that is added to the checkout which would normally work fine for most eCommerce sites however I we needed to make the signup compulsory for the user and to do it seamlessly without the user knowing that this has occurred so they receive the daily emails that they have purchased. The undocumented cart66_after_order_saved hook I hunted around the Cart66 support section to see if Cart66 had any hooks built in and I found out that there are four hooks which aren&#8217;t documented at this stage. One of these hooks is the cart66_after_order_saved hook which I decided to use for the additional functionality I required. I started with a function and after hunting through the Cart66 code I found that the $orderInfo array would get passed into [...]]]></description> <content:encoded><![CDATA[<p>We&#8217;ve recently been working on a <a title="Horoscopes" href="http://mysticmedusa.com/">horoscopes</a> website for one of our clients that has some content that is for members only. The <a title="Cart66" href="http://cart66.com/">Cart66</a> WordPress eCommerce has been great for handling the PayPal subscriptions but I had to add some custom functionality so that new members on certain levels would be automatically signed up to a mailing list which is handled by Constant Contact.</p><p>Cart66 actually has Constant Contact integration which adds an &#8220;opt-in&#8221; style mailing list signup that is added to the checkout which would normally work fine for most eCommerce sites however I we needed to make the signup compulsory for the user and to do it seamlessly without the user knowing that this has occurred so they receive the daily emails that they have purchased.</p><p><span id="more-1122"></span></p><h2>The undocumented cart66_after_order_saved hook</h2><p>I hunted around the Cart66 support section to see if Cart66 had any hooks built in and I found out that there are four hooks which aren&#8217;t documented at this stage. One of these hooks is the <strong>cart66_after_order_saved</strong> hook which I decided to use for the additional functionality I required. I started with a function and after hunting through the Cart66 code I found that the $orderInfo array would get passed into the function.</p><p>[php]</p><p>function sennza_add_to_constant_contact($orderInfo){</p><p>/* This is where my logic will go*/</p><p>}<br /> add_action( &#8216;cart66_after_order_saved&#8217; , &#8216;sennza_add_to_constant_contact&#8217; );</p><p>[/php]</p><h2>What&#8217;s in the $orderInfo array?</h2><p>Next up I need to find out what the contents of the $orderInfo array are so I used print_r($orderInfo) to echo them out. The array contents are as follows:</p><p>[php]</p><p>Array<br /> (<br /> [ship_first_name] =&gt; Test<br /> [ship_last_name] =&gt; User<br /> [ship_address] =&gt; 888 Brunswick Street<br /> [ship_address2] =&gt;<br /> [ship_city] =&gt; NEW FARM<br /> [ship_state] =&gt; Queensland<br /> [ship_zip] =&gt; 4005<br /> [ship_country] =&gt; Australia<br /> [bill_first_name] =&gt; Test<br /> [bill_last_name] =&gt; User<br /> [bill_address] =&gt;<br /> [bill_address2] =&gt;<br /> [bill_city] =&gt;<br /> [bill_state] =&gt;<br /> [bill_zip] =&gt;<br /> [phone] =&gt;<br /> [email] =&gt; test@here.com<br /> [coupon] =&gt; none<br /> [tax] =&gt;<br /> [shipping] =&gt; 0.00<br /> [subtotal] =&gt; 0<br /> [total] =&gt; 0.00<br /> [non_subscription_total] =&gt; 0.00<br /> [trans_id] =&gt; MT-ZLPLDQNSJC7JGE<br /> [status] =&gt; New<br /> [ordered_on] =&gt; 2012-01-31 13:06:05<br /> [shipping_method] =&gt; None<br /> [account_id] =&gt; 2829<br /> [ip] =&gt; 124.171.95.111<br /> [discount_amount] =&gt; 0<br /> [id] =&gt; 4987<br /> )</p><p>[/php]</p><h2> Alright, stop&#8230; Database time!</h2><p>Now I knew that $orderInfo[account_id] was the newly generated Cart66 Account ID I looked into the database tables in phpmyadmin and realised that I needed to use this id to find out the membership level (or &#8216;feature_level&#8217; as Cart66 names it).</p><p>[php]</p><p>function sennza_add_to_constant_contact($orderInfo){<br /> global $wpdb;;<br /> $account_id = $orderInfo[account_id];<br /> $table_name = $wpdb-&gt;prefix . &#8220;cart66_account_subscriptions&#8221;;<br /> $sql = &#8220;SELECT `feature_level` FROM $table_name WHERE `account_id` = $account_id&#8221;;<br /> $account_type = $wpdb-&gt;get_var($sql);</p><p>/* User $account_type to perform the Constant Contact Logic */</p><p>}<br /> add_action( &#8216;cart66_after_order_saved&#8217; , &#8216;sennza_add_to_constant_contact&#8217; );</p><p>[/php]</p><p>Take note of the $wpdb class that I&#8217;ve interacted with in this function. The $wpdb class has a massive amount of power that makes interacting with the WordPress database a breeze! In this case I only wanted to pull out one variable so I&#8217;ve used the <a href="http://codex.wordpress.org/Class_Reference/wpdb#SELECT_a_Variable">$wpdb-&gt;get-&gt;var function</a>.</p><p>After that I ended up reading some of the Constant Contact API documentation to generate some XML to send to Constant Contact so that the subscribers were instantly added to the appropriate mailing list.</p><p>NB: <strong>I haven&#8217;t included the additional logic for the Constant Contact API</strong> as it is very site specific and I just wanted to document the data that the cart66_after_order_saved hook receives for other Cart66 developers <img src='http://cdn.sennza.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2012/01/31/cart66-action-hook-cart66_after_order_saved/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Mathew Hood Joins The Sennza Team</title><link>http://www.sennza.com.au/2012/01/25/mathew-hood-joins-the-sennza-team/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mathew-hood-joins-the-sennza-team</link> <comments>http://www.sennza.com.au/2012/01/25/mathew-hood-joins-the-sennza-team/#comments</comments> <pubDate>Wed, 25 Jan 2012 01:17:15 +0000</pubDate> <dc:creator>Mathew Hood</dc:creator> <category><![CDATA[Brisbane]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=1109</guid> <description><![CDATA[Hey everyone, My name is Mat and I am proud to be the newest addition to the Sennza team. I will start with a little bit about me. I am 22 years old and have a passion for Web Development. When I&#8217;m not behind the monitor, you will find me riding my bike or at the beach. Like Bronson and Lachlan, I too have fallen in love with WordPress. After starting on other CMS (Joomla, Drupal), I found WordPress and have never looked back since! If you want to keep in touch with what I am doing, feel free to follow me on twitter @MathewHood. I look forward to interacting with you all and hope you get some benefit from what I have to offer. -Mat]]></description> <content:encoded><![CDATA[<p>Hey everyone,</p><p>My name is Mat and I am proud to be the newest addition to the Sennza team.</p><p>I will start with a little bit about me. I am 22 years old and have a passion for Web Development. When I&#8217;m not behind the monitor, you will find me riding my bike or at the beach.</p><p>Like Bronson and Lachlan, I too have fallen in love with WordPress. After starting on other CMS (Joomla, Drupal), I found WordPress and have never looked back since!</p><p>If you want to keep in touch with what I am doing, feel free to follow me on twitter <a href="http://twitter.com/mathewhood">@MathewHood</a>.</p><p>I look forward to interacting with you all and hope you get some benefit from what I have to offer.</p><p>-Mat</p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2012/01/25/mathew-hood-joins-the-sennza-team/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Why Is Simplicity Good?</title><link>http://www.sennza.com.au/2012/01/09/why-is-simplicity-good/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-is-simplicity-good</link> <comments>http://www.sennza.com.au/2012/01/09/why-is-simplicity-good/#comments</comments> <pubDate>Mon, 09 Jan 2012 10:42:22 +0000</pubDate> <dc:creator>Lachlan MacPherson</dc:creator> <category><![CDATA[Design]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=812</guid> <description><![CDATA[Why do we assume that simple is good? Because with physical products, we have to feel we can dominate them. As you bring order to complexity, you find a way to make the product defer to you. Simplicity isn’t just a visual style. It’s not just minimalism or the absence of clutter. It involves digging through the depth of the complexity. To be truly simple, you have to go really deep. For example, to have no screws on something, you can end up having a product that is so convoluted and so complex. The better way is to go deeper with the simplicity, to understand everything about it and how it’s manufactured. You have to deeply understand the essence of a product in order to be able to get rid of the parts that are not essential. - Jony Ive (From Steve Jobs, by Walter Isaacson) via www.therussiansusedapencil.com]]></description> <content:encoded><![CDATA[<blockquote><p>Why do we assume that simple is good? Because with physical products, we have to feel we can dominate them. As you bring order to complexity, you find a way to make the product defer to you. Simplicity isn’t just a visual style. It’s not just minimalism or the absence of clutter. It involves digging through the depth of the complexity. To be truly simple, you have to go really deep. For example, to have no screws on something, you can end up having a product that is so convoluted and so complex. The better way is to go deeper with the simplicity, to understand everything about it and how it’s manufactured. You have to deeply understand the essence of a product in order to be able to get rid of the parts that are not essential.</p></blockquote><p>- Jony Ive</p><p>(From <a href="http://www.amazon.com/Steve-Jobs-Walter-Isaacson/dp/1451648537">Steve Jobs</a>, by Walter Isaacson)</p><p>via <a href="http://www.therussiansusedapencil.com/post/12290002370/jony-ive-on-simplicity">www.therussiansusedapencil.com</a></p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2012/01/09/why-is-simplicity-good/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Is Taking Over The Internet</title><link>http://www.sennza.com.au/2011/11/24/wordpress-is-taking-over-the-internet/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-is-taking-over-the-internet</link> <comments>http://www.sennza.com.au/2011/11/24/wordpress-is-taking-over-the-internet/#comments</comments> <pubDate>Thu, 24 Nov 2011 00:34:54 +0000</pubDate> <dc:creator>Bronson Quick</dc:creator> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=797</guid> <description><![CDATA[I love going to the monthly Brisbane Web Design Meetups that are held at The Edge and I occasionally put my hand up to speak so that I can share information about projects I&#8217;ve been working on and to hopefully inspire and educate the attendees. The theme for Novembers Meetup was &#8216;What I Learn in 2011&#8242; so I volunteered to do a 5 minute lightning talk titled &#8216;WordPress Is Taking Over The Internet&#8217;. I hope you enjoy it! The slides from the talk are available on Slideshare! WordPress Is Taking Over The Internet View more presentations from Bronson Quick]]></description> <content:encoded><![CDATA[<p>I love going to the monthly <a href="http://www.meetup.com/The-Brisbane-Web-Design-Meetup-Group/">Brisbane Web Design Meetups</a> that are held at <a href="http://edgeqld.org.au/">The Edge</a> and I occasionally put my hand up to speak so that I can share information about projects I&#8217;ve been working on and to hopefully inspire and educate the attendees.</p><p>The theme for Novembers Meetup was &#8216;What I Learn in 2011&#8242; so I volunteered to do a 5 minute lightning talk titled &#8216;WordPress Is Taking Over The Internet&#8217;. I hope you enjoy it!</p><p><iframe width="640" height="360" src="http://www.youtube.com/embed/3l8x_56wzfc?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p><p><span id="more-797"></span>The slides from the talk are available on Slideshare!</p><div style="width:425px" id="__ss_10262562"> <strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/bronsonquick/wordpress-is-taking-over-the-internet" title="WordPress Is Taking Over The Internet" target="_blank">WordPress Is Taking Over The Internet</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/10262562" width="425" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><div style="padding:5px 0 12px"> View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/bronsonquick" target="_blank">Bronson Quick</a></div></p></div> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2011/11/24/wordpress-is-taking-over-the-internet/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>What is Design?</title><link>http://www.sennza.com.au/2011/11/16/what-is-design/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-is-design</link> <comments>http://www.sennza.com.au/2011/11/16/what-is-design/#comments</comments> <pubDate>Wed, 16 Nov 2011 05:27:21 +0000</pubDate> <dc:creator>Lachlan MacPherson</dc:creator> <category><![CDATA[Web Design]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=780</guid> <description><![CDATA[Design: The practical solution to a problem. Mike Monteiro &#8211; Let&#8217;s Make Mistakes Podcast #23 In response to the the Obama campaign requesting designers to submit free work for the governments &#8220;Support American Jobs&#8221; campaign, Mike explains why design is so important. If you define design as: &#8220;The practical solution to a problem, then if you are asking me to design something I need to have an opportunity to go find out what the problem is, you need to explain the problem to me, you need to tell me what you are trying to get across to whom, then I need to figure out what language those people speak, figure out if their problem and your solution agree with each other, and figure out a way to present your problem so that they understand its their solution.&#8221; Credit link]]></description> <content:encoded><![CDATA[<blockquote><h2>Design: The practical solution to a problem.</h2></blockquote><p>Mike Monteiro &#8211; <a href="http://5by5.tv/mistakes">Let&#8217;s Make Mistakes</a> Podcast #23</p><p>In response to the the <a href="http://www.rollingstone.com/politics/blogs/national-affairs/obama-solicits-designers-to-work-unpaid-on-jobs-poster-20111019 ">Obama campaign</a> requesting designers to submit free work for the governments &#8220;Support American Jobs&#8221; campaign, Mike explains <span style="text-decoration: underline;">why design is so important</span>.</p><p>If you define design as:</p><p><span id="more-780"></span></p><p>&#8220;The practical solution to a problem, then if you are asking me to design something I need to have an opportunity to go find out what the problem is, you need to explain the problem to me, you need to tell me what you are trying to get across to whom, then I need to figure out what language those people speak, figure out if their problem and your solution agree with each other, and figure out a way to present your problem so that they understand its their solution.&#8221;</p><p><img class="aligncenter" src="http://www.estetica-design-forum.com/attachments/graphic-design-forum/3682d1299073617-how-would-you-like-your-graphic-design-creative-infographics.jpg" alt="" width="600" height="777" /></p><p><a href="http://www.estetica-design-forum.com/attachments/graphic-design-forum/3682d1299073617-how-would-you-like-your-graphic-design-creative-infographics.jpg">Credit link</a></p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2011/11/16/what-is-design/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>TimThumb shoots, VaultPress saves!</title><link>http://www.sennza.com.au/2011/08/05/timthumb-shoots-vaultpress-saves/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=timthumb-shoots-vaultpress-saves</link> <comments>http://www.sennza.com.au/2011/08/05/timthumb-shoots-vaultpress-saves/#comments</comments> <pubDate>Fri, 05 Aug 2011 02:34:44 +0000</pubDate> <dc:creator>Bronson Quick</dc:creator> <category><![CDATA[Logic]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=717</guid> <description><![CDATA[Any of you who follow WordPress news sites or any WordPress geeks on Twitter will be well aware of the vulnerabilities that were found in the PHP image resizing script, TimThumb. TimThumb is being used in many free and premium WordPress themes so this vulnerability caused a bit of a stir around the place. I actually used the script on the current sennza WordPress theme because this theme was whipped up over 18 months ago very quickly and back then I hadn&#8217;t used WordPress inbuilt add_image_size which I&#8217;m using almost every day on clients sites these days. Our blog uses VaultPress for backups and security and VaultPress were onto the vulnerability post haste. I&#8217;m often singing VaultPress&#8217;s praises on Twitter but I wanted to post on the record about just how amazing the VaultPress plugin and team are when it comes to backups and security! Read on to find out about yet another amazing VaultPress experience of mine! Round 1: We were in the clear with TimThumb I received the following email from the VaultPress team so I knew we were covered for the meantime: You can read about the initial findings in a post by John Ford on the VaultPress blog. The [...]]]></description> <content:encoded><![CDATA[<p>Any of you who follow WordPress news sites or any WordPress geeks on Twitter will be well aware of the vulnerabilities that were found in the PHP image resizing script, <a title="TimThumb" href="http://code.google.com/p/timthumb/" target="_blank">TimThumb</a>. TimThumb is being used in many free and premium WordPress themes so this vulnerability caused a bit of a stir around the place. I actually used the script on the current sennza WordPress theme because this theme was whipped up over 18 months ago very quickly and back then I hadn&#8217;t used WordPress inbuilt <a title="add_image_size" href="http://codex.wordpress.org/Function_Reference/add_image_size" target="_blank">add_image_size</a> which I&#8217;m using almost every day on clients sites these days.</p><p>Our blog uses <a title="VaultPress" href="http://vaultpress.com/" target="_blank">VaultPress</a> for backups and security and VaultPress were onto the vulnerability post haste. I&#8217;m often singing VaultPress&#8217;s praises on Twitter but I wanted to post on the record about just how amazing the VaultPress plugin and team are when it comes to backups and security! Read on to find out about yet another amazing VaultPress experience of mine!</p><p style="text-align: center;"><img class="aligncenter size-full wp-image-1064" title="vaultpress" src="http://cdn.sennza.com.au/wp-content/uploads/2011/08/vaultpress.png" alt="" width="300" height="83" /></p><p><span id="more-717"></span></p><h2>Round 1: We were in the clear with TimThumb</h2><p>I received the following email from the VaultPress team so I knew we were covered for the meantime:</p><p style="text-align: center;"><a href="http://cdn.sennza.com.au/wp-content/uploads/2011/08/round-one.png"><img class="aligncenter size-thumbnail wp-image-719" style="margin-bottom: 30px;" title="VaultPress - Round One" src="http://cdn.sennza.com.au/wp-content/uploads/2011/08/round-one-580x290.png" alt="VaultPress - Round One" width="580" height="290" /></a></p><p>You can read about the initial findings in a <a title="Vulnerability Found in timthumb.php" href="http://blog.vaultpress.com/2011/08/02/vulnerability-found-in-timthumb/" target="_blank">post by John Ford</a> on the VaultPress blog.</p><h2>The Round 1 Intermission</h2><p>In a brief chat to <a title="Australian WordPress Developer" href="http://dd32.id.au/" target="_blank">Dion Hulse</a> on Skype, Dion mentioned a few other vulnerabilities that he&#8217;d noted which you can find in <a href="http://markmaunder.com/2011/zero-day-vulnerability-in-many-wordpress-themes/#comment-11271" target="_blank">Dion&#8217;s comments on this blog post</a>. So thanks to Dion I was aware that there was more to it than the initial findings.</p><p>I spent yesterday doing some WordPress consulting at Brisbane Technology Park and funnily enough the theme that the company was using there used timthumb.php as well so I spent the time fixing that for them yesterday and thought to myself:<em><strong> &#8216;I have to fix this issue on our site first thing tomorrow&#8217;.</strong></em></p><h2>VaultPress To The Rescue</h2><p style="text-align: left;"><a href="http://cdn.sennza.com.au/wp-content/uploads/2011/08/vaultpress-front.png"><img class="aligncenter size-full wp-image-720" style="margin-bottom: 30px;" title="vaultpress-front" src="http://cdn.sennza.com.au/wp-content/uploads/2011/08/vaultpress-front.png" alt="" width="484" height="323" /></a>I checked my email this morning after I woke up and was pleasantly surprised to find out that the VaultPress team had been following the findings and had patched our site while I was sleeping so I didn&#8217;t have to update our site this morning!</p><p style="text-align: center;"><a href="http://cdn.sennza.com.au/wp-content/uploads/2011/08/vaultpress-winning.png"><img class="aligncenter size-thumbnail wp-image-727" style="margin-bottom: 30px;" title="VaultPress - Winning!" src="http://cdn.sennza.com.au/wp-content/uploads/2011/08/vaultpress-winning-580x290.png" alt="VaultPress - Winning!" width="580" height="290" /></a></p><p style="text-align: left;">To say I was pleasantly surprised would be a serious understatement. I love VaultPress and wouldn&#8217;t be without it. Knowing that your backups are safe is one thing&#8230;.but knowing your site is secure as well&#8230;even while your sleeping is something that you can&#8217;t put a dollar amount on!</p><p>Go and <a title="VaultPress Plans &amp; Pricing" href="http://vaultpress.com/plans/" target="_blank">sign up to VaultPress</a> now if you haven&#8217;t already!!!</p><p><strong>Edit: Have a read of Matt&#8217;s thoughts on the <a href="http://ma.tt/2011/08/the-timthumb-saga/">TimThumb saga</a>. You&#8217;ll see that the idea of VaultPress updating your site while you sleep is one of the key features that was envisioned for VaultPress. </strong></p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2011/08/05/timthumb-shoots-vaultpress-saves/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>SEO&#8217;s watch out, Design is the next big ranking factor</title><link>http://www.sennza.com.au/2011/08/01/design-is-the-next-big-ranking-factor/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=design-is-the-next-big-ranking-factor</link> <comments>http://www.sennza.com.au/2011/08/01/design-is-the-next-big-ranking-factor/#comments</comments> <pubDate>Mon, 01 Aug 2011 08:26:46 +0000</pubDate> <dc:creator>Lachlan MacPherson</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Google]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=685</guid> <description><![CDATA[Google has made more changes to its search algorithm in recents months than any other time I can remember,with the Panada update and the 4 corresponding revisions since Feb 2010. I believe that all these things now mean one thing for SEO&#8217;s. Design now matters for search engine optimisation, and design will continue to matter more and more. We all know Google cant &#8220;see&#8221; images, essentially Google is blind and can only read text and code, but what if Google started to favour design and aesthetics as a ranking factor in their search results? After all the website is the end point that we are searching for, the blue links are just a means to the website we are trying to find. Google currently uses some measurements to assume whether the website you landed on was of any value to the searcher. Google even urged web masters to focus on these metrics, rather than the coveted Page Rank in a recent blog post. These are: Conversion rate Bounce rate Clickthrough rate (CTR) &#8216;Bounce rate&#8217; along with &#8216;time on site&#8217; give a good inducation as to how relevant the website you clicked on is for that search term. For example, clicking on result #1 then immediately clicking back and [...]]]></description> <content:encoded><![CDATA[<p style="text-align: center;"><p>Google has made more changes to its search algorithm in recents months than any other time I can remember,with the Panada update and the <a href="http://searchengineland.com/official-google-panda-2-3-update-is-live-87230">4 corresponding revisions</a> since Feb 2010.</p><p>I believe that all these things now mean one thing for SEO&#8217;s. Design now matters for search engine optimisation, and design will continue to matter more and more.</p><p><img class="size-medium wp-image-1057 aligncenter" style="border-style: initial; border-color: initial; text-align: center;" title="Design" src="http://cdn.sennza.com.au/wp-content/uploads/2011/08/Design-300x199.jpg" alt="" width="300" height="199" /></p><div><div style="text-align: center;"></div><p><span id="more-685"></span></p><p>We all know Google cant &#8220;see&#8221; images, essentially Google is blind and can only read text and code, but what if Google started to favour design and aesthetics as a ranking factor in their search results? After all the website is the end point that we are searching for, the blue links are just a means to the website we are trying to find.</p><p>Google currently uses some measurements to assume whether the website you landed on was of any value to the searcher.</p><p>Google even urged web masters to focus on <a href="http://googlewebmastercentral.blogspot.com/2011/06/beyond-pagerank-graduating-to.html" target="_blank">these metrics</a>, rather than the coveted Page Rank in a recent blog post. These are:</p><ol><li>Conversion rate</li><li>Bounce rate</li><li>Clickthrough rate (CTR)</li></ol><p>&#8216;Bounce rate&#8217; along with &#8216;time on site&#8217; give a good inducation as to how relevant the website you clicked on is for that search term. For example, clicking on result #1 then immediately clicking back and clicking on #2 and spending more time there tells Google this second result contained more relevant information for that search term than the first.</p><p>The thing is this data only comes after the fact and all this clicking back and forth doesn&#8217;t provide you with the best &#8220;user experience&#8221;, something that Google is obsessed with.</p><p>So what if they could provide you with the same experience without any clicks at all? This is exactly the type of optimisation that Google loves.</p><p>Google is trying to do this with the search preview, but I would have a guess and say that not alot of people uses this, its just as easy to click on the link as it is to click on the preview.</p><h3>So why not show a thumbnail preview for each link?</h3><p>Here are Googles current search results format, which link would you click on first if you were looking for &#8220;web design&#8221;?</p><p><a href="http://cdn.sennza.com.au/wp-content/uploads/2011/08/Google-Search-Original2.png"><img class="aligncenter size-large wp-image-1060" title="Google-Search-Original" src="http://cdn.sennza.com.au/wp-content/uploads/2011/08/Google-Search-Original2-706x1024.png" alt="" width="640" height="928" /></a></p><p>&nbsp;</p><p>&nbsp;</p><p>Now here is the same search results page but with thumbnails next to the search results:</p><p><a href="http://cdn.sennza.com.au/wp-content/uploads/2011/08/Google-Search-Thumbnail.jpg"><img class="aligncenter size-large wp-image-1061" title="Google-Search-Thumbnail" src="http://cdn.sennza.com.au/wp-content/uploads/2011/08/Google-Search-Thumbnail-903x1024.jpg" alt="" width="640" height="725" /></a></p><p>Which search result do you gravitate to first? Was it different from the previous result with no thumbnails?</p><p>&nbsp;</p><p>Why am I certain that design will be a ranking factor?</p><p>Have a look at a recent blog post by Google with a guide to the latest &#8220;Panda&#8221; update urging web masters to <a href="http://googlewebmastercentral.blogspot.com/2011/05/more-guidance-on-building-high-quality.html" target="_blank">build higher quality sites</a>. They asked you to think of the following questions, among others, from your visitors perspective:</p><ul><li>Would you be comfortable giving your credit card information to this site?</li><li>Is this the sort of page you’d want to bookmark, share with a friend, or recommend?</li><li>Are the pages produced with great care and attention to detail vs. less attention to detail?</li><li>Would users complain when they see pages from this site?</li></ul><p>Alot of these questions about trust, authority, detail, and complaining about a website come down to<strong> how a website is designed</strong>.</p><p>Now I know what you are thinking if you are an SEO&#8230; <a href="http://www.seomoz.org/blog/the-responsibilities-of-seo-have-been-upgraded">not another thing</a> I need to worry about. The way I see it is this will help to bring better search results for all in the long term, which after all is what Google wants most.</p><p><a href="http://www.flickr.com/photos/burningredstudio/5080751535/">image credit</a></p></div> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2011/08/01/design-is-the-next-big-ranking-factor/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Is Not Just For Blogs Dammit!</title><link>http://www.sennza.com.au/2011/06/04/ignite-brisbane-wordpress-is-not-just-for-blogs-dammit/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ignite-brisbane-wordpress-is-not-just-for-blogs-dammit</link> <comments>http://www.sennza.com.au/2011/06/04/ignite-brisbane-wordpress-is-not-just-for-blogs-dammit/#comments</comments> <pubDate>Sat, 04 Jun 2011 06:10:20 +0000</pubDate> <dc:creator>Bronson Quick</dc:creator> <category><![CDATA[Brisbane]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=634</guid> <description><![CDATA[As my post titled &#8216;WordPress Is Not Just For Blogs Dammit&#8216; resonated so well across the world last year I decided to take up the Ignite challenge and do a 5 minute talk at Ignite Brisbane called &#8216;WordPress is Not Just For Blogs Dammit!&#8217; I hope you enjoy watching this and learn some creative uses of WordPress!]]></description> <content:encoded><![CDATA[<p>As my post titled &#8216;<a title="WordPress Is Not Just For Blogs Dammit!" href="http://www.sennza.com.au/2010/06/28/wordpress-is-not-just-for-blogs-dammit/">WordPress Is Not Just For Blogs Dammit</a>&#8216; resonated so well across the world last year I decided to take up the Ignite challenge and do a 5 minute talk at <a title="Ignite Brisbane" href="http://www.ignitebrisbane.net/">Ignite Brisbane</a> called &#8216;WordPress is Not Just For Blogs Dammit!&#8217;</p><p>I hope you enjoy watching this and learn some creative uses of WordPress!</p><p><iframe width="640" height="360" src="http://www.youtube.com/embed/TbcmIKvGqPo?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2011/06/04/ignite-brisbane-wordpress-is-not-just-for-blogs-dammit/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Utilizing your WordPress Blog and Social Media for Backlinks</title><link>http://www.sennza.com.au/2011/05/12/utilizing-your-wordpress-blog-and-social-media-for-backlinks/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=utilizing-your-wordpress-blog-and-social-media-for-backlinks</link> <comments>http://www.sennza.com.au/2011/05/12/utilizing-your-wordpress-blog-and-social-media-for-backlinks/#comments</comments> <pubDate>Wed, 11 May 2011 14:32:38 +0000</pubDate> <dc:creator>Dan Petrovic</dc:creator> <category><![CDATA[Brisbane]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=613</guid> <description><![CDATA[There is a great discussion lead every time a company with no blog asks why they can&#8217;t get links. Another question, usually before that, is why do we need a blog at all, our product pages show everything there is to know about us and our services? And lastly, why on earth do we need to spend hours on social media chatting with people; we don’t call people on the phone just to chat with them and make them feel better do we? Well, no matter how many times these questions are asked, they are good questions that deserve a good answer. For the sake of argument we will talk about WordPress platform and WordPress blogs, as the most popular blogging platform in the world powering the greatest number of blogs. Too say it honestly, it is the easiest one to use, easy to install, modify, design for and it is widely supported by the online community, so there are always new additions that can help you with your work and most importantly, with your SEO and link building efforts. Why You Need a Blog in General It doesn’t matter if you are a company or an individual offering services, [...]]]></description> <content:encoded><![CDATA[<p>There is a great discussion lead every time a company with no blog asks why they can&#8217;t get links. Another question, usually before that, is why do we need a blog at all, our product pages show everything there is to know about us and our services? And lastly, why on earth do we need to spend hours on social media chatting with people; we don’t call people on the phone just to chat with them and make them feel better do we? Well, no matter how many times these questions are asked, they are good questions that deserve a good answer.</p><p><img class="aligncenter size-full wp-image-614" title="Utilising your WordPress Blog and Social Media for Backlinks" src="http://cdn.sennza.com.au/wp-content/uploads/2011/05/blogging.jpg" alt="Utilising your WordPress Blog and Social Media for Backlinks" width="300" height="284" /></p><p><span id="more-1026"></span></p><p>For the sake of argument we will talk about WordPress platform and WordPress blogs, as the most popular blogging platform in the world powering the greatest number of blogs. Too say it honestly, it is the easiest one to use, easy to install, modify, design for and it is widely supported by the online community, so there are always new additions that can help you with your work and most importantly, with your <a title="SEO" href="http://dejanseo.com.au" target="_blank">SEO</a> and link building efforts.</p><h2>Why You Need a Blog in General</h2><p>It doesn’t matter if you are a company or an individual offering services, products or information, the easiest way to engage the market is through blogging. It offers you the ability to not only get fresh updates regarding your market on your site, but to do many things a company needs if they want to succeed online:</p><ul><li>Engage the users with useful and helpful content</li><li>Get some buzz going on</li><li>Communicate directly with visitors through commenting</li><li>Offer new product/service updates</li><li>Ask for reviews</li><li>Offer incentives, contest, promotions which is easy to share on the web</li><li>Get great content with supporting keywords to increase the topic relevance</li><li>Create inner links for SEO purposes</li></ul><h2>Why WordPress as a Platform?</h2><p>WordPress is very easy to use, and the fact that it is widely supported by the online community is a measure of credibility, but not just that. As widely spread you can find all sorts of plugins that will make your blog easy to optimise, track and build links for.</p><p>You can easily install Google Analytics plugin to your blog and connect your Analytics account, so every time you visit your blog’s dashboard you will be able to see stats regarding your blog. There is now JetPack WP integration that is very easy and also lets you get the analytic insights.</p><p>To help you optimise your blog there are several useful plugins, most known is All in One SEO Plugin, but there are similar plugins that help you optimise your Meta titles and Meta Descriptions to get the sale pitch going.</p><p>To help you inner-link your pages there are several plugins you can use, like SEO Smart Links and LinkWithin. This process of placing things on auto-drive will give you more time to concentrate on other things and will help you deep link your most important pages.</p><p>Branding your website with Simple Favicon plugin is also easy, as well as adding a sitemap to your blog for easy indexing. But WordPress is not just about automating things and putting them on auto-pilot via plugins you can get from the <a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress Plugin Database</a>. Yes it saves time and is easy to use, but there are other benefits of using WordPress. For example clean URL structure you can set via permalinks section to show only the post name. Not to mention the fact that WordPress has a clean code, now if you experiment with your themes you might get burned, but most of them are well made.</p><p>Navigation is much easier with tags and categories; it is very easy to optimise images, and you don’t have to worry about URL canonization issues any more. With all this great usability you shouldn’t think twice about the benefits of WordPress for SEO, and yeah, don’t forget to add the Link To Me plugin to make your content more linkable.</p><h2>How to Use your Blog to Get Backlinks</h2><p>This is also a frequent question when it comes to owning a blog, how do I use it to get backlinks? Well, a quality blog will get backlinks on its own; so to begin with, if you just concentrate on producing quality and useful content you will be sure to score a few links. But to give you more insight into how to attract or use your blog as leverage to get links here is another useful list:</p><ul><li><strong>Blog Commenting</strong> – maybe not the top level of link building but it doesn’t matter, not only do you score a link but there is an even better thing involved, you get people to notice you by leaving insightful comments.</li><li><strong>Guest Blogging</strong> – It is far easier to score a guest post when you own a blog of your own. This way you will be able to offer you expertise to new eyes looking for info regarding your market. You can exchange blog posts the same way you exchange links.</li><li><strong>Offer Guest Posts on Your Blog</strong> – By offering guest posts on your blog you will sure score a good number of links. Most bloggers will link to their content to strengthen their links coming from your blog.</li><li><strong>Link Baiting</strong> – Although not explicit only to blogs, link baits are easier created today in the form of content, so by creating a great post, list, a resource or something like a giveaway announced on your blog you will be inviting free links.</li><li><strong>Offer Something Free or Amazing</strong> – Giving free products, discounts and promotion material you will be sure to attract some attention and get links for your blog.</li><li><strong>Offer Market News</strong> – If you offer news regarding your market to your audience first you will sure be on your way of becoming a one stop resource, which also leads to new links.</li></ul><h2>Utilizing Social Media for Backlinks</h2><p>Spending an hour a day to manage your social media profiles is not too much. If you are a company you should have a designated person managing your social interactions. Think of it as customer support, but more in the terms of customer information, or even user control. This is the best way to spread the news and your blog content, the best way to make it go viral. The days of emailing webmasters are almost gone, we have switched to an interactive web that relies on social media to drive traffic and get links.</p><p><img class="aligncenter size-thumbnail wp-image-615" title="Social Media for Backlinks" src="http://cdn.sennza.com.au/wp-content/uploads/2011/05/social-media-480x290.jpg" alt="Social Media for Backlinks" width="480" height="290" /></p><p>When someone mentions social media and backlinks people automatically think of creating user profiles with links to their sites, or spamming their stream with links, this is not what we are talking about. The way to use social media is to connect with the right people, engage them in conversation and form alliances that will last not for a week, but for a long time. Each of those alliances can bring your traffic and links. You can use social media to ask for links on Twitter or Facebook, form strategic partnerships via LinkedIn or simply promote your quality content and get it viral and linked at.</p><p>Twitter is a gold mine for market leaders you want to follow and engage, so here is a nice new <a href="http://tweettopicexplorer.neoformix.com/" target="_blank">Twitter tool</a> to help you get the idea of what a user’s profile is all about. This is a great tool to see what a user is talking about and to use that info to find and connect with new people to help promote your website and get some quality backlinks.</p><p>Both blogging and social media are powerful tools for link building. Not using them in this age means that your online presence is outdated, so get on the wagon, it’s not hard and you will see the results very fast.</p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2011/05/12/utilizing-your-wordpress-blog-and-social-media-for-backlinks/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Why WordPress updates are a GOOD thing!</title><link>http://www.sennza.com.au/2011/04/30/why-wordpress-updates-are-a-good-thing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-wordpress-updates-are-a-good-thing</link> <comments>http://www.sennza.com.au/2011/04/30/why-wordpress-updates-are-a-good-thing/#comments</comments> <pubDate>Sat, 30 Apr 2011 07:11:03 +0000</pubDate> <dc:creator>Bronson Quick</dc:creator> <category><![CDATA[Logic]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.sennza.com.au/?p=594</guid> <description><![CDATA[Every now and then we need to have a bit of a rant right? I know that it&#8217;s been proven to be healthy to release any negative energy in any format. You could write a song, scream at the top of your lungs or blog about it&#8230;so I&#8217;m choosing the later! So it&#8217;s rant time in regards to WordPress updates and why they are a good thing! Because other CMS seem to think frequent updates are a bad thing&#8230;plus this rant will make me a healthier person cause I&#8217;ll release the negative energy and hopefully get my point across! Image Credit Link We all love paying for insurance don&#8217;t we? Oh no, wait, we hate paying insurance because it&#8217;s based on paranoia! What if someone crashes into my car? What if someone decides that my house is the house to rob? What if I die trying to catch a bus? What if my house gets flooded? (I&#8217;ll not rant about this one&#8230;seeing it&#8217;s not WordPress related #thebigwet) I&#8217;ll change those locks for free! Imagine a world where your insurance companies found out about a flaw in your deadlocks on your house and they popped over to upgrade your locks to [...]]]></description> <content:encoded><![CDATA[<p>Every now and then we need to have a bit of a rant right? I know that it&#8217;s been proven to be healthy to release any negative energy in any format.</p><p>You could write a song, scream at the top of your lungs or blog about it&#8230;so I&#8217;m choosing the later! So it&#8217;s rant time in regards to <strong><a title="http://wordpress.org/" href="http://wordpress.org/">WordPress</a></strong> updates and why they are a good thing! Because other <strong>CMS</strong> seem to think frequent updates are a bad thing&#8230;plus this rant will make me a healthier person cause I&#8217;ll release the negative energy and hopefully get my point across! <img src='http://cdn.sennza.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p><img class="aligncenter size-medium wp-image-1066" title="argh" src="http://cdn.sennza.com.au/wp-content/uploads/2011/04/argh1-300x199.jpg" alt="" width="300" height="199" /></p><p><a href="http://www.flickr.com/photos/sethwoodworth/2714717353/">Image Credit Link</a></p><p><span id="more-594"></span></p><h2>We all love paying for insurance don&#8217;t we?</h2><p>Oh no, wait, we <em>hate</em> paying insurance because it&#8217;s based on paranoia!</p><ul><li><span style="color: #444444;">What if someone crashes into my car?</span></li><li><span style="color: #444444;">What if someone decides that my house is the house to rob?</span></li><li><span style="color: #444444;">What if I die trying to catch a bus?</span></li><li><span style="color: #444444;">What if my house gets flooded? (I&#8217;ll not rant about this one&#8230;seeing it&#8217;s not WordPress related <a href="http://search.twitter.com/search?q=%23thebigwet">#thebigwet</a>)</span></li></ul><h2>I&#8217;ll change those locks for free!</h2><p>Imagine a world where your insurance companies found out about a flaw in your deadlocks on your house and they popped over to upgrade your locks to negate the ability for a thief to break in. That&#8217;d be awesome right?</p><p>After all, you are paying the insurance company to insure you so it&#8217;s the least they could do! Oh no wait, the least they could do is direct debit the same amount as last month from your account and do nothing. That&#8217;s some awesome service right there! We&#8217;ll take everyones money then <em><strong>if</strong></em> something happens then we&#8217;ll deal with that after the event.</p><h2>You get FREE WordPress insurance!</h2><p>So how does this little rant tie in with insurance companies and <strong><a title="http://wordpress.org/" href="http://wordpress.org/">WordPress</a></strong>?</p><p>Well you know that lovely little yellow update bar?</p><p><img class="aligncenter size-thumbnail wp-image-597" title="WordPress Update notice" src="http://cdn.sennza.com.au/wp-content/uploads/2011/04/update-580x86.png" alt="WordPress Update notice" width="580" height="86" /></p><p>This little yellow bar is the same as your insurance company coming to your house to update your locks so you&#8217;re secure!</p><p>Frequent updates are a <em><strong>good</strong> </em>thing! Any time a security flaw is found the <strong><a title="http://wordpress.org/" href="http://wordpress.org/">WordPress</a></strong> team will update the flaws within <em>hours</em>. There are loads of other Content Management Systems (CMS) out there who are <em>proud</em> about their lack of updates because they think they are secure. I actually tested out a couple of security holes that were found in WordPress on another popular CMS last night and <em>surprise, surprise</em> I logged into their systems using the holes that have been sealed by the awesome WordPress community&#8230;and I&#8217;m not even a hacker!</p><h2>WordPress updates are a freaking awesome thing!</h2><p>WordPress updates keep your website safe. You can sleep at night without any paranoia thanks to WordPress and the community behind it. There are many reasons why WordPress powers over 13% of the <strong>entire</strong> internet but the updates are one of the most important reasons!</p><p>So don&#8217;t get annoyed or rant about a new WordPress update on your website!!!</p><p>Think of it as your best mate tapping you on the shoulder and saying &#8220;<em>Hey dude, I just noticed you forgot to lock your car and started wandering off to the shops so I&#8217;ll lock your car for you!</em>&#8220;</p> ]]></content:encoded> <wfw:commentRss>http://www.sennza.com.au/2011/04/30/why-wordpress-updates-are-a-good-thing/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 970/1062 objects using disk: basic
Content Delivery Network via cdn.sennza.com.au

Served from: www.sennza.com.au @ 2012-02-05 07:13:34 -->
