Viewing your WordPress site activity with Stream

Often, when multiple people are all collaborating on a single WordPress site, you may need to track user activity. In this article, we will introduce you to the Stream plugin for WordPress which will monitor all activity that occurs within your WordPress site such as updated posts, updated pages, or any configuration changes made. In Read More >

How to create a basic profile in Logaholic

After installing Logaholic onto your hosting account, you will need to create a profile in order to use it properly. The instructions below will guide you on how to create your first profile in Logaholic. Creating a profile in Logaholic Log into the Logaholic dashboard.     The first page is a list of profiles. Read More >

How to Change Your Magento URL

There may be times when you need to change the URL, or domain name for your Magento website. For example, you may want to change your URL from www.example.com to example.com. In this guide I will show you how to change the URL for your Magento website. Change Magento Site URL in Dashboard Change Magento Site Read More >

Setting your log file path in Logaholic

After installing your Logaholic program, you will need to set the path for your logfiles. This article will guide you on how to do that. How to set your log file path in Logaholic Log into your Logaholic application. Once you have arrived at the main page, locate your profile on the profile list and Read More >

Logging into Logaholic

After installing your Logaholic stats program, you will want to know how to log into it for the first time. This article explains how to do that. How to log into Logaholic When you installed logaholic, you likely entered a directory name where it was installed. This name will be part of the URL you Read More >

Showing your Facebook page photos in WordPress

If you have a website for your business, chances are that you have a Facebook page as well. In this article, we will show you how to use the Facebook Photo Slider plugin to easily display your Facebook page’s images within your WordPress site with an attractive and efficient slider. Note: This plugin only works Read More >

Setting up the Facebook SDK

Within your web applications, you may need to interact with Facebook. Thanks to to the Facebook SDK, you can easily connect and manipulate the data that you need. In this article, we will be showing you how to gather the required files to use the Facebook API. Obtain the Facebook SDK for PHP First, visit Read More >

Resetting your admin password in PrestaShop 1.6

If you happen to forget your admin password (you know, the one that you made so complex no one including yourself can remember it?) never fear! PrestaShop has an easy way to reset it so you can access your admin dashboard once again. How to reset your admin password Visit your PrestaShop admin dashboard login Read More >

Configuring Text Message Notifications in WordPress

Knowing when various things happen within your WordPress site is always critical and sometimes hard to keep up with, especially if you have multiple individuals all making changes. Having a notification system in place that alerts you anywhere you are via text message of changes that are made can make your life a lot easier. Read More >

The wp_delete_post() WordPress function

At times, you may need to delete a post using a WordPress plugin. For example, if you had a calendar system that created posts for events, and the event was canceled or happened in the past, the ability to automatically delete posts can be quite useful. In this article, we will show you how to Read More >

The has_post_thumbnail() WordPress function

Within your WordPress themes or plugins, you may need to determine if a post has a featured image attached to it. Using the has_post_thumbnail() function, you will be able to easily identify if a post has a featured image or not. In this article, we will show you how to use the has_post_thumbnail() WordPress function. Read More >

The get_the_ID() WordPress function

If you need to obtain the post ID from your posts, you can easily use the get_the_ID() WordPress function. In this article, we will introduce you to the get_the_ID() function. This function can only be used inside the WordPress loop. Basic usage <?php get_the_ID(); ?> This function does not have any parameters that can be Read More >

WordPress WP_Post objects

When using WordPress functions such as get_post(), the information will be stored within WP_Post objects. In this article, we will show you what is stored within those WP_Post objects, as well as how to access them. If you would like more information on creating WordPress plugins, see our tutorial series on creating your first WordPress Read More >

Using The WordPress Loop

When developing WordPress themes, it’s important to know about the loop. The WordPress Loop is a function that grabs posts from your database, and allows you to display multiple posts on a page, such as the index page of a blog. There are many advanced variations of the loop, but in this article we’ll focus Read More >

The get_boundary_post() WordPress function

In the event that you need to get either the last or first post based on published date within your WordPress plugin or theme, you can use the get_boundary_post() function. In this article, we will show you how to use the get_boundary_post() function. If you would like more information on creating WordPress plugins, see our Read More >