bouncecouncil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: change the name category to galleryTHIS ISNT WORKING FOR ME. IF I WANTED TO CHANGE Categories TO DISPLAY Music and Mixes ARE YOU SAYING TO CHANGE THE LINES OF
/**
* Categories widget class
*
* @since 2.8.0
*/
class WP_Widget_Categories extends WP_Widget {function WP_Widget_Categories() {
$widget_ops = array( ‘classname’ => ‘widget_categories’, ‘description’ => __( “A list or dropdown of categories” ) );
$this->WP_Widget(‘categories’, __(‘Categories’), $widget_ops);
}function widget( $args, $instance ) {
extract( $args );$title = apply_filters(‘widget_title’, empty( $instance[‘title’] ) ? __( ‘Categories’ ) : $instance[‘title’], $instance, $this->id_base);
TO
/**
* Categories widget class
*
* @since 2.8.0
*/
class WP_Widget_Categories extends WP_Widget {function WP_Widget_Categories() {
$widget_ops = array( ‘classname’ => ‘widget_categories’, ‘description’ => __( “A list or dropdown of categories” ) );
$this->WP_Widget(‘categories’, __(‘Music and Mixes’), $widget_ops);
}function widget( $args, $instance ) {
extract( $args );$title = apply_filters(‘widget_title’, empty( $instance[‘title’] ) ? __( ‘Music and Mixes’ ) : $instance[‘title’], $instance, $this->id_base);
Forum: Plugins
In reply to: Soundcloud with godaddy hosting not workingI uploaded the plugin but cant find the option to activate it. I dont even see soundcloud under my plugins. it says its installed, but i cant find it to even attempt an uninstall. help!