Frequently Asked Questions

This section is an ongoing doc of FAQs that people have asked regarding WordPress themes...

When I activate the theme I get errors that say "Warning: include(...) No such file or directory..." or the screen is blank on my live server

Depending on where you aquired the theme, it is possible that the theme folder name has gotten changed. If you look at the theme-config.php file in the root of the theme folder, there is a define("NBS_THEME_FOLDER") statement that indicates what the theme folder should be named -- or, rather, what the theme is expecting the theme folder to be named.

You can either change the name of the theme folder match the name that is set there in the file currently *or* you can edit the theme-config.php file and change the define("NBS_THEME_FOLDER", "original"); to define("NBS_THEME_FOLDER", "your-custom-name") or whatever your folder name is or what you want it to be. The 2 have to match.

When I activate the theme, the screen is a blank screen...

Refer to the previous question above to see if this is the same issue. If following the steps there do not solve the issue for you, please contact support

The menu doesn't look it does in the preview screenshots/demo site

You have to set up a menu in the WordPress dashboard to make it appear as you want it to. To do this, please see the Setting Up & Configuring the Menu section.

How do I make the blog page display as the first page that people see when they come to my website?

In this section, it was shown how to set page named "Home" to be the first page that is seen when users go to your site. You just need to set the front page to "Blog" instead of "Home"

My shortcodes aren't working the way I want them to!

Please do the following to make sure that you've done everything correctly...

  1. Refer to the information on the specific shortcode and check that you have entered in everything properly (exactly as the given examples have been done)
  2. If it is still not working properly, please try some of the suggestions found in the Adjusting Shortcodes section.

How do I create the image hover effect with the magnifying glass icon, video icon, etc?

This can be accomplished by setting the class of the image to 1 of 4 values...

  • slickHoverPicture
  • slickHoverZoom
  • slickHoverVideo
  • slickHoverPlus

So for example...

<img src="https://www.9bitstudios.com/images/wordpress-themes/some-image.png" class="slickHoverVideo" alt="" width="100" height="45">

You can also do this if using a shortcode...

[image path="https://www.yourdomain.com/wp-content/uploads/2010/12/redpuddle.jpg" border="false" class="slickHoverPlus" alt="red puddle"]

How do I set a custom background image for individual pages?

Look for the Custom Field box in whatever WordPress page you want to edit. Look for the "Background Image" field and enter the path to the background image that you want to use. Note that you also have to enable background images by turning on a setting in the theme options.