We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Simple tip - Hot Or Not | Forum

dave Leader
dave Aug 15 '13

One thing i did to help my members understand is inside the

 

ow_plugins/hotphoto/views/components/random_photo.html

 

find this code on the bottom

           
    </div>
    {/if}
</div> 
 
{/block_decorator}

 

and just BEFORE that  </div>

 

add this

 

<!-- added -->
     <br />
      You will be shown random images and you rate them accordingly or click next to skip it.
<!-- end add -->

 

so it should look like this now

 

<!-- added -->
     <br />
      You will be shown random images and you rate them accordingly or click next to skip it.
<!-- end add -->
             
    </div>
    {/if}
</div>  
 
{/block_decorator}

 

then save the file and clear your cache and now at least your members will understand what they are suppose to do when they arrive on the page.  

 

:)

 


              

The Forum post is edited by dave Aug 15 '13
dave Leader
dave Mar 27 '14
As another tip if you notice that the image and the rate section are overlapping which was the issue in my case just do this: 


at the top of the same file random_photo.html  find this code and change the width from 510/500 to 430 and that should do the trick. 


{style}

{literal}    

.photo_preview_image    {       

 padding: 5px;         

width: 430px;  /* was 510  */    

}    

.photo_preview_image img    {        

height: auto;        

width: 430px;  /* was 500 */    

}

{/literal}

{/style}

The Forum post is edited by dave Mar 27 '14
You do not have permission to reply this topic