Viewing your WordPress site activity with Stream Updated on June 9, 2023 by Jeff Matson 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 Updated on January 22, 2026 by Scott Mitchell 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 Updated on September 14, 2023 by InMotion Hosting Contributor 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 Updated on August 16, 2021 by Scott Mitchell 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 Updated on October 13, 2020 by Scott Mitchell 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 Updated on August 16, 2021 by Jeff Matson 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 Updated on June 8, 2023 by Jeff Matson 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 Updated on July 14, 2020 by Scott Mitchell 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 Updated on February 9, 2022 by Jeff Matson 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 >
How to move your Joomla application from a subfolder to the root folder. Updated on August 16, 2021 by Scott Mitchell It is always a good idea to test your new site in a non-live location so that you can work with it, test, and make changes prior to making it live. Most often this is done in a subfolder, for instance https://example.com/test when example.com is the live site that visitors will see. However, once you Read More >
Accessing the Raw Access Logs in cPanel Updated on November 29, 2022 by InMotion Hosting Contributor In cPanel, you can access your website’s raw access logs to see the traffic to your website before it is turned into a report by statistics software. This is great for taking a closer look at the type of requests your site is getting. To get the most out of your raw access logs, you Read More >
MailPoet Newsletters WordPress plugin vulnerability – update immediately Updated on August 16, 2021 by Jeff Matson On July 4th, 2014 a vulnerability was discovered in the MailPoet Newsletters plugin for WordPress that allows code to be remotely injected into any sites that are running versions 2.6.7 or older. Am I affected? Thankfully, the developer of the MailPoet Newsletters plugin has released an update that resolves the security vulnerabilities. If you are Read More >
The wp_delete_post() WordPress function Updated on May 27, 2021 by Jeff Matson 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 Updated on July 8, 2014 by Jeff Matson 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 Updated on August 16, 2021 by Jeff Matson 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 Updated on August 16, 2021 by Jeff Matson 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 Updated on May 14, 2024 by Jeff Matson 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 Updated on May 26, 2021 by Jeff Matson 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 >