Securely Share Login Details

If you want us to log into your site to assist with an issue then emailing the password is not the safest practice. There are better ways to do it.

  • Never send a password by email.
  • Never send us your own login details. Create a new temporary account instead.
  • Always delete the temporary account when we’re done helping you.
  • Make a full website backup before we work on it.

Add temporary WordPress admin access

WordPress provides a way for you to give us admin access without emailing a password.

  1. Go to Users > Add New in the WordPress dashboard to create a temporary account for us.
  2. Use ujsoftware for Username.
  3. Use info@ujsoftware.com for Email.
  4. Use UJ Software for First Name.
  5. Leave Send User Notification checked.
  6. Choose Administrator for Role.
  7. Check 2FA Grace Period (if this field is on your form)
  8. Click Add New User then tell us you’ve made an account for us (don’t send the password).
  9. Make a reminder to delete this account when we’re done helping you.
add new temporary admin user menu

WordPress will email us a link that we can click to choose a new password. This way the password itself is never sent via email. The link will expire and we will not store the password. Instead, we’ll log in and choose “Remember Me”. You’ll then delete the account when we’re done.

delete new temporary admin user menu

Contacts

Upload and Crop Images

The video demonstrates how to upload images and crop square thumbnails for the contact image. The image must be square and at least 150 by 150 pixels, or the circular cutout will look elliptical.

Enter Contacts

The video shows how to enter a new contact with the custom posts. All fields, except for the name, are optional. The category “Contacts” and a menu order gets assigned to display these contacts in a predetermined order.

Layout samples

The custom contacts posts can be displayed in several layouts. Below are four sample layouts: Card, vertical card, round image, and raised image.

Card
Man Wearing Black Formal Suit Jacket
CEO

John Doe

Man Wearing White Dress Shirt and Black Blazer
CFO

Dave Moneypenny

Woman In Blue Clothes Smiling
COO

Samantha Cunningham

Man in Black Suit Jacket Holding Silver Laptop Computer
CIO

Thomas Avignon

Confident Businesswoman
VP

Jane Mulligan

General Manager

William Lee

Vertical Card
Man Wearing Black Formal Suit Jacket
CEO

John Doe

Man Wearing White Dress Shirt and Black Blazer
CFO

Dave Moneypenny

Woman In Blue Clothes Smiling
COO

Samantha Cunningham

Man in Black Suit Jacket Holding Silver Laptop Computer
CIO

Thomas Avignon

Confident Businesswoman
VP

Jane Mulligan

General Manager

William Lee

Round Image
Man Wearing Black Formal Suit Jacket
CEO

John Doe

Man Wearing White Dress Shirt and Black Blazer
CFO

Dave Moneypenny

Woman In Blue Clothes Smiling
COO

Samantha Cunningham

Man in Black Suit Jacket Holding Silver Laptop Computer
CIO

Thomas Avignon

Confident Businesswoman
VP

Jane Mulligan

General Manager

William Lee

Raised Image
Man Wearing Black Formal Suit Jacket
John Doe
CEO
Man Wearing White Dress Shirt and Black Blazer
Dave Moneypenny
CFO
Woman In Blue Clothes Smiling
Samantha Cunningham
COO
Man in Black Suit Jacket Holding Silver Laptop Computer
Thomas Avignon
CIO
Confident Businesswoman
Jane Mulligan
VP
William Lee
General Manager

Displaying Custom Post Types

We use the Display Posts plugin to query and display our custom post types in WordPress. The plugin selects the posts by any combination of type, status, category, tag, meta key, or search query and sorts them by date, title, menu order, or meta value – to name just the most important ones. Open, close, and output filters allow full control over the output.

This shortcode displays all FAQs with the category ‘general’ ordered by the menu order in an accordion. The message “No FAQs at this time” is shown in case the selection has no results.

[display-posts post_type="faq" category="general" no_posts_message="No FAQs at this time" wrapper="accordion"]

General Display Posts Query and Display Parameters

The following parameters are common for all custom post types. In general, all parameters listed in the display-posts documentation can be used but our custom post types extend or override some of them. Only those differences are listed here.

post_type
Specify which post type to use. You can use a default one (post or page), or a custom post type you’ve created.
Default: post
Options include: alert, booking, contact, event, faq, fundraiser, news, testimonial
Example: [display-posts post_type="event"]

wrapper_id
Specify a unique ID to be used on the wrapper of this listing.
Default: empty
Note: The wrapper_id is ignored on accordion and carousel wrappers because the plugin must generate its own ID.
Example: [display-posts category="cars" wrapper_id="cars-listing"]

posts_per_page
How many posts to display.
Default: -1 (list all posts)
Example: [display-posts posts_per_page="5"]

order
Specify whether posts are ordered in descending order (DESC) or ascending order (ASC).
Default: ASC
Example: [display-posts order="DESC"]

orderby
Specify what the posts are ordered by.
Default: menu_order
Options include: date, modified, rand, comment_count, menu_order, ID, author, title, name, type, meta_value, meta_value_num, post__in
Example: [display-posts orderby="date"]

listing_class
Specify the class name used for each post.
Default: listing-item
Example: [display-posts include_content="true" listing_class="dps-listing-item"]

layout
Custom parameter to specify which template part layout should be used. See the template parts tutorial.
Default: empty
Example: [display-posts layout="dps-listing-item"]

interval
The amount of time to delay between automatically cycling to the next item for a carousel in milliseconds. If 0, the carousel will not automatically cycle.
Default: 5000
Example: [display-posts wrapper="carousel" interval="3000"]

arrow_color_class
Specify the class name used for the arrows and dots at a carousel. You can use “dark” or “light” depending on the background color.
Default: dark
Example: [display-posts arrow_color_class="light"]

left_arrow
Show the left arrow at a carousel.
Default: true
Example: [display-posts left_arrow="false"]

right_arrow
Show the right arrow at a carousel.
Default: true
Example: [display-posts right_arrow="false"]

carousel_width
The width of the carousel content in percent. The left and right arrows each use 15% and will be on top of the content if the percentage is greater than approximately 85%.
Default: 70
Example: [display-posts right_arrow="false" left_arrow="false" carousel_width="100"]

carousel_dots
Show the indicator dots below the slider.
Default: true
Example: [display-posts carousel_dots="false" right_arrow="false" left_arrow="false" carousel_width="100"]

transient_key
This should be a unique key you define to cache the output. Each key will be cached separately, so if you are using the same shortcode on multiple pages you can use the same key for each one (cache it once rather than separately). Internally, the name of the key is expanded with the word “dps”, the post type, and a checksum of the parameters. Whenever a new post is created or an existing one is modified, all caches for this post type are deleted to ensure accurate data.
Default: none
Example: [display-posts transient_key="all_posts" transient_expiration="2 * DAY_IN_SECONDS"]

transient_expiration
This is how long (in seconds) the data should be cached. You can specify a number (ex: 86400), or use one of the time constants to make it easier to read (ex: WEEK_IN_SECONDS). You can also multiply the constants (ex: 2 * DAY_IN_SECONDS ).
Default: none
Example: [display-posts transient_key="all_posts" transient_expiration="WEEK_IN_SECONDS"]

Featured Image

The featured image in our custom posts should always have a square thumbnail image defined. Otherwise, the round images will look like ovals. Follow these steps to define a square thumbnail image:

  • Media Manager
  • Click on the image
  • Click on “Edit Image” under the image
  • Select “Thumbnail” under “Apply changes to:”
  • Click on “Crop”
  • Select the thumbnail area on the image
  • Make the width and height under the Image Crop Selection the same
  • Click on “Crop” again
  • Click on “Save”

Display Parameters for Alerts

There are no additional display parameters for the custom post type Alert.

Display Parameters for Generic Post

wrapper
What type of HTML should be used to display the listings. It can be an unordered list (ul), ordered list (ol), divs (div), accordion, or carousel (slider).
Default: ul
Example: [display-posts wrapper="accordion"]

icon_class
Specify the class name used for the icon.
Default: icon
Example: [display-posts post_type="news" icon_class="my-icons"]

title_class
Specify the class name used for the title. The title content depends on the post type. It could be the questions at a FAQ, the headline at an Event, or the name at a Contact or Testimonial.
Default: title
Example: [display-posts post_type="news" icon_class="my-titles"]

image_class
Specify the class name used for the featured image.
Default: image
Example: [display-posts post_type="news" image_class="my-images"]

icon_max_height
Specify the maximum optional icon height in px.
Default: 50
Example: [display-posts post_type="news" icon_max_height="75"]

image_size
Specify an image size for displaying the featured image, if the post has one. The image_size can be set to thumbnail, medium, large (all controlled from Settings > Media), or a custom image size.
Default: medium
Example: [display-posts post_type="news" image_size="large"]

include_title
Include the post’s title. The title content depends on the post type. It could be the questions at a FAQ, the headline at an Event, or the name at a Contact or Testimonial.
Default: true
Example: [display-posts post_type="news" include_title="false"]

include_icon
Include the post’s icon if there is a default icon for the post type.
Default: true
Example: [display-posts post_type="news" include_icon="false"]

include_content
Specify whether or not to include the post content, usually the text field. Note that [display-posts] will be stripped out of the content to prevent infinite loops
Default: true
Example: [display-posts post_type="news" include_content="false"]

include_image
Specify whether or not to include the featured image, if the post has one.
Default: true
Example: [display-posts post_type="news" include_content="false"]

read_more
Specify whether or not to show only the content which comes before the <!--more--> tag at a carousel. The user has to click a “read more” button to see the full text.
Default: true
Example: [display-posts post_type="news" read_more="false"]

include_date
Specify whether or not to include the date at an event.
Default: true
Example: [display-posts post_type="news" include_date="false"]

date_class
Specify the class name used for the date at an event.
Default: date
Example: [display-posts post_type="news" date_class="my_dates"]

date_format
Specify the display date format used for the date at an event.
Default: m/d/Y
Example: [display-posts post_type="news" date_format="(m/d/Y)"]

time_format
Specify the display time format used for the time at an event.
Default: g:i a
Example: [display-posts post_type="news" time_format="H:i"]

Display Parameters for Testimonials

wrapper
What type of HTML should be used to display the listings. It can be an accordion or a carousel (slider).
Default: carousel
Example: [display-posts wrapper="accordion"]

size
Specify the size of the testimonials. Options are “large” for the image to the left of the text or “small” for the image on top of the text.
Default: large
Example: [display-posts post_type="testimonial" size="small"]

image_max_height
Specify the maximum height of the image in pixels.
Default: 150
Example: [display-posts post_type="testimonial" image_max_height="200"]

read_more
Specify whether or not to show only the content which comes before the <!--more--> tag at a carousel. The user has to click a “read more” button to see the full text.
Default: true
Example: [display-posts post_type="testimonial" read_more="false"]

title_class
Specify the class name used for the name.
Default: title
Example: [display-posts posts_type="testimonial" title_class="my-titles"]

job_title_class
Specify the class name used for the job title(s).
Default: job-title
Example: [display-posts posts_type="testimonial" job-title_class="my-job-titles"]

image_class
Specify the class name used for the image.
Default: image
Example: [display-posts post_type="testimonial" image_class="my-images"]

text_class
Specify the class name used for the testimonial text.
Default: text
Example: [display-posts post_type="testimonial" text_class="my-text"]

include_title
Include the name.
Default: true
Example: [display-posts post_type="testimonial" include_title="false"]

include_job_title
Include the job title(s).
Default: true
Example: [display-posts post_type="testimonial" include_job_title="false"]

include_stars
Include the star rating.
Default: true
Example: [display-posts post_type="testimonial" include_stars="false"]

include_image
Include the featured image.
Default: true
Example: [display-posts post_type="testimonial" include_image="false"]

Display Parameters for Bookings

wrapper
What type of HTML should be used to display the listings. It can be an “accordion” or a “carousel” (slider).
Default: accordion
Example: [display-posts post_type="bookings" wrapper="carousel"]

title_class
Specify the class name used for the month and year title at the accordion.
Default: title
Example: [display-posts posts_type="booking" title_class="my-titles"]

legend_class
Specify the class name used for the legend under the calendar.
Default: legend
Example: [display-posts posts_type="booking" legend_class="my-legends"]

calendar_class
Specify the class name used for the calendar.
Default: calendar-table
Example: [display-posts posts_type="booking" legend_class="my-calendars"]

calendar_item_class
Specify the class name used for the calendar days.
Default: calendar-table-item
Example: [display-posts posts_type="booking" legend_class="my-calendar-items"]

include_legend
Include the legend under the calendar.
Default: true
Example: [display-posts post_type="testimonial" include_legend="false"]

Display Parameters for Contacts

wrapper
What type of HTML should be used to display the listings. It can be a card, a vertical card (vertical-card), a round-image (round-image), or a raised image (raised-image).
Default: card
Example: [display-posts post_type="contact" wrapper="accordion"]

image_max_height
Specify the maximum height of the image in pixels for wrappers “round-image” and “raised-image”.
Default: 150
Example: [display-posts post_type="contact" image_max_height="200" image_max_width="200"]

image_max_width
Specify the maximum width of the image in pixels for wrappers “round-image” and “raised-image”.
Default: 150
Example: [display-posts post_type="contact" image_max_height="200" image_max_width="200"]

max_width
Specify the maximum width in pixels of the cards for wrappers “card” and “vertical-card”. Both use an image of size “medium” which is usually 300 pixels wide.
Default: 300 for “card” and 540 for “vertical-card”
Example: [display-posts post_type="contact" wrapper="vertical-card" max_width="600"]

name_class
Specify the class name used for the name.
Default: name
Example: [display-posts post_type="contact" wrapper="card" name_class="my-names"]

position_class
Specify the class name used for the job position.
Default: position
Example: [display-posts post_type="contact" wrapper="card" position_class="my-positions"]

image_class
Specify the class name used for the image.
Default: image
Example: [display-posts post_type="contact" wrapper="card" image_class="my-images"]

text_class
Specify the class name used for the text.
Default: text
Example: [display-posts post_type="contact" wrapper="card" text_class="my-text"]

social_listing_class
Specify the class name used for the social listing.
Default: social_list
Example: [display-posts post_type="contact" wrapper="card" social_listing_class="my-social-list"]

social_item_class
Specify the class name used for the social items.
Default: social-item social
Example: [display-posts post_type="contact" wrapper="card" social_item_class="my-social-item"]

email_class
Specify the class name used for the social email item.
Default: social-item email
Example: [display-posts post_type="contact" wrapper="card" email_class="my-social-email-item"]

phone_class
Specify the class name used for the social phone item.
Default: social-item phone
Example: [display-posts post_type="contact" wrapper="card" phone_class="my-social-phone-item"]

include_name
Include the name.
Default: true
Example: [display-posts post_type="contact" wrapper="vertical=card" include_name="false"]

include_position
Include the position.
Default: true
Example: [display-posts post_type="contact" wrapper="vertical=card" include_position="false"]

include_text
Include the text.
Default: true
Example: [display-posts post_type="contact" wrapper="vertical=card" include_text="false"]

include_image
Include the image.
Default: true
Example: [display-posts post_type="contact" wrapper="vertical=card" include_image="false"]

include_email
Include the email.
Default: true
Example: [display-posts post_type="contact" wrapper="vertical=card" include_email="false"]

include_phone
Include the phone.
Default: true
Example: [display-posts post_type="contact" wrapper="vertical=card" include_phone="false"]

include_social
Include the social and business accounts.
Default: true
Example: [display-posts post_type="contact" wrapper="vertical=card" include_social="false"]

Custom Posts Field Names

The title (the_title()) depends on the post type:

  • Alert => not used
  • Booking => not used
  • Contact => Name
  • Event => Short Description
  • FAQ => Question
  • Fundraiser => Short Description
  • News => Short Description
  • Testimonial => Name

Alerts

  • text (type wysiwyg)
  • color (type select)

Booking

  • start_date (type date_picker)
  • end_date (type date_picker)
  • status (type radio)
  • comment (type wysiwyg)

Contacts

  • position (type text)
  • email (type email)
  • phone (type text)
  • text (type wysiwyg)
  • twitter_url (type url)
  • facebook_url (type url)
  • instagram_url (type url)

Event

  • image (type image)
  • start_date (type date_time_picker)
  • end_date (type date_time_picker)
  • text (type wysiwyg)
  • image_position (type radio)

FAQ

  • text (type wysiwyg)
  • image (type image)
  • image_position (type radio)

Fundraiser

  • text (type wysiwyg)
  • image (type image)
  • image_position (type radio)

News

  • text (type wysiwyg)
  • image (type image)
  • image_position (type radio)

Testimonial

  • picture (type image)
  • gender (type radio)
  • title (type wysiwyg)
  • stars (type number)
  • text (type wysiwyg)

Change Cover Image

Follow these steps to change the cover image:

  • From the WordPress Menu
  • Media -> Add New
  • Drag and Drop the new image
  • Wait until you can see the thumbnail of the image
  • Appearance -> Customize
  • Header Banner
  • Button “Add new image”
  • Choose the image from the media library
  • Follow screens to Crop and Save
  • Button “Publish”

Note: WordPress always leaves the original uploaded image file and only works with copies. Everything can be undone if necessary.

MailPoet 3 Premium

The MailPoet 3 Premium plugin is the most popular email and newsletter solution for WordPress. With a free account, which we signed up for on your behalf, you can send 5,000 emails per month to up to 1,000 subscribers through MailPoet Sending Service for free. Their high-availability service sends +30 million emails each month with a 98.5% deliverability rate. We authenticated info@yourdomain.com as the sending address with MailPoet and configured the sender domain authentication to ensure email deliverability.

The sign-up form is at the bottom of each page above the footer:

MailPoet 3 Sample Form

When the user subscribes with a valid email address, the box informs about the confirmation email:

MailPoet 3 Sample Form Submitted

The sign-up confirmation often called “double opt-in”, ensures your subscribers willingly joined your email list. All new subscribers will first receive a “confirmation email” from the MailPoet plugin. Inside this email, there is a link that must be clicked in order to activate the subscription to the newsletter. If they don’t click the link and confirm their subscription, they will remain “Unconfirmed” and will not receive any newsletters. The sign-up confirmation option is enforced when sending emails with MailPoet Sending Service, and there’s no option to disable it. See the checklist before importing an old email address list into Mailpoet.

When the user clicks on the “I confirm my subscription!” link from the confirmation email, he is directed to this webpage:

Double Opt-In Confirmation

Further reading:

Contact Form 7

The Contact Form 7 plugin is the defacto standard for contact forms under WordPress. We install the below contact form either on the homepage or if your webpage has one, on the contact page. The name, email, and subject fields are mandatory, the message is optional. The form is protected by an invisible Google ReCaptcha.

Sample Contact Us Form

The Submit button triggers an email to the info@yourdomain.com address with the contents of the form in the email body and informs the user that the message has been sent.

The plugin Flamingo, from the same developer as Contact Form 7, saves all messages through contact forms into the database. Otherwise, you may lose important messages forever if your mail server has issues or you make a mistake in mail configuration. It keeps an email address book and a list of all messages with detailed information which you can look up in WordPress anytime.

Events

The event posts can be used to create calendar events with a detailed description. The title is the event name. Each event has a mandatory start date field and an optional end date for longer events. The detailed text field allows shortcodes but no further formatting other than linebreaks. Each post can display a different thumbnail image to visually highlight the type of event. If none is provided, it will use the image from the general settings. A second, larger image can be shown to the right of the detailed description. In the final layout, all entries are ordered by the start date.

Add an event

The video shows how to enter a few dummy events. The first entry doesn’t set any images. The second one picks a different thumbnail image. The third FAQ picks a different thumbnail image as well as the additional image for the text area. Finally, you see the list of entered events. Sorting by the start date column rearranges the posts in the order they will later show up.

Layout samples

The custom events posts can be displayed in several layouts. Below are four sample layouts: Slider, accordion, unordered list, and flat.

Slider
Accordion

An Elderly Couple Meditating in the Park
Join us for Yoga Meditation starting at 10am. The event is outdoors, weather permitting.

Lorem ipsum dolor sit amet consectetur adipiscing elit class dictum luctus taciti, vivamus accumsan pretium habitasse ad vulputate parturient praesent vel velit dignissim orci, ex nullam fames id platea justo etiam condimentum bibendum ultrices. Nisl montes porttitor mus consectetur justo ridiculus curae eleifend mi facilisis, mollis primis vulputate nibh euismod per sapien tristique semper venenatis, auctor arcu hac ornare pretium dapibus fermentum augue dictumst. Justo quis porta nunc nec purus dis potenti lacinia, vulputate pharetra netus torquent viverra venenatis varius curabitur montes, dictumst erat fermentum scelerisque cubilia penatibus risus.

Join us during the 1st April week for birdwatching sessions in the afternoon.

Lorem ipsum dolor sit amet consectetur, adipiscing elit habitasse facilisis, velit orci ultricies netus. Nec accumsan dictumst nascetur ad ornare ridiculus, fermentum turpis vestibulum eros scelerisque, magna auctor ante pretium tristique. Efficitur dapibus inceptos dignissim in vivamus phasellus taciti facilisi leo, id ad ipsum nibh congue volutpat tristique a, curae ridiculus ac porta magna praesent vestibulum parturient.

Come and visit us from 10am - 2pm. Lunch provided.

Lorem ipsum dolor sit amet consectetur adipiscing elit cubilia nullam, volutpat id primis non vestibulum vitae aliquet quisque ad, mauris egestas vivamus ullamcorper tempus duis libero suscipit. Volutpat sollicitudin vivamus duis gravida euismod bibendum mauris eget libero malesuada elit, velit mollis etiam fames dictum curae egestas iaculis ultricies sapien. Fermentum lobortis phasellus conubia velit integer euismod ex, est neque elit penatibus adipiscing finibus vehicula, maecenas curabitur condimentum dictumst sed praesent.
Unordered List
  • Yoga Meditation

    Yoga
    04/02/2022

    An Elderly Couple Meditating in the Park
    Join us for Yoga Meditation starting at 10am. The event is outdoors, weather permitting.

    Lorem ipsum dolor sit amet consectetur adipiscing elit lobortis laoreet, turpis velit magna vulputate eros urna auctor varius euismod, habitant eleifend sem faucibus inceptos tempus aenean enim. Fringilla consequat adipiscing ex elit maximus eros id suscipit integer, at viverra ante proin donec ac lobortis arcu efficitur sagittis, commodo nisi nulla parturient dignissim amet blandit senectus. Finibus quisque aptent inceptos ornare tortor enim, nam semper etiam conubia montes diam, eget nostra curae magna id.
  • Flying Bird

    Birdwatching
    04/04/2022 - 04/08/2022

    Join us during the 1st April week for birdwatching sessions in the afternoon.

    Lorem ipsum dolor sit amet consectetur adipiscing, elit facilisis quam molestie eget, posuere nisl natoque praesent aliquam. Aliquam tellus quis urna platea proin felis bibendum aptent, blandit pretium varius quam ullamcorper neque fermentum nec ridiculus, integer primis malesuada accumsan consequat nostra facilisis. Euismod imperdiet molestie neque dignissim eleifend quisque ac, magna montes mauris habitasse justo eget lorem, velit tortor vestibulum a felis torquent.
  • Generic event image

    Open House
    04/09/2022

    Come and visit us from 10am - 2pm. Lunch provided.

    Lorem ipsum dolor sit amet consectetur adipiscing elit laoreet ad, magnis suspendisse aliquet nascetur curae phasellus parturient ex, justo tempus ligula faucibus diam eros rutrum risus. Maximus gravida molestie sodales curabitur morbi suspendisse luctus donec ornare dignissim consequat, praesent ante maecenas porta accumsan lobortis posuere risus vehicula primis, laoreet aliquam volutpat ultricies sociosqu euismod justo mi hac dolor. Ullamcorper nulla maximus consectetur scelerisque mi magnis iaculis ex natoque, sapien tempus pharetra vivamus nibh mauris vehicula ornare dignissim facilisi, vulputate metus taciti auctor semper hendrerit tempor risus.
Flat
Yoga Meditation

Yoga
04/02/2022

An Elderly Couple Meditating in the Park
Join us for Yoga Meditation starting at 10am. The event is outdoors, weather permitting.

Lorem ipsum dolor sit amet consectetur adipiscing elit, quis praesent porta bibendum mi eu libero nibh, tincidunt ante at tortor non viverra. Fringilla sollicitudin suspendisse ante accumsan metus luctus odio suscipit per dui, bibendum torquent auctor montes sagittis porta volutpat elementum. Venenatis molestie odio maecenas himenaeos curabitur cras vulputate luctus taciti erat iaculis sociosqu, est litora potenti egestas felis hendrerit turpis dis hac nisl.
Flying Bird

Birdwatching
04/04/2022 - 04/08/2022

Join us during the 1st April week for birdwatching sessions in the afternoon.

Lorem ipsum dolor sit amet consectetur adipiscing elit risus erat magnis donec etiam, consequat ridiculus torquent non molestie iaculis felis platea et nec. Quis vulputate lacinia montes augue per in euismod pretium fermentum, varius nunc maecenas ultrices ante eleifend nostra faucibus, sapien taciti nisl viverra scelerisque hendrerit urna porta. Semper turpis vestibulum ad justo egestas consequat orci, aptent et arcu feugiat est proin nascetur facilisi, gravida aliquet dictum taciti nisi condimentum.
Generic event image

Open House
04/09/2022

Come and visit us from 10am - 2pm. Lunch provided.

Lorem ipsum dolor sit amet consectetur adipiscing elit purus tellus facilisis per, litora rhoncus volutpat cursus libero pellentesque nam natoque mi pretium scelerisque, dictum ligula quam blandit consequat conubia lacinia auctor platea nec. Ex fames morbi praesent diam ridiculus blandit tellus convallis nam tempor potenti ligula, parturient lacus cubilia urna posuere pharetra litora etiam aliquet vulputate suspendisse. Ullamcorper nec imperdiet duis est morbi lacus tincidunt euismod maximus etiam, proin facilisi at hac blandit sagittis potenti purus aptent.

Site Kit by Google

Site Kit is the official WordPress plugin from Google for insights about how people find and use your site. Site Kit is the one-stop solution to deploy, manage, and get insights from critical Google tools to make the site successful on the web. It provides authoritative, up-to-date insights from multiple Google products directly on the WordPress dashboard for easy access, all for free.

Bringing the best of Google tools to WordPress

Site Kit includes powerful features that make using these Google products seamless and flexible:

  • Easy-to-understand stats directly on your WordPress dashboard
  • Official stats from multiple Google tools, all in one dashboard
  • Quick setup for multiple Google tools without having to edit the source code of your site
  • Metrics for your entire site and for individual posts
  • Easy-to-manage, granular permissions across WordPress and different Google products

Supported Google tools

Site Kit shows key metrics and insights from different Google products:

  • Search Console: Understand how Google Search discovers and displays your pages in Google Search. Track how many people saw your site in Search results, and what query they used to search for your site.
  • Analytics: Explore how users navigate your site and track goals you’ve set up for your users to complete.
  • AdSense: Keep track of how much your site is earning you.
  • PageSpeed Insights: See how your pages perform compared to other real-world sites. Improve performance with actionable tips from PageSpeed Insights.
  • Tag Manager: Use Site Kit to easily set up Tag Manager- no code editing required. Then, manage your tags in Tag Manager.
  • Optimize: Use Site Kit to easily set up Optimize- no code editing required. Then, set up A/B tests in Optimize.

Installation

We installed and configured the Site Kit for you as part of our services. It will collect the analytics data starting on day 1:

Google Site Kit Overview Screen

PublishPress Future (Expire Posts)

The PublishPress Future plugin allows you to add an expiration date to posts. pages and other content types. When your post is automatically unpublished, you can delete the post, change the status, or update the post categories.

Here’s an overview of what you can do with PublishPress Future:

  • Choose expiry dates for content in any post type.
  • Select expiry dates in the right sidebar when editing posts.
  • Modify, remove or completely delete content when the expiry date arrives.
  • Modify expiry dates using “Quick Edit” and “Bulk Edit”.
  • Receive email notifications when your content expires.
  • Show expiry dates in your content, automatically or with shortcodes.
Post Expiration Menu Edit

Enable Post Expiration while editing a post or page.

Post Expiration Menu Quick Edit

Enable Post Expiration in the quick-edit menu.

Log in to Business Accounts

If you haven’t done so already, follow the instructions on how to add the Google Master Account to your device.

Google My Business

  • Go to Google My Business
  • If you don’t see the business listed, switch the account by clicking on the round symbol in the upper right corner. Then select the Google Master Account.

Microsoft Bing Places

Yelp

  • Go to Yelp
  • Continue with Google and pick the Google Master Account
  • Note: Yelp is the only service that doesn’t accept a logo for the avatar image. You will not be able to perform actions like replying to reviews unless you have uploaded an avatar image with a discernable face.

Instagram

  • Go to Instagram
  • Log in with credentials from spreadsheet