Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Delete column from pricing table #300545

    Ah, thanks, it’s a big table and I didn’t see the X at the bottom!

    in reply to: Change default sidebar width #288737

    Thank you Gunter!

    There was a small typo in your code but following works well!

    /* Include the global settings for Enfold */
    add_action('init', 'tnb_change_layout', 900);
    function tnb_change_layout()
    {
        global $avia_config;
        $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'two alpha', 'entry' => 'eight alpha');  //GWB
    }
    /* End of Enfold changes */
    
    • This reply was modified 10 years, 4 months ago by PurpleEdge.
    in reply to: Change default sidebar width #288395

    Thanks Josue, doesn’t appear to have worked?

    I placed the following into my child functions.php, but the layout remains 9/3 for the sidebar-right configuration. Have I done something wrong?

    /* Include the global settings for Enfold */

    global $avia_config;

    $avia_config[‘layout’][‘fullsize’] = array(‘content’ => ‘twelve alpha’, ‘sidebar’ => ‘hidden’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘eleven’);
    $avia_config[‘layout’][‘sidebar_left’] = array(‘content’ => ‘nine’, ‘sidebar’ => ‘three alpha’ ,’meta’ => ‘two alpha’, ‘entry’ => ‘nine’);
    $avia_config[‘layout’][‘sidebar_right’] = array(‘content’ => ‘eight alpha’, ‘sidebar’ => ‘four alpha’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘eight alpha’); //GWB

    /* End of Enfold changes */

Viewing 3 posts - 1 through 3 (of 3 total)