Title: excalabyte's Replies | WordPress.org

---

# excalabyte

  [  ](https://wordpress.org/support/users/excalabyte/)

 *   [Profile](https://wordpress.org/support/users/excalabyte/)
 *   [Topics Started](https://wordpress.org/support/users/excalabyte/topics/)
 *   [Replies Created](https://wordpress.org/support/users/excalabyte/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/excalabyte/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/excalabyte/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/excalabyte/engagements/)
 *   [Favorites](https://wordpress.org/support/users/excalabyte/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pastacode] Add new Code Language](https://wordpress.org/support/topic/add-new-code-language/)
 *  Thread Starter [excalabyte](https://wordpress.org/support/users/excalabyte/)
 * (@excalabyte)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/add-new-code-language/#post-12781008)
 * For anyone else the following needs to go in your functions
 *     ```
       /** pastcode plugin */
       add_filter( 'pastacode_langs', '_pastacode_langs' );
       function _pastacode_langs( $langs ) {
       	$langs['powershell'] = 'Powershell';
       	return $langs;
       }
   
       add_filter( 'pastacode_tinymcevars', '_pastacode_tinymcevars' );
       function _pastacode_tinymcevars( $pvars ) {
       	$pvars['scripts']['powershell']=get_template_directory_uri().'/js/powershell.js';
       	$array=array(
       			'libs'      => array('powershell'),
       			'mode'      => 'application/x-powershell',
       			);
   
       	$pvars['language_mode']['powershell']=$array;
       	return $pvars;
       }
   
       add_action('wp_enqueue_scripts', 'mytheme_scripts');
   
       function mytheme_scripts() {
         wp_dequeue_script( 'prismjs' );
         wp_deregister_script( 'prismjs' );
         wp_enqueue_script( 'prismjs',  get_template_directory_uri().'/js/prism.js', false,PASTACODE_VERSION, true );
       } 
       ```
   
 * Along with prism.js and code library file (e.g. powershell.js ) in a js folder
   in your these
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] [Plugin: WP e-Commerce] First Name (etc) in Checkout page fields](https://wordpress.org/support/topic/plugin-wp-e-commerce-first-name-etc-in-checkout-page-fields/)
 *  [excalabyte](https://wordpress.org/support/users/excalabyte/)
 * (@excalabyte)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wp-e-commerce-first-name-etc-in-checkout-page-fields/#post-2553103)
 * This guy fixed the issue here : [http://getshopped.org/forums/topic/checkout-fields-have-br-tags/](http://getshopped.org/forums/topic/checkout-fields-have-br-tags/)
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [3.1. RC2 not getting Page Templates on the theme folder](https://wordpress.org/support/topic/31-rc2-not-getting-page-templates-on-the-theme-folder/)
 *  [excalabyte](https://wordpress.org/support/users/excalabyte/)
 * (@excalabyte)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/31-rc2-not-getting-page-templates-on-the-theme-folder/#post-1873723)
 * Also try deactivating the theme and reactivating
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Template Broken In 3.1](https://wordpress.org/support/topic/template-broken-in-31/)
 *  [excalabyte](https://wordpress.org/support/users/excalabyte/)
 * (@excalabyte)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/template-broken-in-31/#post-1945274)
 * Also try deactivating the theme and reactivating
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Secure Contact Form] [Plugin: Fast Secure Contact Form] extra spacing with checkboxes and radio buttons](https://wordpress.org/support/topic/plugin-fast-secure-contact-form-extra-spacing-with-checkboxes-and-radio-buttons/)
 *  [excalabyte](https://wordpress.org/support/users/excalabyte/)
 * (@excalabyte)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-fast-secure-contact-form-extra-spacing-with-checkboxes-and-radio-buttons/#post-1916988)
 * Found what might be causing this in most Themes
 * .entry-content input {
    margin: 0 0 24px 0; }
 * Change to
    .entry-content input { margin: 0 0 0px 0; }
 * And change the rest of the CSS in the plugin , Thanks for the plugin Mike!

Viewing 5 replies - 1 through 5 (of 5 total)