Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter kwsteve

    (@kwsteve)

    About your problem: are you in iframe mode with javascript resizer or with a default css iframe as install setup for the forum page?

    Is this about problem #2? I don’t know, and I’m not too worried about it. I just wanted to make you aware of it. Like I said I can work around it easily enough.

    I’m more interested in finding a solution to the sidebar missing content.

    Anyways thanks for the work you’re doing on this.

    Thread Starter kwsteve

    (@kwsteve)

    I got it fixed. I had to go back to Menus > Manage Locations and reselect my custom menu from there. Everything works once again.

    Thread Starter kwsteve

    (@kwsteve)

    When I go back to the parent theme everything is in order.

    I used a child theme with the following in functions.php:

    <?php
    
    // Remove old copyright text
    add_action( 'init' , 'mh_remove_copy' );
    function mh_remove_copy() {
    	remove_action( 'cleanretina_footer' , 'cleanretina_footer_info', 25 );
    }
    
    // Add my own copyright text
    add_action( 'cleanretina_footer' , 'mh_footer_info' , 25 );
    function mh_footer_info() {
       $output = '<div class="copyright">'.'Copyright [the-year] [site-link] Powered by: <a href="http://ww.wp.xz.cn" target="_blank">WordPress</a> and <a href="http://phpbb.com/" target="_blank">phpBB</a> | Integrated by: <a href="http://wp-united.com" target="_blank">WP-United</a> | Clean Retina by <a href="http://www.themehorse.com/" target="_blank">ThemeHorse</a> | SE Square Left by <a href="http://www.phpbb3bbcodes.com/" target="_blank">PhpBB3 BBCodes</a> '.'</div><!-- .copyright -->';
       echo do_shortcode( $output );
    }
Viewing 3 replies - 1 through 3 (of 3 total)