• Resolved Calvin

    (@cluracan)


    “GREYZED” has hard coded some widgets in the footer that I would like to remove. Is there anyone who can tell me specifically how to do that? I already know how to get the editor and all that, but I just need to know what specifically to delete/edit.

    https://www.txtwars.net

    I want to remove SOCIAL CONNECTION, BLOG ROLL, and RECENT COMMENTS down in the footer area.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Post your footer.php code into pastebin ( https://wordpress.pastebin.com/ ) so we can tell you what to edit.

    Thread Starter Calvin

    (@cluracan)

    Sorry, total noob.

    https://pastebin.com/STNJJvS0

    You can safely remove Lines 10 through 89.

    Line 10 starts with <div class="socialfooter">
    Keep line 91 which contains <div class="footerlinks">

    Make a backup before this change just in case something goes wrong.

    Thread Starter Calvin

    (@cluracan)

    I tried and it altered the footer beneath it with HOME ABOUT RSS FEED RSS COMMENT FEED. Making the change turned the font red, shrunk it and moved it to the left. But, this attempt was the closest I’ve come to almost doing it.

    The text is still there. Did you undo the change?

    Also, the change I mentioned should have nothing to do with the color. If you removed all the lines (80 in total) the text should disappear.

    first take a backup your footer.php file. Then replace whole code with my code

    <?php
    /**
     * @package WordPress
     * @subpackage Greyzed
     */
    ?>
    
    <hr />
    <div id="footer" role="contentinfo">
    	<div class="socialfooter">
    
    	</div>
    
    	<div class="blogroll-foot">
    
    		<!-- begin widgetized footer -->	
    
    		<ul>
    		<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Middle') ) : ?>
    
    		<?php endif; ?>
    		</ul>
    
    		<!-- end widgetized footer -->	
    
    		</div>
    
    		<!-- begin widgetized footer right -->
    
    	<div class="recent-foot">
    	<div class="getintouch">
    	<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Right') ) : ?>		
    
    	<!-- end widgetized footer right -->
    	<?php endif; ?>
    	</div></div>
    
    </div>
    </div>
    
    	<div class="footerlinks">
    
       <a href="<?php echo get_option('home'); ?>/">Home</a> &nbsp;&nbsp;|
    		<?php
    			$links = get_pages('number=6&sort_column=post_date&depth=1&title_li=');
    			foreach($links as $i => $page)
    			$links[$i] = '&nbsp;<a href="' . get_page_link($page->ID) . '" title="' . attribute_escape(apply_filters('the_title', $page->post_title)) . '">' . apply_filters('the_title', $page->post_title) . '</a>';
    			echo implode('&nbsp; | &nbsp;', $links);
    		?>
    		&nbsp;|&nbsp; <a href="<?php if (get_option('greyzed_feedburner') == "#") { bloginfo('rss_url'); } else echo get_option('greyzed_feedburner');?>" title="RSS">Posts RSS</a>
    		&nbsp;|&nbsp; <a href="<?php bloginfo('comments_rss2_url'); ?>" title="Comments RSS">Comments RSS</a>
    
    	</div>
    </div>
    
    <div id="footer-bott">&copy; 2010 <?php bloginfo('name'); ?>. All Rights Reserved. Greyzed Theme created by <a href="https://www.theforge.co.za/" title="The Forge Web Creations">The Forge Web Creations</a>. Powered by <a href="https://www.ads-software.com/">WordPress</a>.</div>
    
    <?php echo get_option("greyzed_analytics"); ?>
    		<?php wp_footer(); ?>
    </body>
    </html>

    Thread Starter Calvin

    (@cluracan)

    TY so much.

    Hi Everyone,

    Please note that the Greyzed theme has been re-released with a big upgrade and is available here on our new theme shop: https://www.efrogthemes.com/product/greyzed/

    Enjoy!

    I am using Greyzed my self, but it has default widget and archive! how i can remove them? thank you!

    @theforge do you have a version where the user can edit the widgets themselves without editing the code? The pre-made widgets embedded is a real frustration. I’d like to be able to move and place widgets my way w/o having to edit the code.

    I have Greyzed 1.0.4 installed and woul like to modify the left “social” part of the footer and use it like the other two footer sidebars, so that I can place my own widgets there – like when greyzed is used in wordpress.com.

    Can somebody help me with that please?

    @mas I have used your template from above and replaced my footer with it, but I still do not have access to place widgets on the left sidebar? How do I enable this?

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Need Help With “Greyzed” Footer’ is closed to new replies.