Knowledge Base

Find solutions for top issues, common error messages and troubleshooting guides

Deactive Mobile View

http://colorlabs.co/PYdRmZ

We buil theme that has a responzive browser, include it for mobile. But not every user like to use and want their site has a responsive for mobile too, In this case, when you wanna deactive mobile view for your site, just take a look at style.css file.

Find codes that beginning comment / have text something like this :

/* #Responsive For tablet

Or event use comment like this :

/* Mobile

Remove all the code start from that comment until the end, we usually put those code at the end in this file.

Continue reading »

Remove All Post Meta (Date, Time, Comment and Edit post) Information

http://colorlabs.co/PYdVTO

Meta post can be useful for each side (admin/user) to see the details meta post description, but sometimes it don’t need to show it. So, if you wanna hide your meta post, try open each file for each page and find this code to removed.

Ussualy the code is at ‘index.php file, find out these code:

<?php colabs_post_meta(true); ?>

Continue reading »

Switch Page Navigation to Blog Like

http://colorlabs.co/O2C9Ih

Some of you maybe want to display your page navigation as blog like (next/previous links), then you have to edit several files there.

Ussualy the code is at ‘index.php file, find out these code:

<div id="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>

change that code become:

<div id="navigation"><p><?php posts_nav_link(); ?></p></div>

Continue reading »

Page Navigation No Longer Working

http://colorlabs.co/L5b44Y

Almost all of our themes already embeded with page navigation but if it is no longer working you can modify that so it will be no problem for you.

If you are using our default page navigation make sure if you have the right settings for that:

  1. Text for number of pages
    Make sure if the value is:   Page %CURRENT_PAGE% of %TOTAL_PAGES%
  2. Text for current page
    Make sure if the value is:   %PAGE_NUMBER%
  3. Text for page
    Make sure if the value is:    %PAGE_NUMBER%
  4. Text for first page
    Make sure if the value is:    « First- this is the default value, you can set it with any words
  5. Text for last page
    Make sure if the value is:     Last »- this is the default value, you can set it with any words

But if your themes don’t need page navi plugin installed you can just deactivate any page navigation you install.

Continue reading »

Cannot Use Background Even with Plugin Installed

http://colorlabs.co/PYejBN

Each site has an each style, it’s depends on individual taste for the owner of the site. Sometimes need to change background with another color, or using an image, one big image or repeat image. It can be a simple or many character shows on the sites, one of it’s because the background used. Each theme for ours, has own style for the background, but mostyle has a simple using background color.

You can use and change the background by yourself, by changing directly to css code for the body, or using the background color/image setting that wordpress applied, or even using plugin to change it. But, sometimes it won’t work properly to change the background even using plugin installed for some user. For this problem you have to edit your ‘header.php’ file.

Find out for these tags:

<body>

Then change that code become:

<body <?php body_class() ?>>

After that you can start using plugin to manage background like image or colour. It’s mean that the body for this site will have own style.

Continue reading »

Contact Us