Title: Niklas's Replies | WordPress.org

---

# Niklas

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 75 total)

1 [2](https://wordpress.org/support/users/niklasbr/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/niklasbr/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/niklasbr/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/niklasbr/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/niklasbr/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendGrid] $status is 50% wide, causing cosmetic issues](https://wordpress.org/support/topic/status-is-50-wide-causing-cosmetic-issues/)
 *  Thread Starter [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/status-is-50-wide-causing-cosmetic-issues/#post-10007645)
 * This is not an issue with your service, I am only trying to suggest you fix a
   cosmetic code bug with this plugin.
 * Your site [https://support.sendgrid.com/](https://support.sendgrid.com/) does
   not offer any alternatives to submit bug reports for this WordPress plugin.
 * Will you please consider improving the plugin as I mentioned above?
    -  This reply was modified 8 years, 6 months ago by [Niklas](https://wordpress.org/support/users/niklasbr/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/page/2/#post-5417268)
 * The solution is downgrading to version 1.4.9 [https://wordpress.org/plugins/slideshow-gallery/developers/](https://wordpress.org/plugins/slideshow-gallery/developers/)
   until the developer fixes this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy WP SMTP – WordPress SMTP and Email Logs: Gmail SMTP, Office 365, Outlook, Custom SMTP, and more] Incorrect character encoding](https://wordpress.org/support/topic/incorrect-character-encoding/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/incorrect-character-encoding/#post-5448694)
 * I fixed the plugin, replace row ~334 in file easy-wp-smtp.php with this, it also
   fixes the apostrophe bug in the other thread.
 *     ```
       /**
        * Function to test mail sending
        * @return text or errors
        */
       if ( ! function_exists( 'swpsmtp_test_mail' ) ) {
       	function swpsmtp_test_mail( $to_email, $subject, $message ) {
       		$errors = '';
   
       		$swpsmtp_options = get_option( 'swpsmtp_options' );
   
       		require_once( ABSPATH . WPINC . '/class-phpmailer.php' );
       		$mail = new PHPMailer();
   
       		$from_name  = stripslashes( $swpsmtp_options['from_name_field'] );
       		$from_email = sanitize_email( $swpsmtp_options['from_email_field'] ); 
   
       		$mail->IsSMTP();
   
       		/* If using smtp auth, set the username & password */
       		if( 'yes' == $swpsmtp_options['smtp_settings']['autentication'] ){
       			$mail->SMTPAuth = true;
       			$mail->Username = $swpsmtp_options['smtp_settings']['username'];
       			$mail->Password = $swpsmtp_options['smtp_settings']['password'];
       		}
   
       		/* Set the SMTPSecure value, if set to none, leave this blank */
       		if ( $swpsmtp_options['smtp_settings']['type_encryption'] !== 'none' ) {
       			$mail->SMTPSecure = $swpsmtp_options['smtp_settings']['type_encryption'];
       		}
   
       		/* Set the other options */
       		$mail->Host = $swpsmtp_options['smtp_settings']['host'];
       		$mail->Port = $swpsmtp_options['smtp_settings']['port'];
       		$mail->SetFrom( $from_email, $from_name );
       		$mail->isHTML( true );
       		$mail->Subject = apply_filters('the_title', utf8_decode( $subject ) );
       		$mail->MsgHTML( apply_filters('the_content', utf8_decode( $message ) ) );
       		$mail->AddAddress( sanitize_email( $to_email ) );
       		$mail->SMTPDebug = 0;
   
       		/* Send mail and return result */
       		if ( ! $mail->Send() )
       			$errors = $mail->ErrorInfo;
   
       		$mail->ClearAddresses();
       		$mail->ClearAllRecipients();
   
       		if ( ! empty( $errors ) ) {
       			return $errors;
       		}
       		else{
       			return 'Test mail was sent';
       		}
       	}
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy WP SMTP – WordPress SMTP and Email Logs: Gmail SMTP, Office 365, Outlook, Custom SMTP, and more] Incorrect character encoding](https://wordpress.org/support/topic/incorrect-character-encoding/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/incorrect-character-encoding/#post-5448692)
 * +1 on this issue.
 * Swedish and Danish characters does not work
 * `ÅÄÖ` becomes `Ã…Ã„Ã–`
 * `øæ` becomes `Ã¸Ã¦Ë`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] What is debug supposed to do?](https://wordpress.org/support/topic/what-is-debug-supposed-to-do/)
 *  Thread Starter [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/what-is-debug-supposed-to-do/#post-5438816)
 * > The debugging setting isn’t related to Javascript errors though. For that, 
   > you can just use the browser’s console.
 * As I wrote previously: The browser’s console shows no errors, no warnings. Firebug
   is empty.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/#post-5417242)
 * No cache whatsoever, it is disabled in the browser and server.
 * zachsmith71 isn’t using the WordPress SEO by Yoast plugin (check his site’s source
   code) and is experiencing the same issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/#post-5417240)
 * 1.4.9 with the following plugins activated works:
    Akismet Google Analytics Dashboard
   for WP Hello Dolly Regenerate Thumbnails UploadPlus : File Name Cleaner W3 Total
   Cache WordPress SEO
 * 1.5 with zero other plugins activated still prints duplicate JS in the footer.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/#post-5417238)
 * I have reverted my sites usage to version 1.4.9 of your plugin, that works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/#post-5417236)
 * Both Undescores and the theme zachsmith71 (intrepidity) is using both exhibit
   identical behaviour.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/#post-5417234)
 * It is NOT calling wp_footer() twice.
 * Take a look for yourself: [http://underscores.me](http://underscores.me)
 * [https://github.com/Automattic/_s/blob/master/page.php](https://github.com/Automattic/_s/blob/master/page.php)
 * [https://github.com/Automattic/_s/blob/master/footer.php](https://github.com/Automattic/_s/blob/master/footer.php)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/#post-5417232)
 * I have figured out some more:
 * This bug only occurs in 1.5, in 1.4.9 this works as it should and only prints
   one set of javascripts.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow Gallery LITE] Skipping Slides, choppy transitions](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/skipping-slides-choppy-transitions/#post-5417231)
 * I know what the problem is, because I experience the same problem with the underscores
   theme ([http://underscores.me](http://underscores.me))
 * Check the source code and you will see that the JavaScript is being loaded twice
   in the footer and that causes the slideshow to appear choppy in some browsers.
   It is essentially looping on the same slideshow twice.
 * I have not yet figured out how to fix it.
 *     ```
       <!-- Slideshow Gallery Javascript BEG -->
       	<script type="text/javascript">
       	jQuery.noConflict();
       	tid('slideshowcustom').style.display = "none";
       	tid('slideshow-wrappercustom').style.display = 'block';
       	tid('slideshow-wrappercustom').style.visibility = 'hidden';
       	jQuery("#fullsizecustom").append('<div id="spinnercustom"><img src="http://crossfitintensify.com/wp-content/plugins/slideshow-gallery/images/spinner.gif"></div>');
       	tid('spinnercustom').style.visibility = 'visible';
   
       	var slideshowcustom = new TINY.slideshow("slideshowcustom");
       	jQuery(document).ready(function() {
       		slideshowcustom.auto = true;		slideshowcustom.speed = 8;
       		slideshowcustom.alwaysauto = false;
       		slideshowcustom.imgSpeed = 9;
       		slideshowcustom.navOpacity = 25;
       		slideshowcustom.navHover = 70;
       		slideshowcustom.letterbox = "#000000";
       		slideshowcustom.linkclass = "linkhover";
       		slideshowcustom.info = "informationcustom";
       		slideshowcustom.infoSpeed = 3;
       		slideshowcustom.thumbs = "slidercustom";
       		slideshowcustom.thumbOpacity = 70;
       		slideshowcustom.left = "slideleftcustom";
       		slideshowcustom.right = "sliderightcustom";
       		slideshowcustom.scrollSpeed = 5;
       		slideshowcustom.spacing = 5;
       		slideshowcustom.active = "";
       		slideshowcustom.imagesthickbox = "false";
       		jQuery("#spinnercustom").remove();
       		slideshowcustom.init("slideshowcustom","imagecustom","imgprevcustom","imgnextcustom","imglinkcustom");
       		tid('slideshow-wrappercustom').style.visibility = 'visible';
       		jQuery(window).trigger('resize');
       	});
   
       		</script>
   
       	<style type="text/css">
       	@import url('http://crossfitintensify.com/wp-content/plugins/slideshow-gallery/views/default/css.php?layout=specific&resheight=30&resheighttype=%25&resizeimages=N&width=586&height=261&border=1px+solid+%23CCCCCC&background=%23000000&infobackground=%23000000&infocolor=%23ffffff&thumbactive=&unique=custom&wrapperid=slideshow-wrappercustom&autoheight=false&thumbwidth=40&thumbheight=30&sliderwidth=816&infohideonmobile=1');
       	</style>
   
       	<!--[if IE 6]>
       	<style type="text/css">
       	.imglink, #imglink { display: none !important; }
       	.linkhover { display: none !important; }
       	</style>
       	<![endif]-->
   
       	<!-- Slideshow Gallery Javascript END --><!-- Slideshow Gallery Javascript BEG -->
       	<script type="text/javascript">
       	jQuery.noConflict();
       	tid('slideshowcustom').style.display = "none";
       	tid('slideshow-wrappercustom').style.display = 'block';
       	tid('slideshow-wrappercustom').style.visibility = 'hidden';
       	jQuery("#fullsizecustom").append('<div id="spinnercustom"><img src="http://crossfitintensify.com/wp-content/plugins/slideshow-gallery/images/spinner.gif"></div>');
       	tid('spinnercustom').style.visibility = 'visible';
   
       	var slideshowcustom = new TINY.slideshow("slideshowcustom");
       	jQuery(document).ready(function() {
       		slideshowcustom.auto = true;		slideshowcustom.speed = 8;
       		slideshowcustom.alwaysauto = false;
       		slideshowcustom.imgSpeed = 9;
       		slideshowcustom.navOpacity = 25;
       		slideshowcustom.navHover = 70;
       		slideshowcustom.letterbox = "#000000";
       		slideshowcustom.linkclass = "linkhover";
       		slideshowcustom.info = "informationcustom";
       		slideshowcustom.infoSpeed = 3;
       		slideshowcustom.thumbs = "slidercustom";
       		slideshowcustom.thumbOpacity = 70;
       		slideshowcustom.left = "slideleftcustom";
       		slideshowcustom.right = "sliderightcustom";
       		slideshowcustom.scrollSpeed = 5;
       		slideshowcustom.spacing = 5;
       		slideshowcustom.active = "";
       		slideshowcustom.imagesthickbox = "false";
       		jQuery("#spinnercustom").remove();
       		slideshowcustom.init("slideshowcustom","imagecustom","imgprevcustom","imgnextcustom","imglinkcustom");
       		tid('slideshow-wrappercustom').style.visibility = 'visible';
       		jQuery(window).trigger('resize');
       	});
   
       		</script>
   
       	<style type="text/css">
       	@import url('http://crossfitintensify.com/wp-content/plugins/slideshow-gallery/views/default/css.php?layout=specific&resheight=30&resheighttype=%25&resizeimages=N&width=586&height=261&border=1px+solid+%23CCCCCC&background=%23000000&infobackground=%23000000&infocolor=%23ffffff&thumbactive=&unique=custom&wrapperid=slideshow-wrappercustom&autoheight=false&thumbwidth=40&thumbheight=30&sliderwidth=816&infohideonmobile=1');
       	</style>
   
       	<!--[if IE 6]>
       	<style type="text/css">
       	.imglink, #imglink { display: none !important; }
       	.linkhover { display: none !important; }
       	</style>
       	<![endif]-->
   
       	<!-- Slideshow Gallery Javascript END -->
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cookie Compliance for WordPress – Cookie Consent, GDPR & CCPA] Bootstrap Button](https://wordpress.org/support/topic/bootstrap-button/)
 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/bootstrap-button/#post-4800704)
 * I would like to echo [@toposscz](https://wordpress.org/support/users/toposscz/)’
   s request!
 * Either that or supply the ability to only use bootstrap classes so that the colour
   of the button is easier to override.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Easy WP SMTP – WordPress SMTP and Email Logs: Gmail SMTP, Office 365, Outlook, Custom SMTP, and more] Unfortunately this plugin is incompatible with WordPress Multisite](https://wordpress.org/support/topic/unfortunately-this-plugin-is-incompatible-with-wordpress-multisite/)
 *  Thread Starter [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/unfortunately-this-plugin-is-incompatible-with-wordpress-multisite/#post-7874035)
 * Sorry for not getting back to you sooner, but I can’t activate it on every single
   site because that would take days of manual labour. Best regards
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Custom taxonomy returning 404 error](https://wordpress.org/support/topic/custom-taxonomy-404/)
 *  Thread Starter [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/custom-taxonomy-404/#post-5277936)
 * Some clarification:
 * This works: `example.com/food/bagels` and shows all posts with the `bagels` category
   from the custom taxonomy with `food` slug.
 * However, `example.com/food` returns 404 not found.
 * This the current configuration:
 *     ```
       register_taxonomy(
       	'ratt', // taxonomy id
       	array(
       		'mat' // the content type
       	),
       	array(
       		'hierarchical' => false,
       		'labels' => array(
       			// Removed for brevity
       		),
       		'public' => true,
       		'rewrite' => array(
       			'slug' => 'food',
       		),
       	)
       );
       ```
   

Viewing 15 replies - 1 through 15 (of 75 total)

1 [2](https://wordpress.org/support/users/niklasbr/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/niklasbr/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/niklasbr/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/niklasbr/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/niklasbr/replies/page/2/?output_format=md)