The 3beards

Lee from Point and Stare is incredibly good at his work, and a delight to work with. We tasked Lee with building our custom Jobs Board and Blog on our website. Lee managed to get the sections looking and working the way we wanted, and was very helpful in training us on how to use the system once the work was complete! Thanks Lee!

BradCamp

Brad Camp

Client: BradCamp
Brief: Develop a website encompassing video/ audio, event management, bookings and payments using WordPress as a CMS.

The celebrated author, speaker and MD of 4Networking Brad Burton asked Point and Stare to work closely with his designer to produce an exciting, dynamic, yet easy to use website containing videos, audio, event management/ booking system that was responsive and worked great across all major devices.

Delighted to take on the challenge the BradCamp website was born in a matter of weeks.

Go check the site out – it could change your business for good!

BradCamp

BradCamp

BradCamp

Tim Thomas

Tim Thomas

Client: Tim Thomas
Brief: Design and develop a brand new website promoting Rainbow singer/ songwriter Tim Thomas

The brief was to design and develop a bright, fresh website promoting the amazing talents of Tim Thomas.

Needless to say we had the Rainbow theme tune bouncing around the office for the duration of the project and this was definitely one of those projects where ‘fun’ replaces ‘work’.

Liv Boeree

Liv Boeree

Client: Liv Boeree
Brief: Work closely with client to create a fresh and funky website promoting champion Poker Player Liv Boeree

The brief was to develop another bespoke WordPress based promotional website for PokerStars. Designed in house and with top quality material, the project flowed smoothly and is very successful.

Liv Boeree

Liv Boeree

Liv Boeree

Please note: This project was completed in 2012 and the website has, of course, moved on from these designs.

Vicki – Clear Creations

Lee from Point and Stare has been incredibly patient and full of advice and tips, even when its not been beneficial to his work load! Things have been explained at each step of the way and Lee has always had the time to respond to queries and ideas.
I am delighted with our new site and it certainly meets the brief of being user friendly and simple for the consumer to buy.
As we build a presence for the site I would not hesitate to use Point and Stare again to build on what we have.

Jonathan Duhamel

Jonathan Duhamel

Client: Jonathan Duhamel
Brief: Work closely with client to create a multi-language website promoting champion Poker Player Jonathan Duhamel

The brief was to develop a bespoke WordPress based promotional website catering for the English and French speaking fans of champion poker player Jonathan Duhamel. Design was catered for in-house which gave me the time to develop a client happy project.

Jonathan Duhamel

Jonathan Duhamel

Jonathan Duhamel

Clear Creations

Clear Creations

Client: Clear Creations
Brief: Develop a fully operational online store selling handmade greetings cards using WordPress as an ecommerce platform.

Clear Creations approached Point and Stare because they were looking to take their online store to the next level.

The brief was to develop an online store that encapsulates the simplicity and elegance of their products with the ability to build an online presence and bespoke WordPress based ecommerce website.

Overall the client was very pleased, which lead to them emailing over a brilliant testimonial.

Clear Creations

Clear Creations

Create a child page dropdown list – WordPress

Create child page dropdown list - WordPress

Over the years WordPress has developed into a very powerful CMS and there’s some very clever stuff being created by some very clever people.

Meanwhile, back at the ranch … A recent client asked to create a dropdown list of child pages and a short while later we had this solution.

Firstly, What is a Child Page?
From the codex:
“To turn your current Page into a SubPage, or “Child” of the “Parent” Page, select the appropriate Page from the drop-down menu. If you specify a Parent other than “Main Page (no parent)” from the list, the Page you are now editing will be made a Child of that selected Page. When your Pages are listed, the Child Page will be nested under the Parent Page.”

The code below can be used within a WordPress theme page to create a dropdown containing a dynamic list of child pages.

The main element to consider is:
‘post_parent’ => 10 <– This is the ID of the parent page.

You can see this in action on this client site.

<?php $args=array(
‘post_parent’ => 10,
‘post_type’ => ‘page’,
‘orderby’ => ‘menu_order’,
‘order’ => ‘ASC’,
‘post_status’ => ‘publish’,
‘posts_per_page’ => -1,
‘caller_get_posts’=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {?>
<form name=”jump”>
<select onchange=”window.open(this.options[this.selectedIndex].value,’_top’)”>
<option value=”#” selected=”selected”>Please select</option>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<option value=”<?php the_permalink() ?>”><?php the_title(); ?></option>
<?php endwhile; } ?> </select>
</form>
<?php wp_reset_query(); ?>

If the above has totally confused you, don’t worry, just get in touch and we’ll sort it for you.

Jain Wells

Jain Wells

Client: Jain Wells
Brief: Design and develop one page website using WordPress as a CMS.

Jain approached Point and Stare after being recommended by another of our clients.
The brief was to develop an online and offline strategy that included website, MySpace and Twitter presence as well as products like CDs and flyers.

Overall we produced and advised on all aspects from the preferred CMS platform, photography, print stock and branding as well as delivering a dynamic online presence that integrated social media functions and smart phone/ tablet compliance.

Jain Wells - Singer/ Songwriter

Jain Wells - Singer/ Songwriter

Jain Wells - Singer/ Songwriter