I have not found very clear instructions or support on how to download and install the QuickBooks extension for CiviCRM in my WordPress + CiviCRM installation so I am going to share the steps I took to accomplish this here, for future reference for myself as much as anyone 🙂 First, this is the extension that Read more…
I ran into an issue today on a one-page scrolling website that is built using fullPage.js and therefore uses anchor links in the page URL to get people to the right place on the website. It is a WordPress website and on the blog, I naturally wanted to incorporate a social media sharing plugin. The Read more…
I recently used the fullPage.js script on a website that I am working on and ran into a bit of trouble getting the section content to fade in nicely when it was scrolled into view. Here is the way I was able to accomplish that feature. Following the instructions on how to incorporate fullPage.js into Read more…
Here is the code I use in my WordPress template files to add a conditional statement which checks to see if a page is set in the dashboard as the site home page:
I have found a way to use Google analytics to track traffic on a parked domain by using a PHP conditional statement to check which domain a visitor is accessing your site with and to render the correct Google analytics javascript code based on the domain. First, make sure to set up a Google analytics Read more…
This morning I spent some time figuring out how to add an incrementing number counter inside a WordPress “while” loop and here is how I finally accomplished it: I defined the first number (in this case, the variable $postnum) before the “while” loop started, like so: Then I added my div with the incrementing number Read more…