super_st submitted a new resource: Bootstrap 3 Theme - Responsive webid theme Read more about this resource...
Hi Super_st, I installed this great theme and is working nice, but I need a little help because maybe i did some wrong, when i try to list an item I can upload a pictures, when I click to upload pictures sendme this error "You browser doesn't have Flash, Silverlight, Gears, BrowserPlus or HTML5 support" I attach the window as image. Thanks in advance!!
Hmm not come across that before, try either uploading the upldgallery file again or replacing it with the one from the theme where you know it worked
I am not sure if this is a real solution, but, I replaced the file upldgallery.tpl in folder themes/bootstrapthree, I copied the file upldgallery.tpl in folder themes/default and pasted it in themes/bootstrapthree and now is working! in other words, copy the file upldgallery.tpl in the folder themes/default and paste it in the folder themes/bootstrapthree sorry for my english
Yes it may be due to the differences in the security update from this thread http://www.webidsupport.com/forums/index.php?threads/security-fix-for-versions-1-1-and-1-1-1.8345/ So basically using your working default theme upldgallery.tpl should fix it.
Thank you super_st, this time after replacing upldgallery.tpl with the default one, images are showing in the front page.
I have problem with upload pics from this cool theme. When i try to add i see com. on popup: You browser doesn't have Flash, Silverlight, Gears, BrowserPlus or HTML5 support. I use Firefox with Flash and Html5 support (last version). Any ideas?
Please read the resource discussion for solution http://www.webidsupport.com/forums/index.php?threads/bootstrap-3-theme.8637/ I will try and update the theme this week to work
Had a comment on the captcha not showing on mobile device correctly. This is due to the captcha not being responsive and is not in theme files. Please try this fix find in inc/captcha/securimage.php: Code: function show_html($background_image = '') { global $system, $MSG; return ' <div style="width: 550px; display:block; margin-left:333px; margin-right:auto; margin-top:15px;"> <div style="width: 120px; float: left; height: 55px; display:block;">' . $MSG['757'] . ':</div> <div style="width: 430px; float: left; height: 55px; display: block;"> <img id="siimage" align="left" style="padding-right: 5px; border: 0" src="' . $system->SETTINGS['siteurl'] . 'captcha.php?sid=' . md5(uniqid(time())) . '" /> <a tabindex="-1" style="border-style: none" href="' . $system->SETTINGS['siteurl'] . 'captcha_play.php" title="Audible Version of CAPTCHA"><img src="' . $system->SETTINGS['siteurl'] . 'inc/captcha/images/audio_icon.gif" alt="Audio Version" align="top" border="0" onclick="this.blur()" /></a><br /> <a tabindex="-1" style="border-style: none" href="#" title="Refresh Image" onclick="document.getElementById(\'siimage\').src = \'' . $system->SETTINGS['siteurl'] . 'captcha.php?sid=\' + Math.random(); return false"><img src="' . $system->SETTINGS['siteurl'] . 'inc/captcha/images/refresh.gif" alt="Reload Image" border="0" onclick="this.blur()" align="bottom" /></a> </div> <div style="clear: both; line-height: 5px; display: block;"></div> <div style="width: 120px; float: left; height: 25px; display:block;">' . $MSG['758'] . ':</div> <div style="width: 430px; float: left; height: 25px; display:block;"> <input type="text" name="captcha_code" size="8" maxlength="8" /> </div> </div>'; } change to: Code: function show_html($background_image = '') { global $system, $MSG; return ' <div style="width: 100%; display:block; margin-right:auto; margin-top:15px;"> <div style="width: 120px; display:block;"><label>' . $MSG['757'] . '</label></div> <div style="width: 100%; float: left; min-height: 60px; display: block;"> <img id="siimage" align="left" style="padding-right: 5px; width: 90%; border: 0" src="' . $system->SETTINGS['siteurl'] . 'captcha.php?sid=' . md5(uniqid(time())) . '" /> <a tabindex="-1" style="border-style: none" href="' . $system->SETTINGS['siteurl'] . 'captcha_play.php" title="Audible Version of CAPTCHA"><img src="' . $system->SETTINGS['siteurl'] . 'inc/captcha/images/audio_icon.gif" alt="Audio Version" align="top" border="0" onclick="this.blur()" /></a><br /> <a tabindex="-1" style="border-style: none" href="#" title="Refresh Image" onclick="document.getElementById(\'siimage\').src = \'' . $system->SETTINGS['siteurl'] . 'captcha.php?sid=\' + Math.random(); return false"><img src="' . $system->SETTINGS['siteurl'] . 'inc/captcha/images/refresh.gif" alt="Reload Image" border="0" onclick="this.blur()" align="bottom" /></a> </div> <div style="clear: both; line-height: 5px; display: block;"></div> <div style="width: 120px; float: left; height: 30px; display:block;"><label>' . $MSG['758'] . '</label></div> <div style="width: 100%; height: 30px; display:block;"> <input type="text" name="captcha_code" size="9" maxlength="8" /> </div> </div>'; } Hope that works
Alas, did not work for me. However, tweaked what you did above and the below worked well: Code: function show_html($background_image = '') { global $system, $MSG; return ' <div style="width: 100%; display:block; margin-left:333px; auto; margin-top:15px;"> <div style="width: 120px; display:block;"><label>' . $MSG['757'] . '</label></div> <div style="width: 45%; float: left; min-height: 60px; display: block;"> <img id="siimage" align="right" style="padding-right: 5px; width: 90%; border: 0" src="' . $system->SETTINGS['siteurl'] . 'captcha.php?sid=' . md5(uniqid(time())) . '" /> <a tabindex="-1" style="border-style: none" href="' . $system->SETTINGS['siteurl'] . 'captcha_play.php" title="Audible Version of CAPTCHA"><img src="' . $system->SETTINGS['siteurl'] . 'inc/captcha/images/audio_icon.gif" alt="Audio Version" align="top" border="0" onclick="this.blur()" /></a><br /> <a tabindex="-1" style="border-style: none" href="#" title="Refresh Image" onclick="document.getElementById(\'siimage\').src = \'' . $system->SETTINGS['siteurl'] . 'captcha.php?sid=\' + Math.random(); return false"><img src="' . $system->SETTINGS['siteurl'] . 'inc/captcha/images/refresh.gif" alt="Reload Image" border="0" onclick="this.blur()" align="bottom" /></a> </div> <div style="clear: both; line-height: 5px; display: block;"></div> <div style="width: 120px; float: left; height: 30px; display:block;"><label>' . $MSG['758'] . '</label></div> <div style="width: 45%; height: 30px; display:block;"> <input type="text" name="captcha_code" size="9" maxlength="8" /> </div> </div>'; }
Hi super-st, I found a error in register after click on link confirm account. These errors: Notice: Use of undefined constant error - assumed 'error' in /home/u223991712/public_html/cache/tpl_bootstrapthree_confirm.tpl.php on line 6 Notice: Use of undefined constant confirm - assumed 'confirm' in /home/u223991712/public_html/cache/tpl_bootstrapthree_confirm.tpl.php on line 10 Notice: Use of undefined constant confirmed - assumed 'confirm' in /home/u223991712/public_html/cache/tpl_bootstrapthree_confirm.tpl.php on line 19 They try access the PAGE constant: Code: $this->_rootref['PAGE'] Where this constant is created? Before this error, these errors are shown: Code: Notice: Use of undefined constant error - assumed 'error' in /home/u223991712/public_html/includes/template.php(165) : eval()'d code on line 6 Notice: Use of undefined constant confirm - assumed 'confirm' in /home/u223991712/public_html/includes/template.php(165) : eval()'d code on line 10 This error also is in default: Code: Notice: Use of undefined constant error - assumed 'error' in /home/u223991712/public_html/cache/tpl_default_confirm.tpl.php on line 7 Notice: Use of undefined constant confirm - assumed 'confirm' in /home/u223991712/public_html/cache/tpl_default_confirm.tpl.php on line 11 Notice: Use of undefined constant confirmed - assumed 'confirmed' in /home/u223991712/public_html/cache/tpl_default_confirm.tpl.php on line 20 Thanks.
Hmm not come across this on mine, not even sure if it's theme related or not :s have done a search on webid and found this post which has similar errors http://www.webidsupport.com/forums/index.php?threads/help-with-errors.4448/ but not sure if it will help
Thanks, I will try this but first I need upgrade my hostinger account to upload many files. My account was blocked to ftp clients!
super_st, I found a error in select_category.tpl on line 34. Please change to this: Code: <option value="">{L_2__0047}</option>