Classipress 3.2.1 - edit footer
After upgrading to Classipress 3.2.1 I cannot edit the theme-footer.php...any edit of this file does not appear on the site after uploading the edited file.
The file used to have the php code for "Classified Ads Software | Powered by WordPress" but that no longer appears in the current theme-footer.php.
The current theme-footer.php reads as follows:
------------------------------------------------------------------------
<?php
/**
* Add footer elements via the wp_footer hook
*
* Anything you add to this file will be dynamically
* inserted in the footer of your theme
*
* @since 3.0.0
* @uses cp_footer_actions
*
*/
// insert the google analytics tracking code in the footer
function cp_google_analytics_code() {
if ( get_option('cp_google_analytics') <> '' )
echo stripslashes( get_option('cp_google_analytics') );
}
add_action('wp_footer', 'cp_google_analytics_code');
// enable the gravatar hovercards in footer
function cp_gravatar_hovercards() {
global $app_abbr;
if ( get_option($app_abbr.'_use_hovercards') == 'yes' )
wp_enqueue_script( 'gprofiles', 'http://s.gravatar.com/
js/gprofiles.
js', array( 'jquery' ), '1.0', true );
}
add_action('wp_enqueue_scripts', 'cp_gravatar_hovercards');
?>
---------------------------------------------------------------------------------------------
How do I edit the footer in this new updated version?