Remove "classipress theme-powered by" using Additional CSS
Question: How can I disable or remove or add an action using CSS code so that " ClassiPress Theme - Powered by WordPress " does NOT show at the bottom right side of the theme? Removing this was easy before classipress 3.6.1 update. We could go to editor php.footer and simply delete this code. Now its makes you do it using CSS editor adding "Additional CSS" customization.
Suggestion: It would be great if removing this theme credit is an easy check option inside the themes settings.
This is the code for the Theme Footer
(footer.php)
<?php if ( $cp_options->twitter_username ) : ?>
<a href="https://twitter.com/<?php echo $cp_options->twitter_username; ?>" class="dashicons-before twit" target="_blank" title="<?php esc_attr_e( 'Twitter', APP_TD ); ?>"></a>
<?php endif; ?>
<div class="right">
<p><a href="https://www.appthemes.com/themes/classipress/" target="_blank" rel="nofollow">ClassiPress Theme</a> - <?php _e( 'Powered by', APP_TD ); ?> <a href="https://wordpress.org/" target="_blank" rel="nofollow">WordPress</a></p>
</div>