Tutorial GoStock Script SEO Improvements Collection

PureGod

Member
Hello guys,
here you will find SEO optimization for the GoStock Free Stock Photos Script. If you have any other please feel free to share them below. :D

This optimization will add an alt tag with the image description, if there is one, to the preview image.

Not often a description?
Check out my auto description generator for GoStock! Click here!

Go to resources/views/images/show.blade.php and look for:
Code:
<div class="text-center margin-bottom-20">
        <img class="img-responsive" style="display: inline-block;" src="{{url('public/uploads/preview',$response->preview)}}" />
</div>
replace with
HTML:
<div class="text-center margin-bottom-20">
        <img
        @if( $response->description != '' )
            alt="{{ $response->description }}"
        @endif
        class="img-responsive" style="display: inline-block;" src="{{url('public/uploads/preview',$response->preview)}}" />
</div>
 
Last edited:
Top