Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author CreativeMindsSolutions

    (@creativemindssolutions)

    Once plugin is installed you have a new Widget container called CMA – did you try to copy your sidebar widgets over it ?

    Thread Starter Ricsca2

    (@ricsca2)

    Can you explain how to do that I did not understand?
    many thanks

    Plugin Author CreativeMindsSolutions

    (@creativemindssolutions)

    In WordPress admin

    go to

    Appearance -> Widgets

    Locate the CMA container and drag your exiting widgets over to it

    Hi,

    I installed the free version too and there is no sidebar. Looks like the sidebar isn’t defined in plugin code. The code is available in the different theme files.
    A quick solution would be to add this code into your themes function file:

    function theme_slug_widgets_init() {
        register_sidebar( array(
            'name' => __( 'CM Answers Sidebar', 'theme-slug' ),
            'id' => 'cm-answers-sidebar',
            'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'theme-slug' ),
            'before_title' => '<h3>',
            'after_title' => '</h3>',
        ) );
    }
    add_action( 'widgets_init', 'theme_slug_widgets_init' );
    Plugin Author CreativeMindsSolutions

    (@creativemindssolutions)

    Was added to 2.5.0

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Enable sidebar’ is closed to new replies.