• First of all I think this is a great plugin!

    I found two bugs tough, and no other way to contact you than through this support forum. So here they are:

    1. Softlinks does not work when inserting media. This is because the $search array on line 120 has errors:

    $search = array(
    	'src=""',
    	'href=""'
    );

    should be:

    $search = array(
    	'src="',
    	'href="'
    );

    I worked around the above problem with my own filter, but it would be nice to not have to do that 🙂

    2. When the page content is empty, wp softlinks throws a warning.

    A simple check for empty content on line 141 would fix this. Something like:

    if ( empty($content) ) return $content;

    If you don’t have time to update the plugin, is there any way I can contribute? Through github / bitbucket or similar?

Viewing 1 replies (of 1 total)
  • With a new installation of v4.4, and a desire to avoid this common issue, I started looking for a solution today and found this plugin. It looks like the author lost interest. If we can post to the SVN repo then perhaps that’s the way to contribute?

    Or can someone recommend another technique or a plugin like this that works with the latest release?

Viewing 1 replies (of 1 total)

The topic ‘Found 2 bugs’ is closed to new replies.