More Information for Project vB4
Installation
- Download the attached file
- Unizip and upload all files from upload/ folder to your vB folder
- Go to Admincp
- From Styles & Templates-> Style Manager-> Add New Style, import the file projectvb4-style-10Jul.xml from styles/ folder
- From Plugins & Products-> Manage Products-> Add/Import Product, import the file product-projectvb4.xml
- From Settings-> Options-> Project vB4 Options set the current 4 options
For reCaptcha Human Verification, I'm using kh99 reCAPTCHA ver.2. Just now I seen that kh99 has mark it as re-usable code, so I can include it on my package. Currently is not including, you must download and install it. But if you're using PHP 7 you must edit the file uploads/includes/class_humanverify_new_recaptcha.php
Change lines 12-14
PHP:
function vB_HumanVerify_New_Recaptcha(&$registry) { parent::vB_HumanVerify_Abstract($registry); }
PHP:
function vB_HumanVerify_New_Recaptcha(&$registry) { parent::__construct($registry); }
- Forum list
- Forum display
- Show Thread
- Modal Member Profile (not completed yet)
- Sidebar in slide panel
- Search is slide panel (with link to Advanced Search)
- User menu in slide panel (not completed yet with custom user menu)
- Navbar in slide panel (not completed yet as it does not shows extra menu). Currently it shows all menu options in a long list but I'll modify it to menu-> submenu-> subsubmenu
- Login / Register / Password Reset in modal
Ver. 0.2.0 Alpha
New Features
- Completed User Profile - Modal Window
- Completed User Profile - Page
- Added User Status
- Redesigned What's Going On
- Completed Show Thread by redesigning Thread Replies
- Added Thread icon and Thread Prefix in Forum display
- Modified (a bit only), New Thread page and removed unnecessary data from Asset Manager. Still not the best as I'm working on this, but at least works on mobiles.
- Modified 2 core files:
- includes/functions_forumlist.php to change poll icon with FA icon
- includes/functions_editor.php to remove the emoticons block on the right side of editor as it was getting wide space in mobile view.
- Disable Animation photos for Avatar and User Photo.
- Set Profile Picture Maximum Width (pixels) to 1200px
- Set Profile Picture Maximum Height (pixels) to 340px
- Set Profile Picture Maximum File-Size to 1024000 (sure you can set different filesize).
- Set Custom Avatar Maximum Width (pixels) to 150px
- Set Custom Avatar Maximum Height (pixels) to 150px
- Set Custom Avatar Maximum File-Size to 200000 (or anything else you prefer).
- Download and Unzip the file ProjectvB4-v0.2A.zip
- Upload all files from upload/ folder, overwriting the old ones
- Import product-projectvb4.xml selecting Allow Overwrite -> Yes
- Import Style XML File projectvb4-style-17Jul.xml selecting to Merge Into Style ProjectvB4
There are 2 small modifications in vB core files, but as the Licenses prohibits distribution of them, you must do these changes on your own.
1.- If you want to hide the emoticons from the right side of the editor to earn some space in mobile view (emoticon will still be available from the button menu), you must edit the file includes/functions_editor.php. Open it with a text editor (not Word and similar), and change line 551
From:
Code:
$usesmiliebox = true;
Code:
$usesmiliebox = false;
2.- To replace the Poll icon with a FA icon, your need to edit the file includes/functions_forumlist.php file 592
From:
Code:
return array('iconpath' => vB_Template_Runtime::fetchStyleVar('imgdir_misc') . "/poll_posticon.gif", 'title' => $vbphrase['poll']);
Code:
return array('iconpath' => '<i class="fa fa-bar-chart" aria-hidden="true" title="'.$vbphrase['poll'].'" style="float:left; margin-right:7px; color:green; font-size:18px;"></i>');
Remarks:
- I appreciate your patience but don't forget that its a huge product. I don't focus to release just a responsive theme but to redesign it the most that my knowledge permits me to do.
- Next release next Friday
Chris