• Resolved 39images

    (@39images)


    Hi everyone!

    I’m a new user here. I have a couple of questions regarding my WP site. First, here is my URL:

    https://39images.com/wp/

    If you scroll to the footer, you’ll see that I have an error under “most popular posts”: Fatal error: Call to undefined function get_mostpopular() in /mnt/r0201/d17/s14/b02845cc/www/39images.com/wp/wp-content/themes/argonoid/footer.php on line 28

    I’m using Pages, not Posts, so theoretically, I don’t need that in the footer at all. But every time I try to remove it from the css, it screws up the whole footer. I don’t really need anything to generate automatically in the footer. How can I do this?

    Secondly, is there a way I can reduce the space between my page titles and the beginning of the page content? For example, my “about” page:

    https://39images.com/wp/?page_id=8

    I’d like the title “About” to be closer to the paragraphs. There’s a little too much of a gap on the pages.

    Thanks!! ??

Viewing 15 replies - 1 through 15 (of 42 total)
  • Hi 39images,

    Is MOST POPULAR POSTS a widget? If yes, just remove it from the widget sidebar.
    If not, then you have to open footer.php (if there is one) and remove it there.

    The “about” thing, that you have to edit in style.css.
    Look for h1 of .content.

    Good luck

    Thread Starter 39images

    (@39images)

    Well that’s the thing. When I try to remove it from the footer, it messes everything up. Here is my entire footer code:

    [Large code excerpt removed by moderator per forum rules. Please use the pastebin for all large code excerpts. It works better anyway.]

    My goal is to have the footer blank, with the exception of my copyright info…

    Just remove this entire block: https://pastebin.com/wdNNfpcT
    If that messes up you’re theme, remove just the <?php ?> parts and everything in it.

    Thread Starter 39images

    (@39images)

    Ok thanks! ?? I think I got it now. The only thing I need to remove from the footer is:

    “Designed by Reseller Hosting. In collaboration with Dreaming, Oscommerce Templates , and Pup Dog Training”

    I’ve looked through Firebug but I can’t find the actual file that allows me to edit/remove it.

    Firebug won’t list the files that hold stuff. Just the pages.
    Anyway, it’s inside the footer.php.
    Look for copy yada yada and it’s probably the <?php padd_theme_credits(); ?> that’s pulling that from you’re function.php file.

    Hope it helps.

    Thread Starter 39images

    (@39images)

    Strange…when I remove <?php padd_theme_credits(); ?> from footer.php, my whole site goes blank white…

    Hi have to say, that this themes has some stuff i’ve never seen before.
    Like the stuff inside template-top.php and template-bot.php.
    I don’t know what it is, or what it is for.

    Make sure you removed the entire <?php padd_theme_credits(); ?> fwhole thing. Don’t leave the “php” parts in.
    If that dosen’t work, open library.php and at the end of the file, remove the “Renders the theme credits.” part. All of it.
    If that dosen’t work, Try adding a ?> where you removed the render theme credits, and if that dosen’t work, let me know. I’ll install the theme and try to figure it out.
    Don’t forget to backup all you’re files before doing changes.

    Thread Starter 39images

    (@39images)

    I tried all those solutions and each one produced an error. I’m really stumped on this one. I appreciate you offering to install it and check it out!! ??

    Can you send me you’re themes files?
    Use something like wikisend to do it.

    Thread Starter 39images

    (@39images)

    Here is a direct link to DL it:

    Nothing. Paste the url.

    Thread Starter 39images

    (@39images)

    Yep.
    Just removed the <?php padd_theme_credits(); ?> from footer.php and it worked.
    I’m guessing you have some <?php tag left open. Double check.
    You could also just copy a new footer.php file over to you’re server and start again.

    Thread Starter 39images

    (@39images)

    Here is that whole section:

    <div id="footer">
    		<div class="pad append-clear">
    			<p class="copyright">
    				Copyright &copy; <?php echo date('Y')?>. <?php bloginfo('name'); ?>. All rights reserved.
    			</p>
    			<?php padd_theme_credits(); ?>
    		</div>
    	</div>
    
    </div>
    <?php wp_footer(); ?>
    <?php
    $tracker = get_option(PADD_PREFIX . '_tracker_bot','');
    if (!empty($tracker)) {
    	echo stripslashes($tracker);
    }
    ?>
    </body>
    </html>
    
    <?php require 'functions/required/template-bot.php'; ?>

    What is the exactly part I should remove?

    I’ve told you already. remove this: <?php padd_theme_credits(); ?>

Viewing 15 replies - 1 through 15 (of 42 total)
  • The topic ‘Need a few answers ASAP!’ is closed to new replies.