• Resolved beggers

    (@beggers)


    Yoren,

    I have a couple of questions for you:

    1. I’m using your shortcode in a page to offer an image search and it is working but I’d like the results to include the full size image instead of the thumbnail.

    2. In the results, the one thing that is missing is a link to the original full article. Many people would want to read the article that the photo appeared in. This would also allow people to get the photographer’s name to avoid copyright problems.

    Can you please explain how to do these things? Thanks!

    Bryan

    https://wordpress.org/plugins/media-search-enhanced/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Yoren Chang

    (@1fixdotio)

    Hi Bryan,

    You can change the image size with mse_get_attachment_image_params filter:

    function my_params( $params ) {
    
    	$params['size'] = 'full';
    
    	return $params;
    }
    add_filter( 'mse_get_attachment_image_params', 'my_params' );

    Regarding your second request, maybe in the future release I’ll manage to add this feature.

    Thanks.

    Thread Starter beggers

    (@beggers)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Media Search Enhanced – search results’ is closed to new replies.