2011,Jun
W

Important WordPress News

in Wordpress, by Stephanie

Oh, the joy of hackers. I know I’ve expressed my dislike of them plenty of times. Of course, with WordPress being so popular, they’re going to target it. I just read this message from WordPress today and I want to pass it on. Please reset your WordPress password regardless of whether you use the mentioned plugins. Take a moment to read the below article.

For my clients, if I have a wordpress log in on your site, I will be going in today to reset the password.

Password Reset via WordPress.org

 
2011,Jun
W

A site makeover!

in Business, Themes, Wordpress, by Stephanie

I’m having a lot of fun redoing my site. I decided I wanted to transition the entire site over to WordPress instead of running a separate blog. I pretty much turn to WordPress for any site I need to do, I should run my site entirely on WordPress right?! I still have some work to do, but I love how it’s turning out. Once I get everything done style-wise, I’ll have to move all my webpages over. Then I get to style my “Cityhall” area where all purchases and billing, etc takes place.

 
2010,Oct
BPN-new2

One client, Two sites.

in Portfolio, Themes, Wordpress, by Stephanie

I had previously done this first site, boudoirphotographynetwork.com, for Robin, but she quickly outgrew it. I knew her site had potential! We had to find a new solution and we did, we used Classipress. Classipress was originally written as a classifieds theme for WordPress. With some heavy editing, I was able to manipulate some things to do pretty much what she needed. The new site is up, running and growing daily. Ironically, Appthemes is working on a business directory theme with no set release date.

Upon the completion of Boudoir Photography Network, Robin wanted to start a similar site themed toward children’s photographers, childrensphotographynetwork.com. Another GREAT idea! We used the same platform and layout, just a change of colors, this helped carry the branding across the sites and connect the two. There are some very talented photographers out there! I really enjoyed working both of these sites, often getting sidetracked with the wonderful photography. If you need a photographer, this is where you’ll find the best of the best. If you or someone you know does photography, this is the place to be listed!

 
2010,Aug
W

My favorite WordPress Plugins

in Tips, Wordpress, by Stephanie

I’m in the process of setting up yet another WordPress install. I love WordPress. I haven’t found much I can’t do with WordPress. But anyhow, so I’m uploading the files right now and the next step, of course, is Plugins. I know there are a few that I automatically install with every WordPress site I build. So, here are my faves, in alphabetical order.

1. Contact-Form-7 :: Every site needs a method for users to contact the site owner. I’m not a fan of publishing email addresses on a website due to spam issues. I love forms. I can’t say I’ve tried every form plug in for WordPress, but I can say I’ve used this one repeatedly. Set up is easy, customization is easy. It’s a must have.

2. PHP Code Widget :: Sometimes you just need to toss some php into a sidebar widget.

3. Sexy Bookmarks :: If you’re going to have a blog or website, you need to allow your site visitors to easily share what they find on your site. Sexy makes it easy and it looks great at the same time.

4. TinyMCE Advanced :: The editor that WordPress supplies is nice, but sometimes you just need more control.

5. Twitter Tools :: Easily tweet your new blog posting. You can turn your tweets into blog posts and your blog posts into tweets. You can also display a sidebar widget of you latest tweets. Great way to integrate Twitter with your site.

6. Woopra :: A client actually introduced me to Woopra. You’ll need to register on the Woopra website, but with the plug in, you can monitor your site visitors and gather important date right from your WordPress dashboard. Woopra offers a few different levels of monitoring, but the free basic level is offers just enough.

Of course, there are more depending upon my needs. For one, I use one of a few plugins to style my log in/register pages, but those are dependent upon the site. These are the ones that I install first without even considering the type of site I’m doing. What are your favorite WordPress Plugins?

I should consult my own list and advice and get this blog up to date!

Tagged with:  
2010,Aug
W

Styling Pie-Register/Register-Plus

in Tutorials, Wordpress, by Stephanie

Sometimes you just need to collect information on your blog users. Collecting information can help you appeal to your visitors, the more you know, the more you can cater to them. The standard WordPress registration simply collects username and email. How about offering your users the ability the set their own password upon sign up? Enter Register-Plus and it’s sister app Pie-Register. It’s my understanding that Register-Plus is no longer being updated and Pie-Register is the new version. For that reason, I’m going to focus on Pie-Register here, though in my experience, both plug ins seem identical.

Download and install is fairly easy, as well as setting up the needed fields. I covered a lot of that in a previous post. Today we’re going to focus on matching up Pie-Register’s form fields with WP’s standard form fields. On initial install, you’ll find that the form field is on the left and the label is on the right. Standard forms are opposite that and now is not the time to break from standard and confuse your registrants!

The problem lies in the form set up in the file pie-register.php. You’re going to need an editor, I recommend Notepad++. You could use the WordPress built in editor, but it doesn’t show you line numbers. In that case, you’ll need to search to find the correct area to edit. A great editor will help you immensely for this part.

Open the file in your favorite editor and find the coding for the form. The form begins around line 1254. You’ll need to know a bit about form structure. Each form field should have a label and then it’s field.

Bad code:

   		<div style="clear:both"><label><?php _e('First Name:', 'piereg');?> <p><br /><br />
		<input autocomplete="off" name="firstname" id="firstname" size="25" value="<?php echo $_POST['firstname'];?>" type="text" tabindex="30" /></p></label><br /><br />
        </div>


Good code:

   		<div style="clear:both"><label><?php _e('First Name:', 'piereg');?></label> <br /><br />
		<input autocomplete="off" name="firstname" id="firstname" size="25" value="<?php echo $_POST['firstname'];?>" type="text" tabindex="30" class="formfield" /><br /><br />
        </div>

All I’ve done is move the </label> up where it should be, closing the label name. Then we remove the <p> and </p>, no need for paragraphs in a form. The final step is adding a class to the form field, class=”formfield” in this case, so we can style it as needed. In your css file, you can now add declarations for .formfield to get the styling that you need. You’ll need to do this for each form field in the file. In the end, you’ll be left with a registration form that looks nice and fits your website perfectly.

Tagged with:  

Follow Me on Twitter