• Hi, I have my website http://www.tumblendry.co.uk built by someone else and I want to change the content of the footer. I.e, the opening hours and remove the credits for the website creator.
    I have checked the footer.php but it has appearently no static part for the content. I have no knowledge of php so I would to ask you guys whether you can help me out?
    What do I need to change in the footer and make it having the text just in there?
    The footer.php looks as follows:

    <?php themezee_footer_before(); // hook before #footer ?>
    		<div id="footer-wrap">
    
    			<footer id="footer" class="container clearfix" role="contentinfo">
    				<?php
    					$options = get_option('zeeminty_options');
    					if ( isset($options['themeZee_general_footer']) and $options['themeZee_general_footer'] <> "" ) :
    						echo do_shortcode(wp_kses_post($options['themeZee_general_footer']));
    					endif;
    				?>
    				<div id="credit-link"><?php themezee_credit_link(); ?></div>
    			</footer>
    
    		</div>
    		<?php themezee_footer_after(); // hook after #footer ?>
    
    </div><!-- end #wrapper -->
    <?php themezee_wrapper_after(); // hook after #wrapper ?>
    
    <?php wp_footer(); ?>
    </body>
    </html>
Viewing 9 replies - 1 through 9 (of 9 total)
  • You may delete this part and try once
    <div id=”credit-link”><?php themezee_credit_link(); ?></div>

    Thread Starter tumblendry

    (@tumblendry)

    That doesn’t help. It wouldn’t work anyway as I need to enter my own text about opening times somewehere (else).

    Thread Starter tumblendry

    (@tumblendry)

    My website uses the themezee theme, and this is what is inside the footer.php. I have tried to parse all the files on the server, looking for the text that is shown in the footer, but I can’t get the file containing that text found. May it be somewhere remote (not on my webserver), so the developer has control over it credit text?

    do check all theme options.

    also, double check footer.php of your site from within ‘dashboard – appearance – editor’ as the posted footer.php code does not seem to fit the output seen in your site.

    for theme specific support, please post in https://wordpress.org/support/theme/zeeminty/

    ideally, contact your site’s developer for support.

    Thread Starter tumblendry

    (@tumblendry)

    What I posted is the content of the footer from within the dashboard-appearance-editor, but I am not sure whether it’s really the code that is used on my pages.
    I can completely empty the footer.php and see what happends. If nothing happends, then it’s not the code being used to produce the footer.

    Thread Starter tumblendry

    (@tumblendry)

    I just tried and when I delete the contents of the footer php file, the footer is gone, so it’s being used. Now I just need to find the standard footer php file for zeeminty.

    what about your theme options?

    dashboard – apperance – theme options; general; footer content?

    Thread Starter tumblendry

    (@tumblendry)

    You are my man, it indeed contained the content, so I changed it and it works,

    Thanks alot,

    Michael

    Thread Starter tumblendry

    (@tumblendry)

    bravo

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

The topic ‘help needed for footer’ is closed to new replies.