In Responsive version 4.5.4 we were allowed to hide the “Powered by Responsive Theme”. After updating the checkbox is missing. Is it possible to have that option back in the next update? Besides loving this templete very much, for me it was one of the main reasons to choose this nice template.
Is there an other way to hide it?
Best regards, Bert
]]>I’ve run a technical audit of my blog and there are 2 main security issues with the Cenote theme – can you help fix that?
1. Ok this isn’t a super big issue, but the server signature should be turned off.
2. Everybody can see what engine runs our page. We should get rid of the “x-powered-by” response header.
> Because these info are only helpful for hackers.
Many thanks!
]]>Really struggling here. I am using the Theme from Think Up Themes Ltd and at the bottom of my website they have included “Developed by Think Up Themes Ltd. Powered by WordPress” I want to remove both the texts:
1. Developed by Think Up Themes Ltd.
2. Powered by WordPress.
I tried looking up on google to check for solution and found that we need to edit the footer.php file which will help remove this text.
Below is the code that is there in my footer.php file but I have no clue on what to edit in this to get rid of that footer text.
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id="main-core".
*
* @package ThinkUpThemes
*/
?>
</div><!-- #main-core -->
</div><!-- #main -->
<?php /* Sidebar */ alante_thinkup_sidebar_html(); ?>
</div>
</div><!-- #content -->
<?php /* Call To Action - Outro */ alante_thinkup_input_ctaoutro(); ?>
<footer>
<?php /* Custom Footer Layout */ alante_thinkup_input_footerlayout();
echo '<!-- #footer -->'; ?>
<div id="sub-footer">
<div id="sub-footer-core">
<div class="copyright">
<?php /* === Add custom footer === */ alante_thinkup_input_copyright(); ?>
</div>
<!-- .copyright -->
<?php if ( has_nav_menu( 'sub_footer_menu' ) ) : ?>
<?php wp_nav_menu( array( 'depth' => 1, 'container_class' => 'sub-footer-links', 'container_id' => 'footer-menu', 'theme_location' => 'sub_footer_menu' ) ); ?>
<?php endif; ?>
<!-- #footer-menu -->
</div>
</div>
</footer><!-- footer -->
</div><!-- #body-core -->
<?php wp_footer(); ?>
</body>
</html>
Can someone suggest what should I do? I am not a coder to do code changes easily. Any help is highly appreciated.
Cheers
]]>Really struggling here. I am using the Theme from Think Up Themes Ltd and at the bottom of my website they have included “Developed by Think Up Themes Ltd. Powered by WordPress” I want to remove both the texts:
1. Developed by Think Up Themes Ltd.
2. Powered by WordPress.
I tried looking up on google to check for solution and found that we need to edit the footer.php file which will help remove this text.
Below is the code that is there in my footer.php file but I have no clue on what to edit in this to get rid of that footer text.
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id="main-core".
*
* @package ThinkUpThemes
*/
?>
</div><!-- #main-core -->
</div><!-- #main -->
<?php /* Sidebar */ alante_thinkup_sidebar_html(); ?>
</div>
</div><!-- #content -->
<?php /* Call To Action - Outro */ alante_thinkup_input_ctaoutro(); ?>
<footer>
<?php /* Custom Footer Layout */ alante_thinkup_input_footerlayout();
echo '<!-- #footer -->'; ?>
<div id="sub-footer">
<div id="sub-footer-core">
<div class="copyright">
<?php /* === Add custom footer === */ alante_thinkup_input_copyright(); ?>
</div>
<!-- .copyright -->
<?php if ( has_nav_menu( 'sub_footer_menu' ) ) : ?>
<?php wp_nav_menu( array( 'depth' => 1, 'container_class' => 'sub-footer-links', 'container_id' => 'footer-menu', 'theme_location' => 'sub_footer_menu' ) ); ?>
<?php endif; ?>
<!-- #footer-menu -->
</div>
</div>
</footer><!-- footer -->
</div><!-- #body-core -->
<?php wp_footer(); ?>
</body>
</html>
Can someone suggest what should I do? I am not a coder to do code changes easily. Any help is highly appreciated.
Cheers
]]>I have had copyright with dynamic date in every theme I ever built. Not sure why this is even important to me but I just want a public opinion before I make the change to the theme.
I can make a customizer field but I have never had to do this in the past. And there is nothing wrong with the syntax or code (uses date_i18n
, esc_
etc).
if ( ! function_exists( 'azera_shop_footer_powered_by' ) ) {
/**
* Display the powered by section in the footer
*/
function azera_shop_footer_powered_by() {
?>
<div class="powered-by">
<?php printf(
__( '%1$s powered by %2$s', 'azera-shop' ),
sprintf( '<a href="www.facebook.com/imediamarketingpr" rel="nofollow">%s</a>', esc_html__( 'WordPress', 'azera-shop' ) ),
sprintf( '<a href="www.natudoctor.com" rel="nofollow">%s</a>', esc_html__( 'Azera Shop', 'azera-shop' ) ),
); ?>
</div>
<?php
}
}
add_action( 'azera_shop_bottom_footer','azera_shop_footer_powered_by' );
Please, I need assistance. Thanks in advance.
]]>My website is sandiegoroofdoctor.com. How do I delete the “Powered by” on the bottom or at least change the text? Thanks!
]]>