ThemeForest

WordPress Wiki Theme

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
planap Purchased

Hi, I’ve just purchased the theme and I alreday have problems :

1 / When FAQ ’s plugin is activate, the content of my article disapear… I have title and then, right under, the comment box.

2 / I cannot add a new Faq from the link “write a FAQ ” located in the sidebar, I have denied permission message alert.

3/ I created three depth categories , and I only can see them when I click on a related article (related to the deeper category). How can I do to diplay thrid level categorie when I navigate on second level ?

4 / How can I do to propose people to register and become a redactor ? the sidebar admin panel doesn’t enable to register for a first time.

Thank you very much for your help and your nice theme !

Phil

valendesigns

What version of WP are you running?

Default-user
planap Purchased

Hi, I’m on wordpress 3.0 thanks for your help

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
planap Purchased

Re, I found my problem, I needed to upgrade php 4 to php5 via .htacess.

Resolved problems :

When FAQ ’s plugin is activate, the content of my article disapear :
OK resolved with php5
How can I do to propose people to register and become a redactor ? the sidebar admin panel doesn’t enable to register for a first time :
OK just need to custom wordpress options

Problems to be solve :

I cannot add a new Faq from the link “write a FAQ ” located in the sidebar, I have denied permission message alert.
I created three depth categories , and I only can see them when I click on a related article (related to the deeper category). How can I do to diplay thrid level categorie when I navigate on second level ?

Did you custom the permalink structure ? for exemple, my browser shows post title < blog title. Is it normal ? How can I change it ?

wp-pagenavigate box doesn’t appaer on the blog…I left default options, but no results even with 10 posts in the same category. Then how can I do for installing page navigation on homepage ?

Thanks for your help

valendesigns

The side navigation only shows two levels deep due to the sliding effect it has on it.

You can edit the title in the header.php to look how you want it to or get the all in one SEO plugin to rewrite your titles completely.

You need to adjust your post shown in the Options->Reading link in your admin sidebar so that the number is smaller than the actual amount of posts you have in a category. If you don’t have enough posts to make the pagination show it will not show.

valendesigns

The sidebar link I will be fixing ASAP and uploading the fix to TF, I’ll let you know when it’s done, sorry for the trouble.

Default-user
planap Purchased

Did you had time to fix it ?

thanks

  • Bought between 1 and 9 items
  • Exclusive Author
  • France
  • Has been a member for 3-4 years

Hi,

I like the theme, I just cannot seem to display more than 4 categories on the homepage even though my sites contains many more. I had to upgrade to WP 3 .0 but it was the same situation before. I have some knowdlege of WP and programming and can see the loop triggering the categories display, but only 4 are on my site, and none has any sub-cats visible even though I entered them in my WP admin. Any hint ?

Best regards.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
planap Purchased

Hi, I come back to know if you had time to answer my previous questions ?

Many thanks for your help

  • Bought between 100 and 499 items
  • Germany
  • Has been a member for 4-5 years
Rohmer Purchased

Hi, first thanks for this exceptional theme. But…

I have the theme and the plugins installed 3-4 times as you have wrote in readme.

The site looks different. Please check: http://www.netzwerktechniker24.ch/wiki_css_bug.png

Probably a CSS error. Point 2: How to add the FAQ page? Site: New Site – which code I have to enter?

If I just create a FAQ page, I do not see any FAQs.

Thanks!!

valendesigns

Two things.

First, you need to modify the look of the rated results by accessing that plugin in your admin section and follow the directions about changing the templates for rated posts on this page:

http://wpwikitheme.com/installation/plugins/installing-wp-postratings/

Second, the text in the welcome message is smaller than the original text and therefore you need to adjust the height of the span in the welcome message in the CSS . Look for #welcome span in style.css and adjust the height to be smaller and then the weird float issue will go away.

Hope that helps get you on your way.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
J1mmy Purchased

I’m not sure if this has already been addressed, but categories without any child categories don’t seem to be able to be opened by themselves. You can click on it as much as you like, but nothing happens?

valendesigns

JavaScript disables them. I thought I fixed that on the last update of the theme, if I didn’t I’m sorry and I’ll look into adding it in ASAP .

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
J1mmy Purchased

@designer24 – I had that same problem, but I added an extra line to my ‘Hello welcome message’ and it got it back to normal

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
J1mmy Purchased

Also, how do you create an excerpt for articles that are featured on the homepage like you’ve done you website for this script: http://wpwikitheme.com/ At the moment, all I am getting is this: http://bit.ly/9cdZ0a

valendesigns

You need to setup the templates for the rating plugin.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
J1mmy Purchased

Also, is it possible to add like a small area of text between that yellow box and the start of the 2 columns? If so, what template do I edit?

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
J1mmy Purchased

Also still waiting on that single category fix please.

valendesigns

When did you download the code originally? If you haven’t already download the latest code and replace your old application.js with the new one.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
planap Purchased

Hi, I need your help to improve my homepage.

By default, your home code calls highest voted articles. I wish call it for a specific categorie and repeat it for three more categories.

Could your please let me know how could I do ?

      <h1><?php if (function_exists('get_highest_rated')) { echo 'les plus populaires'; } else { echo 'les plus récents'; } ?></h1>
              <div class="post_wrap home">
              <?php>
          if (function_exists('get_highest_rated')) {
            get_highest_rated('post', 0, 4);
          } else if (have_posts()) { while (have_posts()) { the_post(); ?>
              <div <?php if ( function_exists('post_class') ) { echo post_class(); } else { echo 'class="post"'; } ?> id="post-<?php the_ID(); ?>">
              <div<?php if ($counter == 1) { echo ' class="first"'; } elseif ($counter == 2) { echo ' class="second"'; } ?>>
                <h2><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>" rel="bookmark">
                  <?php the_title(); ?>
                  </a></h2>
                <?php the_excerpt(); ?>
                <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">Lire ›</a>
                </div>

              <?php $counter++; ?>
              <?php } ?>
              <?php } else { ?>
              <h2 class="center">Introuvable</h2>
              <p class="center">Désolé, ce que vous cherchez est introuvable.</p>
              <?php } ?>
            
valendesigns

That is way out of the scope of support, sorry.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
J1mmy Purchased

Also, is it possible to add like a small area of text between that yellow box and the start of the 2 columns? If so, what template do I edit?

valendesigns

On what page?

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Love the theme.

Quick question about the Live Search function.

Where does the live search look for search terms? Titles, Categories, Tags, Body copy…

I need to know so I can index my posts and pages properly.

Thank you,

AJT

valendesigns

The live search is using the regular WordPress search functionality.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
J1mmy Purchased

There is a slight glitch. You folder should be called ‘themes’ not ‘theme’.

Please also answer my query above when you get the chance.

Thanks

valendesigns

What folder? If you’re talking about the folder you get when you download all the files from ThemeForest the name of the folder is not relevant to using the theme and therefore is not going be an issue.

Default-user
J1mmy Purchased

The home page.

I was to add a small thext above the Yellow Welcome box on the home/main page.

  • Bought between 100 and 499 items
  • Has been a member for 5-6 years
jf Purchased

Hello – Just gave you 5 stars – Thank you for your great theme. I just have a question for the “Welcome text” – Since my word is “Bonjour!” the title is over the text. Is there a way to fix this? Thank you once again.

valendesigns

Change the CSS to make the text fit better.

  • Beta Tester
  • Bought between 100 and 499 items
  • Exclusive Author
  • Has been a member for 4-5 years
  • Sold between 1 and 100 dollars

Any idea what the correct permalink structure is for having the articles show properly and not like a normal blog post?

valendesigns

/ category / postname /

EDIT : ThemeForest is removing the percentage symbols in the white space above.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
cwilloch Purchased

Hi, I just purchased this theme and installed it on my site.

The WordPress catalog is on /www/wp-xtra/.

I get the following error messages when installing:

Warning: fopen(/home/1/w/willoch/www/wp-xtra/wp-content/themes/wiki_final_1.0.2/style.css) [function.fopen]: failed to open stream: No such file or directory in /home/1/w/willoch/www/wp-xtra/wp-includes/functions.php on line 4165

Warning: fread(): supplied argument is not a valid stream resource in /home/1/w/willoch/www/wp-xtra/wp-includes/functions.php on line 4168

Warning: fclose(): supplied argument is not a valid stream resource in /home/1/w/willoch/www/wp-xtra/wp-includes/functions.php on line 4171

Annoying, since I’m a newbie on this.

Anyone help?

-cwilloch

valendesigns

I believe we fixed this and it was due to an installation error on your end, if I’m not mistaken. To clarify to everyone else be sure to unzip the contents of the downloaded folder from ThemeForest and upload only the theme not everything you get when you buy this item.

Default-user
cwilloch Purchased

Yep, error was on my side. Or, as I always say to my users: ‘Read the manual…’

Thanks!

-cwilloch

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
planap Purchased

Hi, I would like to diplays each catégories, but in your theme I cant.

Can you tell me what I have to change to activate the link to categories from the sidebar ?

Of course I wish keep the nice rollon display ! ;)

Thank you for your help.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years

Just thought i’d let you know that i’m using this Wiki theme again, one year after the first time. I THINK ITS GREAT ! Thanks Valendesigns! Works a treat. I’m still a Wordpress newbie really but its pretty straight forward, if you follow the documentation :)

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
  • Venezuela

Hi,

This theme it’s wordpress 3 compatible?

thanks!

by
by
by
by
by