• Hi forum

    On my page i am using the ZeeDisplay theme (www.jatn.tk) As you can see the footer on the page says “Place your footer content here”

    how do i rename or remove the text in the footer???
    – i can’t find it in footer.php

    i don’t know if you could use it, but here is my footer.php code:

    <div class="clear"></div>
    
    		<?php if(is_active_sidebar('sidebar-footer')) : ?>
    		<div id="bottombar">
    			<ul>
    				<?php dynamic_sidebar('sidebar-footer'); ?>
    			</ul>
    			<div class="clear"></div>
    		</div>
    		<?php endif; ?>
    
    		<div id="footer">
    			<?php
    				$options = get_option('themezee_options');
    				if ( isset($options['themeZee_footer']) and $options['themeZee_footer'] <> "" ) {
    					echo  esc_attr($options['themeZee_footer']); }
    			?>
    			<div class="clear"></div>
    		</div>
    
    	</div>
    </div>
    	<?php wp_footer(); ?>
    </body>
    </html>

    I have looked on the developers page, without finding anything about changing this. So i really hope you can help me. Thanks!

    regards Johannes

Viewing 15 replies - 1 through 15 (of 15 total)
  • sam

    (@samfusion)

    It might be in function.php, search for footer widget in function.php and replace it.

    Thread Starter JohannesTN

    (@johannestn)

    thanks for your reply, samfusion πŸ™‚

    i am new to all this wordpress. I can’t find anything in function.php

    [Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]

    sam

    (@samfusion)

    Can you GIVE me the link?

    Thread Starter JohannesTN

    (@johannestn)

    the link to my site, or the link to my function.php?

    sam

    (@samfusion)

    No, I need link of your blog to see the footer message? Have you checked footer div in css style.css?

    Thread Starter JohannesTN

    (@johannestn)

    here’s the link to my blog. http://jatn.tk

    sam

    (@samfusion)

    I cannot see it in css, the source shows:
    <div id=”footer”>
    Place your Footer Content here
    </div>
    It should be either sidebar.php, function.php or go to widgets and place some emtpy test widgets and check it out. Sorry for not being helpful I could help if I cpuld access the source code.

    Thread Starter JohannesTN

    (@johannestn)

    iv’e already checked them, could it help you, if i gave you access to my administration panel?

    sam

    (@samfusion)

    Mail me @ [email address removed]

    Thread Starter JohannesTN

    (@johannestn)

    done, you should have a email from me now. And again, i appreciate your help!

    sam

    (@samfusion)

    Check now!
    I have removed:
    <?php
    $options = get_option(‘themezee_options’);
    if ( isset($options[‘themeZee_footer’]) and $options[‘themeZee_footer’] <> “” ) {
    echo esc_attr($options[‘themeZee_footer’]); }
    ?>

    Change your Admin password immediately.

    Thread Starter JohannesTN

    (@johannestn)

    thank you very very much, samfusion. Really nice to see that you could find it. I wouldn’t have guessed that myself… Thanks again! πŸ™‚

    Thread Starter JohannesTN

    (@johannestn)

    one last question. Is there a chance for me to write my own text in the footer? – you know like the “place your footer content here” – but instead of that, something i make up myself?

    sam

    (@samfusion)

    Yes, in your ffooter.php., between the <footer> </di> add customized css, text or anything you wish or use WordPress shortcodes such as wp_list_pages() etc.

    Thread Starter JohannesTN

    (@johannestn)

    oh, i see. Then i’ll have to learn CSS code first πŸ˜‰

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘How to rename/remove ZeeDisplay "Place your footer content here"?’ is closed to new replies.