• Resolved Abbas

    (@xllentech)


    There is a bug in the programming somewhere.

    When there is no widget added to Give Single Form Sidebar, whole form content <div class=”summary entry-summary”> shows outside and after <div id=”give-sidebar-left”>, as a result the contents gets displayed fine in the middle of the page.

    In Contrast, When I add widgets to Give Single Form Sidebar, whole form content <div class=”summary entry-summary”> goes inside <div id=”give-sidebar-left”> as a result the contents gets displayed all inside left sidebar.

    Can u plz check and fix if it is plugin issue or is it my theme causing it?

    Thanks for the great plugin.

    https://wordpress.org/plugins/give/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Devin Walker

    (@dlocc)

    Hey @xllentech – Thanks for taking the time to report the issue and the nice comment about the plugin. Can I ask which theme you are using?

    Thread Starter Abbas

    (@xllentech)

    I am using Catch Evolution..

    Also forgot to mention above, if there is a right sidebar which should show on the widgets page, or if I can add existing sidebar on the page.

    Have a look at the page..https://www.hussainicalgary.com/donations/general-donations

    Thanks for the support.

    Plugin Author Devin Walker

    (@dlocc)

    Hi @xllentech I have created an issue for this here:

    It’s already fixed and will be out in the next release. Until then, you can use the following code snippet to customize the wrappers which is causing the issue:

    /**
     * Custom Give Single Template Wrapper Start
     */
    function my_custom_give_start_wrapper(){
    	echo '<div class="wrapper hentry" style="box-sizing: border-box;">';
    }
    
    add_filter('give_default_wrapper_start', 'my_custom_give_start_wrapper');
    
    /**
     * Custom Give Single Template Wrapper End
     */
    function my_custom_give_end_wrapper(){
    	echo '</div>';
    }
    
    add_filter('give_default_wrapper_end', 'my_custom_give_end_wrapper');

    To add this code to your site please see: https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/

    Please let me know if you have anymore questions and thanks for reporting this issue.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Give Left Sidebar doesn't show propertly’ is closed to new replies.