• Resolved allroundernaman

    (@allroundernaman)


    Hi Author!

    I recently installed Nano-Support Plugin in my wordpress installation. I would like to say that I want to edit the design of my knowledge base page.
    I will use any theme builder, but let me know how. When I go to edit, it simply shows me [nanosupport_knowledgebase] Nothing else.

    I don’t want the shortcode, I want to edit the design of the page, instead of simple plain text.
    If there is a feature already, let me know,
    If not, consider this as a feature request.

    2. This is not related to above question.
    How can I add featured image in my knowledgebase post?

    Thank You in advance,
    Regards,

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Mayeenul Islam

    (@wzislam)

    Hello @allroundernaman

    Changing the UI of the Knowledgebase
    You can easily remove the [nanosupport_knowledgebase] shortcode to put your own content on the page for sure. But…

    You will face some issues:

    1. The Knowledgebase Page selection from the settings panel (NanoSupport > Settings > Knowledgebase) won’t work, because without that shortcode the page won’t appear to the list (But if you don’t update the Knowledgebase settings after removing the shortcode, everything should work the same as before)
    2. The default features on the Knowledgebase will no longer be available
    3. The NanoSupport Knowledgebase Search add-on won’t work without the shortcode in place

    Yes, you are right. We should provide a template do override the layout. We’re taking this as a feature request:
    https://github.com/nanodesigns/nanosupport/issues/95

    Adding Featured Image to Knowledgebase Documents
    For the second query, you can put the following code into your theme’s functions.php:

    /**
     * Add feature image support to Knowledgebase Docs
     */
    function wp20200518_nanodoc_featured_image() {
        add_post_type_support( 'nanodoc', 'thumbnail' );
    }
    add_action('init', 'wp20200518_nanodoc_featured_image');
    Thread Starter allroundernaman

    (@allroundernaman)

    Thank You For the support.
    One thing I want to tell you is that I am using Divi. So can divi help me to do the same work?

    About my second query, it is resolved. Thank You.

    Plugin Author Mayeenul Islam

    (@wzislam)

    One thing I want to tell you is that I am using Divi. So can divi help me to do the same work?

    As long as Divi not prohibit you doing this, yes, Divi can do this. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can I edit Knowledge Base Design? If so, how?’ is closed to new replies.