• Resolved LBarone

    (@lbarone)


    Hello Word Press Friends,

    While trying to eliminate the standard footer text by Think Up Themes, I deleted a line of code that has now removed my homepage slider. Can someone provide the original code that belongs immediately after <div class=”copyright”> (see below). My site is (www.basa.ca) and I have never altered the footer code previously, so the standard code just needs to be added back in. Thanks so much.

    <?php if ( has_nav_menu( ‘sub_footer_menu’ ) ) : ?>
    <?php wp_nav_menu( array( ‘depth’ => 1, ‘container_class’ => ‘sub-footer-links’, ‘container_id’ => ‘footer-menu’, ‘theme_location’ => ‘sub_footer_menu’ ) ); ?>
    <?php endif; ?>
    <!– #footer-menu –>

    <div class=”copyright”>
    <?php /* LeeMacBar Design
    </div>
    <!– .copyright –>

    </div>
    </div>
    </footer><!– footer –>

    </div><!– #body-core –>

    <?php wp_footer(); ?>

    </body>
    </html>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Guido

    (@guido07111975)

    Hi,

    If you have most recent theme version (1.4.6) you can find the footer code here.

    This part is wrong in your code:

    
    <?php /* LeeMacBar Design
    

    You should change it into this:

    
    <?php _e( 'LeeMacBar Design', 'lan-thinkupthemes' ); ?>
    

    FYI: lan-thinkupthemes is textdomain of this theme.

    Guido

    Thread Starter LBarone

    (@lbarone)

    Guido, Thank you so much for help. I was able to get my site back to its original form. Regards, Lianne

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need Standard Code for Minimaze Theme Footer’ is closed to new replies.