• How do I remove powered by wordpress in Auberge?

    This is the footer>

    <?php
    /**
     * Website footer template
     *
     * @package    Auberge
     * @copyright  2015 WebMan - Oliver Juhas
     * @version    1.0
     */
    
    	if ( ! apply_filters( 'wmhook_disable_footer', false ) ) {
    
    		/**
    		 * Content
    		 */
    
    			wmhook_content_bottom();
    
    			wmhook_content_after();
    
    		/**
    		 * Footer
    		 */
    
    			wmhook_footer_before();
    
    			wmhook_footer_top();
    
    			wmhook_footer();
    
    			wmhook_footer_bottom();
    
    			wmhook_footer_after();
    
    	} // /wmhook_disable_footer
    
    	/**
    	 * Body and WordPress footer
    	 */
    
    		wmhook_body_bottom();
    
    		wp_footer();
    
    ?>
    
    </body>
    
    </html>

    [Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]

Viewing 15 replies - 1 through 15 (of 19 total)
  • try to ask directly to him. There is a support

    Thread Starter itsasign

    (@itsasign)

    Who? Where?
    All I want to do is remove the Powered by wordpress…

    Auberge has a support forum. As well you can find Oliver Juhas with search.

    Thread Starter itsasign

    (@itsasign)

    Ok,,, I will look for it…
    Just surprised I couldn’t get support on something so simple.
    Thanks anyway.

    Simply comment out “//” the “wmhook_footer();”
    like this: //wmhook_footer();
    Or remove the line “wmhook_footer();” if you want to get rid of this permanently.

    If you want to customize this section the right place to do it in:
    auberge/inc/setup.php from line 1985.

    I hope this helps.

    Thread Starter itsasign

    (@itsasign)

    I would love to customize it.. But I can’t find line 1985?

    And which wmhook_footer() should I remove?
    Top
    Bottom
    After
    Before? ect.

    Like from what I pasted above?

    Thread Starter itsasign

    (@itsasign)

    If I add “//” to “wmhook_footer();”
    Everything disappears.
    I am trying to find line 1985..
    auberge/inc/setup.php
    Can’t find it?

    I’ve downloaded the theme from here to check.
    https://wordpress.org/themes/auberge/

    I found out this piece of code in there –

    echo '<div class="site-footer-area footer-area-site-info">';
    					echo '<div class="site-info-container">';
    						echo '<div class="site-info" role="contentinfo">';
    							echo apply_filters( 'wmhook_wm_credits_output',
    									'&copy; ' . date( 'Y' ) . ' <a href="' . home_url( '/' ) . '" title="' . get_bloginfo( 'name' ) . '">' . get_bloginfo( 'name' ) . '</a>. '
    									. sprintf(
    											__( 'Powered by %s.', 'wm_domain' ),
    											'<a href="https://wordpress.org">WordPress</a>'
    										)
    									. ' '
    									. sprintf(
    											__( 'Theme by %s.', 'wm_domain' ),
    											'<a href="' . esc_url( wp_get_theme()->get( 'AuthorURI' ) ) . '">WebMan Design</a>'
    										)
    									. ' <a href="#top" id="back-to-top" class="back-to-top">' . __( 'Back to top &uarr;', 'wm_domain' ) . '</a>'
    								);
    						echo '</div>';
    						wm_menu_social();
    					echo '</div>';
    				echo '</div>';

    If you do that as well modifying these will you get you up on this.

    Thanks

    Thread Starter itsasign

    (@itsasign)

    This is as close to what I found…
    It says overflow: hidden?

    * 11. Site footer
    */

    .site-footer,
    .front-page-widgets-wrapper { padding: 6% 0; }

    /**
    * Footer widgets
    */

    .footer-widgets,
    .front-page-widgets-container {
    padding-bottom: 4%;
    margin: 0 -2%;
    }
    .footer-widgets .widget,
    .front-page-widgets-container .widget {
    float: left;
    width: 21%;
    margin: 0 2% 3.62rem;
    }
    .columns-1 .widget {
    float: none;
    width: 96%;
    }
    .columns-2 .widget { width: 46%; }
    .columns-3 .widget { width: 29.333%; }

    .footer-widgets .widget-title { color: inherit; }

    .footer-widgets .widget li,
    .footer-widgets .widget table { border-color: inherit; }

    /**
    * Site info (credits area)
    */

    .site-info-container { overflow: hidden; }

    .site-info { float: left; }

    .site-info a { color: inherit; }

    Though I won’t recommend but you want to remove this with some css you can do that with these lines of css code –

    .site-info {
        display: none;
    }
    Thread Starter itsasign

    (@itsasign)

    Why wouldn’t you do it?

    And thank you for trying to help! I wish I knew that this was going to be a problem before I made the whole website… πŸ™

    Thread Starter itsasign

    (@itsasign)

    Syntext error….

    Hiding something with css won’t hide it permanently form the DOM.

    As soon as You can hide it from the theme mark up why would you do that with css?

    Anyways Good Luck πŸ™‚

    Thread Starter itsasign

    (@itsasign)

    Totally confused about this… I wouldn’t even mind paying for it to be done. Can’t understand why this is such a task.

    Thread Starter itsasign

    (@itsasign)

    How can I remove the text “Powered By: WordPress | Theme: Auberge ” from the footer?

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘How do I remove powered by wordpress in Auberge’ is closed to new replies.