• Resolved lisi1986

    (@lisi1986)


    Hi, im building my website with WP and Chosen theme and I want to add some widgets to it. The problem is that there is no Widget menu under the Appearance menu. I wonder where do widgets get installed and how can I use them with this theme.

    Thanks!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks for using Chosen!

    This theme does not have widget areas included, but you can use shortcodes instead to add dynamic content into any post or page on your site.

    Chosen Pro also adds a sidebar and a number of other widget areas to the theme.

    Hey Ben, I’m using Chosen Gamer on a project and was asked to add a 3 Widget Area on the Footer. I did created the Widgets Areas, but somehow it does not display the 3 divs side-by-side.

    Here’s the CSS

    .footer-item {
    float: left;
    width: 33%;
    padding-bottom: 10px;
    }
    .footer-item ul {
    padding-left: 15px;
    }

    and the html code

    <div class="footer-item">
    <?php
    if(is_active_sidebar('rodape_widgets-1')){
    dynamic_sidebar('rodape_widgets-1');
    }
    ?>
    </div>
    <div class="footer-item">
    <?php
    if(is_active_sidebar('rodape_widgets-2')){
    dynamic_sidebar('rodape_widgets-2');
    }
    ?>
    </div>
    <div class="footer-item">
    <?php
    if(is_active_sidebar('rodape_widgets-3')){
    dynamic_sidebar('rodape_widgets-3');
    }
    ?>
    </div>

    I ran a quick lookup on the the theme CSS, but could not locate the code that is blocking the divs to show it properly. Can you help me out on this?

    All sorted out on Chosen Gamer Support Forum. Thanks for the attention Ben.

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome 🙂

    Here’s the thread for anyone interested in the solution: https://ww.wp.xz.cn/support/topic/3-widget-area-on-footer/

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

The topic ‘Widget Menu’ is closed to new replies.