• Resolved lknhan

    (@lknhan)


    Hello,
    How can I remove «Mr Web» in footer ?
    I remove in Appearance —-> Editor —-> Theme footer (footer.php)
    But the main page cannot be removed.
    Thanks for help.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Anonymous User 16453565

    (@anonymized-16453565)

    Hi,

    its defined in footer file after your widget code you can hide using display none property of css or you need to check your footer.php file. Your theme or any plugin is insert this garbage code in your footer file.

    Thread Starter lknhan

    (@lknhan)

    Hello Snehal Brahmbhatt,
    Footer.php

    			
    	<?php
    /**
     * The template for displaying the footer
     *
     * Contains the closing of the #content div and all content after.
     *
     * @link https://developer.ww.wp.xz.cn/themes/basics/template-files/#template-partials
     *
     * @package scolaw
     */
    
    ?>
    
    	</div><!-- #content -->
    
    	<footer id="colophon" class="site-footer" role="contentinfo">
    		<div class="footer_top">
    			<div class="container">
    				<?php dynamic_sidebar('footer_top'); ?>
    			</div>
    			<div class="bg_abs"></div>
    		</div>
    		<div class="footer_part">
    			<?php dynamic_sidebar('footer');?>
    		</div>
    		<div class="footer_bottom">
    			<div class="container">
    
    <?php dynamic_sidebar('footer-copyright');?> 
    
    			</div>
    		</div>
    	</footer><!-- #colophon -->
    </div><!-- #page -->
    
    <?php wp_footer(); ?>
    <script type="text/javascript">
    	function show_new_option(elem1,element){
    		var new_el = element;
    	//	alert(new_el);
    		
    		jQuery('.lst_item').removeClass('active_link');
    		jQuery(elem1).addClass('active_link');
    		jQuery('.normal_bx').fadeOut(500);
    		setTimeout(function(){
    			jQuery('#'+new_el).stop().fadeIn();
    		},550);
    		
    	}
    	
    	jQuery(window).bind('scroll', function () {
    		if(jQuery(window).width()<480){
    			if (jQuery(window).scrollTop() > 50) {
    				jQuery('.header-right').addClass("hidden_b");
    			} else {
    				jQuery('.header-right').removeClass("hidden_b");
    			}
    		}
    	});
    </script>
    </body>
    </html>
    Thread Starter lknhan

    (@lknhan)

    And Widget footer code:

    <table align="center" cellspacing="100">
    <tr>
    <td align="center">
    © 2018 Advokatfirma Suleiman & Co. Alle rettigheter reservert.
    </td>
    </tr>
    <tr>
    <td align="center">
    [DISPLAY_ULTIMATE_SOCIAL_ICONS]
    </td>
    </tr>
    </table>
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How can i remove ?’ is closed to new replies.