Once plugin is installed you have a new Widget container called CMA – did you try to copy your sidebar widgets over it ?
Can you explain how to do that I did not understand?
many thanks
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' );