1. Home
  2. /
  3. Docs
  4. /
  5. weDocs
  6. /
  7. FAQ(s)

FAQ(s)

I’m Getting 404 Error

weDocs uses Custom Post Type for storing the documentation. After installing the plugin often WordPress doesn’t refresh the rewrite rules so we see the error.

To fix this problem, go to the Permalinks setting in WordPress (Settings > Permalinks) and hit Save Changes. The error should go away.

Problems with private Docs

Every section and docs in weDocs has parent/child relationship and that’s how it maintains the relation when showing. Also, managing the relationship is done by WordPress.

So when you set a parent item in draft/pending mode, it can’t have any child element. So if you have a section in draft mode, it cannot have a child doc and you won’t see that in the sidebar.

I want to change the slug

If you don’t want to use the default docs slug and want something else, e.g. documentation, you can use this code:

<?php

/**
 * Changing the `docs` slug to something else
 *
 * @param array $args 
 *
 * @return array 
 */
add_filter( 'wedocs_post_type', function($args) {

    $args['rewrite']['slug'] = 'documentation';

    return $args;
} );

Put this as a functionality plugin or in your themes functions.php

How can we help?