Skiltz on .NET
Monday, March 12, 2012
Facebook removing default landing page
At first this was quite frustrating because we had great success with the default landing page, the old default landing page would ask people to like our fan page and if so they could then enter a draw to win an ipod tocuh in exchange for joining our website. This resulted in lots of new fans to our facebook page and new members to our website.
The solution to the problem was to create a promotional post (and link it to our facebook tab page) on our timeline and then "pin to top" in the post settings. This results in the post staying at the top of timeline and any new visitors will see this post. This does mean the new user will have to make an extra click, however we have found that if the post has the right message then the click through ratio will be quite high anyway.
Good Luck :)
Wednesday, February 15, 2012
Pay With A Tweet
ohbaby.co.nz is a popular New Zealand Baby Magazine which has articles that are only available to members who subscribe to the print magazine. We decided to add a pay with a tweet to some of these articles in an attempt to get some more back links from social media.
You can see an example by going to Natural Labour Preparation. If you're a "max" member you'll be shown the full story otherwise you will need to subscribe or pay with a tweet. Quite impressed how easy it was to setup, however one issue discovered is that after paying with the tweet the full article is displayed in the pop up window, not ideal because there are no scroll bars, you could paste the address to another window but for the average Internet junkie this might be too hard especially with the address bar greyed out.
Also it would be really cool if the paywithatweet.com website had an api so we could generate the code on the fly and apply the methodology to all our "max" articles so we could have a special weekend where all articles were free with a tweet or facebook post. I presume an api is in the making.
Pay with a tweet a service that I presume might become quite popular.
Anyone else using it? Thoughts/Comments?
Friday, February 3, 2012
Using the Umbraco Object in a Umbraco 5 Template
If you don't do this you will get an error like CS0234: The type or namespace name 'Field' does not exist in the namespace 'Umbraco' (are you missing an assembly reference?)
Umbraco 5 Hanging on Install IIS7
Unfortunately I got stopped at the first step, created a new database, created a new site IIS 7 and browsed to the new site. The install just hang with the wait cursor just going round and round. After going insane for a few hours I discovered the fix was disbale Link Scanner in AVG. You can disable this by opening the AVG user interface goto tools > advanced settings > link scanned then unticking the 3 options. Hope this gets you on your way. Hoping to bring you lots more Umbraco 5 blog posts in the weeks and months to come.
Thursday, October 6, 2011
My First Facebook Application
It basically does the following
- You enter your babies date of birth (Due date calculator) found here.
- OHbaby! sends you a week by week account of what your baby is up to.
We are using Quartz.net to schedule the job which seems to be working pretty well so far (When we get 1000's of user we'll see how it goes)
So far I am pretty happy with how its going. Posting messages to Facebook seem to be working pretty well thanks to the Facebook C# SDK.
Check out the application at http://apps.facebook.com/pregnancyweekbyweek/ to see the flow.
Sunday, September 11, 2011
Jquery Validate Form Submit Before Opening Popup Window
Sometimes you want to open a form submit in a new window. Think facebook extended permissions popup window. To achieve this you would do something like the following.
<script type="text/javascript">
$(document).ready(function () {
if ($('#myform').valid()) {
window.open('', 'formpopup', 'width=800,height=600,resizeable,scrollbars');
this.target = 'formpopup';
});
});
</script>
However you wouldn’t want to open the popup window unless the form being submitted in valid.
If you are using jquery.validate then its pretty easy to update the above javascript to this:
<script type="text/javascript">
$(document).ready(function () {
$('#myform').submit(function () {
if ($('#myform').valid()) {
window.open('', 'formpopup', 'width=800,height=600,resizeable,scrollbars');
this.target = 'formpopup';
}
});
});
</script>
Hope this helps someone.
Thursday, September 8, 2011
Go All Blacks | OHbaby! New Zealand
Go All Blacks | OHbaby! New Zealand