The Arcive of vBulletin Modifications Site. |
|
[Chris] Rate My Photo (HorOrNot Clone) Details »»
|
|||||||||||||||||||||||||||
|
[Chris] Rate My Photo (HorOrNot Clone)
Developer Last Online: Sep 2013
Rate My Photo (Hot or Not Clone) by ChrisTERiS IMPORTANT This is NOT a Gallery addon. It focuses only to photo rating and not to photo presentation Please note that from 11 Aug 2013 you can get support only in my site http://www.teriakis.com Today is my birthday and as the time that I was celebrating the has passed, I decided to release an addon that I had somewhere in my HD. Is not the "killer" addon, but works fine, and as I know there is no other similar addon available. 1.- Installation
In all pages there is my copyright link back to my site. Removing it, or making it invisible is strictly prohibited. 4.- PRO version During the first week of November 2012, I'll release a commercial (PRO) version with more features and without copyright link in a low price. Enjoy it Christos Teriakis Show Your Support
|
|||||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
How do you post a photo? The attachment button doesn't work when I click it. Thanks. Nice mod by the way. This is what I see.
|
|
#3
|
|||
|
|||
|
Quote:
Chris |
|
#4
|
|||
|
|||
|
I am using chrome. And yes I only see the description. Let me try with IE.
|
|
#5
|
|||
|
|||
|
Same thing with Firefox.
|
|
#6
|
|||
|
|||
|
The 2nd screenshot in my post taken with FF 16.0.2. With Chrome 22.0 also works fine. I assume that you're not trying to upload photo with a device does not supports uploading (eg iPad).
Chris |
|
#7
|
|||
|
|||
|
Reverting back to the default style shows the upload box. Using my purchased custom style it won't show. Any ideas? Everything else seems to work good. Thanks.
|
|
#8
|
|||
|
|||
|
Quote:
Find: Code:
<input type="file" name="logo" id="logo" onblur="return CheckImageExt(this)" size="25"> Code:
<input type="file" name="logo" id="logo" size="25"> Code:
<script type="text/javascript">
function CheckImageExt(fld)
{
if (fld.value != '')
{
var image_ext = getFileExtension(fld.value);
var valid_images = new Array("jpg","jpeg","gif","png","JPG","JPEG","GIF","PNG");
if (valid_images.indexOf(image_ext) > -1)
{
return true;
}
else
{
alert('You can upload only .gif, .jpg, .jpeg, .png files.');
fld.value = '';
fld.select();
fld.focus();
return false;
}
}
else
{
return true;
}
}
</script>
<script type="text/javascript">
function getFileExtension(filename)
{
return filename.split('.').pop();
}
</script>
|
|
#9
|
|||
|
|||
|
Same results with the changes made. Here is my template.
PHP Code:
|
|
#10
|
|||
|
|||
|
I was expecting it as my code was a very simple javascript. Nothing special. As it works with the default template, then is a template issue so you need to contact your designer. He knows better what javascript calls has there. As a second thought. Try any other section of your site where there is upload box. Does it works?
Christos |
![]() |
|
|