Meet Jessie!

Meet Jessie. She is looking for a GREAT new home! As you can see she is beautiful.

Click on the thumbnails to see larger images

Jessie’s current owners are no longer able to keep her so Jessie is looking for a new home.

Jessie is friendly, good with children and other dogs. She does need a lot of training, patience, love and attention. She is a runner! When out in the open she will run and not stop. A fenced-in yard or someone who plans on being active with her is a must.

We are asking for a small donation to show you are serious. You name the donation amount. We will also be screening so please don’t be shocked or offended. A super short phone interview and possibly a quick home visit/meet and greet.

She is Spayed but not current on rabies shots. Rabies shots might be done before adoption.

Jessie is an amazing dog who deserves nothing but the best!

If you are interested please leave me a voicemail on my phone 616.987.0830, drop me an email andy@imetandy.com or hit me up any other place y0u can find me.

 

 

Add Static tags to Buddypress Group Tags

Adding static Group Tags using the Buddypress Group Tags plugin is pretty simple. We just need to change a few lines of code to change our input method.


What you will need:

Buddypress Group Tags plugin version 1.2.2

A code editor, I like;

Mac – Esspresso

Windows – notepad ++


Once you have Buddypress Group Tags version 1.2.2 installed we need to locate the bp-group-tags.php file. This file is located in wp-content > plugins > buddypress-group-tags. Locate and open the file with your code editor.

Lines 197 -199 determine what input objects are used for the tags. We want to add static buttons for choosing tags.

Replace lines 197 – 199 with our custom code.

The code to add custom, static buttons looks like this:

<input type=”checkbox” name=”group-tags” id=”group-tags” value=”insert tag name here” />insert tag name here<br>

And here is the code in action with two check boxes. One is a Business tag, and the other is an Event tag.

<label for=”group-tags”>This Group is a;</label>
<input type=”checkbox” name=”group-tags” id=”group-tags” value=”Business” />Business<br>
<input type=”checkbox” name=”group-tags” id=”group-tags” value=”Event” />Event<br>

If you want to remove the Tag Chooser you simply remove line 201 which is:

gtags_show_tags_chooser();

now save the file and make sure you overwrite the file on your server.

Keep in mind, if you auto update the plugin it will break this edit. You will then have to redo the steps above.