About impNERD

impNERD is the place to find information on internet marketing, publishing and tips for web development. Read more »

Subscribe

Subscribe to impNERD via RSS
What is RSS?
Subscribe via e-mail:

Howto: Manually Install SezWho

With the new Entrecard + SezWho deal there are many WordPress users out there who are overwhelmed by trying to figure out how to customize SezWho and get it working properly on their blog.

I was one of those people. I looked over the WordPress plugin for hours, not just within the admin section but through the actual PHP files. I ran into problems such as not being able to customize the ‘Who am I?’ link correctly and the misplacement of the user avatars within posts. I searched for the answers and found others just like me who are having problems, with the addition of those having problems with the sidebar widget.

I headed over to the SezWho website in search of answers. I couldn’t find anything. I finally decided it was my fault. That I was obviously doing something wrong. I headed over to the download page and clicked on the WordPress plugin. Low and behold, at the bottom of the page is a link to “SezWho template modification example“.

Why you should manually install SezWho:

  • More control over the design.
  • Tags will be closed. Some people have had problems with no ending </p>, creating headaches for designs.
  • You know what is changing on your blog.
  • If you head to the page you will see a generic WordPress template with highlighted code. You might be wondering what each one does, so here are the answers:

    comments.php
    Places the avatar within your comments page. If you include this, when you hover over the image the users profile pops up.

    <?php if (function_exists(’cp_comment_user_image’)) echo cp_comment_user_image(); ?>

    This is a link to the users profile. By default, it displays ‘Who am I?’

    <?php if (function_exists(’cp_comment_profile_link’)) echo cp_comment_profile_link(); ?>

    This displays the rating system for comments.

    <?php if (function_exists(’cp_comment_footer_content’)) echo cp_comment_footer_content(); ?>

    single.php
    This displays the ratings of your posts.

    <?php if (function_exists(’cp_post_ratingbar’)) echo cp_post_ratingbar();?>

    index.php
    This displays the authors image with a popup to their profile.

    <?php if (function_exists(’cp_post_author_image’)) echo cp_post_author_image(the_author());?>

    This is a link to the authors profile using the authors name. A popup as usual is displayed.

    <?php if (function_exists(’cp_post_author_link’)) echo cp_post_author_link();?>

    This displays the rating of for each post on the index page.

    <?php if (function_exists(’cp_post_ratingbar’)) echo cp_post_ratingbar();?>

    To manually add the Red Carpet widget:

    <li>
    <?php
    include(’/wp-content/plugins/sezwho/cpratecomments.php’);
    if(function_exists(’widget_sezwho_rc’))
    widget_sezwho_rc();
    ?>
    </li>

    Add to Del.cio.us RSS Feed Stumble It! Zoom It! Add to Sphinn
        www.sajithmr.com

    If you enjoyed this post, please consider subscribing to my full feed RSS.

    Written: Jul 16, 2008
    Tags: , , ,

    Related Articles:
    10 Reasons Why SezWho Sucks OR Why It Shouldn’t
    Weekend Links
    Entrecard: the best thing that ever happened to the blogosphere
    Featured Posts Plugin for WordPress
    Why Your Business Should Consider Using Google Apps


    RSS feed | Trackback URI

    20 Comments »

    Comment by Christina
    2008-07-16 20:52:19

    I think that this hook might actually be a good thing…. I am just finding I don’t have as much time to drop…. I am busy commenting. You always helpful information. I am just not smart enough to do the wordpress thing! I tried… Have a great day!

     
    Comment by Stuart
    2008-07-16 23:38:15

    Thank you so much, I have been having problems since I turned the plugin on, Now you have given me something to play with tonight HEHE.

    I have to say the plugin is currently very immature, it would have been better had they released it as a beta to a select group of entrecarders first as I think the development team has been overwhelmed with issues.

    Ah well we will see how it goes. Once again thank you for the heads up.
    Stuart

    Comment by Gary R. Hess
    2008-07-16 23:41:19

    I agree. Although SezWho has been around for a long time, their WP plugin is very, very lacking. You would think that since WordPress is so popular that they would make it a top priority.

     
     
    Comment by BizGiftGuru
    2008-07-17 05:17:52

    I have problems with many other plugins, but this one installed easy. I did the automatic install and had no problems …

    The problems came later with another plugin when I upgraded the Wordpress to 2.6 but that is all different story :-)

    Comment by Gary R. Hess
    2008-07-18 14:23:29

    For whatever reason SezWho was giving tons of themes the run-around. Some have stated that the problem was fixed now though. I hope that is true.

     
     
    Comment by dew
    2008-07-17 15:20:34

    Yeah they make the how to pages too hidden. I had to use that same page and found it in my history when I was installing.

    I’m trying to get involved in the SezWho forums and try to give them as many suggestions as I can. I really like this service, and I’m really glad Entrecard teamed up with them!

     
    2008-07-17 19:49:37

    In my blogger blog, installing the SezWho widget had no problem.
    It’s now up and running smoothly.
    SezWho and Entrecard partnership I think is great. Our comment section now will be getting more good quality related comments to the post.
    Comment section on our blogs plays also a single-important role, which is its interactivity with each other.
    As I quote from Entrecard “It is the secret, the KEY to a blog’s success. It is the secret of Comments.”

     
    Comment by Pandu Cari Duit
    2008-07-18 06:39:41

    I can’t find how to change the default SezWho badge. I saw many blogs using simple and small badge, Any idea where or how to change this badge?

    Comment by Gary R. Hess
    2008-07-18 14:29:37

    No idea, really. I haven’t seen any material on it.

    Comment by Kuldeep Subscribed to comments via email
    2008-07-24 05:54:29

    Please find the instructions on how to customize the badge widget on http://sezwho.com/install_wp_d.php#detailed. If you search for “Badge” keyword on this page, you will find it. In the recent versions of WP, they have moved this inside “Design” link, go to Design => Widgets and you will find the badge widget here. Add the widget and then give the email address of the person you want to view the badge for.

    Alternatively, you can log onto SezWho console at http://sezwho.com/login.php and click on “Get Badge” link here. A popup will give you a script markup which you can paste anywhere (even the place where SezWho is not installed like your website which is not a blog).

    Hope this helps,
    Kuldeep

    (Comments wont nest below this level)
     
     
     
    Comment by Nishadha
    2008-07-18 07:10:28

    I also went for the manual installation , my reason being the default added code does no pass the valid XHTML tests. Also if your Wordpress template have avatars pre installed the comments might look messy with two images.

    Comment by Gary R. Hess
    2008-07-18 14:31:43

    Yep, that was actually my original reasons as well on http://blog.poemofquotes.com The invalid code made it look, very, very weird.

     
     
    Comment by Linda Subscribed to comments via email
    2008-07-18 13:01:29

    Hi,

    How do you manually install the cpbadge widget?

    Thank you.

    Comment by Gary R. Hess
    2008-07-18 14:34:21

    No clue. I haven’t seen anything on the badge, only the red carpet.

     
     
    Comment by laketrees
    2008-07-18 18:44:31

    very informative post Gary !!
    I hope someone comes up with similiar advice for blogger as I am starting to gnash my teeth with the presentation….

     
    Comment by Linda P. Morton Subscribed to comments via email
    2008-07-18 23:05:21

    Think you for this helpful post. I printed it to help my tech guy do the installation, and he found it helpful.

     
    Comment by Joy
    2008-07-19 01:32:41

    This is what I’m looking for. I’ve already spent a lot of time to figure out SezWho in my WP blog but unsuccessful. I’ll try this thank one thank you.

     
    Comment by Ian
    2008-07-19 03:51:50

    I haven’t decided whether I want this on my blog yet. I’m inclined to wait and see what other people have to say after using it for a while. I’m not a great believer in rating posts and comments - don’t see it as a particularly useful thing to do.

     
    Comment by Atniz
    2008-07-19 12:01:50

    Wow.. Luckily, I don’t have to go trough this.. The plugin just work fine.

     

    Backlinks

    1. bloggingzoom.com
    Name (required)
    E-mail (required - never shown publicly)
    URI
    Subscribe to comments via email
    Your Comment (smaller size | larger size)
    You may use <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> in your comment.

    Sponsors

    Hosting Concept
    Make money online
    PoemofQuotes Blog