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

    (@bensibley)

    Founder doesn’t have a sidebar layout available, but the Pro plugin does include new widget areas including one called “After Main Content,” which would show up after your posts (screenshot).

    Thread Starter fantasyname

    (@dam95)

    Ah, i see. Can I place a footer menü then or is this also possible with the free version?

    Theme Author Ben Sibley

    (@bensibley)

    The footer menu is also a Pro feature.

    You could create it yourself by copying the way the primary menu is created in Founder’s functions.php file. Or copy the footer.php file into a child theme and just hardcode the links you need there.

    Thread Starter fantasyname

    (@dam95)

    Ok, i copied the footer.php, but where can i set the links?

    <?php do_action( 'main_bottom' ); ?>
    </section><!-- .main -->
    
    <?php 
    // Elementor <code>footer</code> location
    if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'footer' ) ) :
    ?>
    <footer id="site-footer" class="site-footer" role="contentinfo">
    	<?php do_action( 'footer_top' ); ?>
    	<span>
            <?php
            $footer_text = sprintf( __( '<a href="%1$s" rel="nofollow">%2$s WordPress Theme</a> by Compete Themes.', 'founder' ), 'https://www.competethemes.com/founder/', wp_get_theme( get_template() ) );
            $footer_text = apply_filters( 'ct_founder_footer_text', $footer_text );
            echo do_shortcode( wp_kses_post( $footer_text ) );
            ?>
        </span>
    </footer>
    <?php endif; ?>
    
    </div>
    </div><!-- .overflow-container -->
    
    <?php do_action( 'body_bottom' ); ?>
    
    <?php wp_footer(); ?>
    
    </body>
    </html>

    Now the footer on the subpages says: “Founder WordPress Theme by Compete Themes.”
    Unfortunately this footer isn’t available on the homepage.

    • This reply was modified 3 years, 9 months ago by fantasyname.
    • This reply was modified 3 years, 9 months ago by fantasyname.
    • This reply was modified 3 years, 9 months ago by fantasyname.
    Thread Starter fantasyname

    (@dam95)

    Hey, just wanted to say that I installed Founder Pro, so I can handle this now easier.

    Theme Author Ben Sibley

    (@bensibley)

    Awesome! Thanks for upgrading ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Widgets on the right side or under the articles’ is closed to new replies.