Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello dreamh11,
    Hope you are having good time!

    Yes of course there are so many ways to remove footer credits but i need your site url please before letting you know one of them.

    Best Regards
    Vipin

    for CSS removal add

    .copyright {
        display: none;
    }

    To make an edit you could put something like the following into your child themes functions.php file

    // Replace the theme colormag copyright
    function colormag_footer_copyright() { ?>
    	<div class="copyright">
    	&copy; <?php echo get_bloginfo( 'name' ) . ' ' . get_the_date( 'Y' ); ?> | some extra stuff here
    	</div><!-- /.copyright -->
    	<?php
    }
    Thread Starter dreamh11

    (@dreamh11)

    Thread Starter dreamh11

    (@dreamh11)

    I am still waiting for a genuine reply.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:

    1. Install this Custom CSS Manager plugin https://www.ads-software.com/plugins/custom-css-manager-plugin
    2. use its “CSS Code” section of the dashboard to hold your CSS modifications:
    3. (put this code in)

      .copyright {
          display: none;
      }
    4. Save

    Alternatively use your Child Theme style.css file to hold your CSS modifications

    Thread Starter dreamh11

    (@dreamh11)

    If I use the following code,

    .copyright {
    display: none;
    }

    it will remove both the lines. i.e. Copyright ? 2015 Dream Home Guide. All rights reserved. Theme: ColorMag by ThemeGrill. Powered by WordPress.

    But I just want to remove the 2nd line i.e. Theme: ColorMag by ThemeGrill. Powered by WordPress.

    I also wamt to just remove the theme name from the right hand corner of the footer; not the copyright. Does anybody know the css to add to the child theme to do the job? Thanks.

    https://hersheylibrary.org/

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @hmahraj, This thread is regarding the ColorMag theme as distributed on www.ads-software.com.

    You’re using the Modality theme and so you should post on your theme’s support section: https://www.ads-software.com/support/theme/modality#postform

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Custom CSS for removing footer credits’ is closed to new replies.