Banner for Custom Widget Classes
Custom Widget Classes helps to set different css class or styles for widgets,the css class or styles can show in a dropdown list to be choosed Wordpress Tutorial
Noted That:
  • To install correctly this custom-widget-classes.zip .
  • Fisrt Download the custom-widget-classes.zip to your computer
  • Extract/Open custom-widget-classes.zip to Your Computer.
  • Then, Find readme.txt file inside custom-widget-classes.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " custom-widget-classes.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Custom Widget Classes

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Custom Widget Classes

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Custom Widget Classes

Step-5 : Now, Browse " custom-widget-classes.zip " Downloaded plugin from your computer, Where you downloaded " custom-widget-classes.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Custom Widget Classes

Step-6 : Now, Click on " Active Plugin "

Activate Custom Widget Classes

Step-7 : Then, See left Side Menu. " Custom Widget Classes " folder is added on left Side Menu. Now, Click on " Custom Widget Classes " folder.

Noted that: If you do not see " Custom Widget Classes " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Custom Widget Classes Configurations and Settings or How to work " Custom Widget Classes " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Custom Widget Classes " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Custom Widget Classes
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

This section describes how to install the plugin and get it working.

  1. Download and install the plg-in

see the options at settings> > widget classes and add classes .

If you are a theme developer you can add the classes in theme itself
add this code
add_filter(‘cWCdeveloperClasses’,’widgetclasses’);


function widgetclasses(){ $clsses['classes']=array( array( 'class'=>
'with-border', 'desc'=>
'With Border' ), array( 'class'=>
'white-bg', 'desc'=>
'white background' ) ); return $clsses;
}

if you want to set a default one for all the newly added widgets,add the default class too as shown below


add_filter('cWCdeveloperClasses','widgetclasses');
function widgetclasses(){ $clsses['classes']=array( array( 'class'=>
'with-border', 'desc'=>
'With Border' ), array( 'class'=>
'white-bg', 'desc'=>
'white background' ) ); $clsses['default']=array( 'class'=>
'widget', 'desc'=>
'Widget' ); return $clsses;
}

then you can see the classes in a droplist under each widgets, user can choose the class from the list


Name