Everything posted by teraßyte
-
Beta 12 is now available.
I’ll let you know about the laggy editor. I still see some lag, but it seems better than before. So that’s a step in the right direction at least. 🙃
-
upgrade stuck during the beginning of process
As far as I recall: Version 4.4 doesn’t support PHP 8, which is why you need 7.4. However, support for PHP 7.4 was added in version 4.4.10, if you have a previous version, you might need an even older PHP version: https://invisioncommunity.com/release-notes/4410-r93/ 4.4.10 Release Notes Added support for PHP 7.4 PHP 8 was supported starting with version 4.6. Only version 4.7 supports PHP 8.1 PHP 8.2+ is not supported by version 4, but only by the new 5.0.0 version. While it’s deprecated, if you want to restore your 4.4 version backup, you need to use 7.4 (or an earlier version if you’re not on 4.4.10). 🙄
-
New public bug tracker
The description of this club’s forum:
-
New public bug tracker
Nope. I still see the description pointing to the wrong URL: https://invisioncommunity.com/forums/forum/539-beta-discussion/ The tracker word is still linked to https://invisioncommunity.com/ic5bugs/bugs/ rather than https://invisioncommunity.com/invision-community-5-bug-tracker/
-
upgrade stuck during the beginning of process
Switch back to PHP 7.4 for version 4.4.0.
-
Invision Community 5 Open Beta Testing
And if you have modifications installed, be sure to check there is already a compatible version available.
-
New public bug tracker
As long as I remember what I already reported… 😹
-
Color in menu not appearing
Does it happen always on the same pages? Or randomly? If it's random, it could be an issue loading the CSS files. Does your browser console have any errors/warnings when it happens?
-
Image icons not showing IC5B11
teraßyte replied to Code Name Jessica's topic in Invision Community 5: Beta Testing's Beta DiscussionKnown bug. Matt already mentioned they'll release a new version soon with a fix for profile photos. 👍
-
[[Template core/front/global/mobileFooterBar is throwing an error. This theme may be out of date.
teraßyte replied to ClawOfWinterfell's topic in Invision Community 5: Beta Testing's Beta DiscussionThat's because of how IDM (Internet Download Manager) works. You most likely already have other 4 files in the Downloads directory so the app renames the file progressively to avoid overwriting existing ones: Invision_Community.zip Invision_Community_1.zip Invision_Community_2.zip Invision_Community_3.zip
-
Downloads homepage has too little info and too much wasted space
I find the downloads homepage has too little info on it compared to its v4 version: Featured box: The button to directly download the file without opening its page is no longer included. I can see why it was removed, though. However, only the number of downloads is shown. Nothing for comments, reviews, purchases, or rating (well, I don't really care about this one 😹). What's New box: Lots of empty white space below the image/title since only the uploader name and date are shown. The image being much bigger than before only further increases the wasted space. I can only see "3 and a half" files compared to "5 and a half" v4 provided a lot more info that's missing: downloads purchases comments (it seems the template includes code for this, but the count is hidden and there's a broken pluralization string) rating (it seems the template includes code for this, but the element is hidden with CSS) Highest Rated & Most Downloaded boxes : Maybe you could also include the number of comments/reviews when there are some? While I can change some things through CSS (image size and rating?) I can't add what's not there since we can't edit templates directly anymore and there are no hook points. 😕 === P.S.: I tested the page on both 1920x1080 and 2560x1440 resolutions. So it's not like the data is hidden because there is no space (for example: phone).
-
$form->addHeader on a UINode extension?
Here's an example: public function formElements() : array { $newFields = array(); # Create fields $newFields['test1'] = new Text( 'test1' ); $newFields['test2'] = new Text( 'test2' ); # Call setPosition for each field $newFields['test1']->setPosition( NULL, 'TAB' ); $newFields['test2']->setPosition( 'test1', 'TAB' ); return $newFields; } You have to call setPosition() for each field to add a new tab, but it's possible.
-
$form->addHeader on a UINode extension?
You can use setPosition() on the fields to create a new tab. That's already covered at least. 🙂
-
$form->addHeader on a UINode extension?
More like I have a client with a custom modification that does exactly that... Guess I'll have to do some JS magic tricks for now. 😹
-
$form->addHeader on a UINode extension?
How about adding buttons to the forms? That won't work with a template since I'd need the button near the save one. 🤔
-
$form->addHeader on a UINode extension?
Since the extension specifically calls $form->add() on the returned elements we also can't add messages, dummy rows, HTML rows, buttons, etc. 🙄
-
Personalized URLs for Profiles and Communities
If a name changes the old URL won't work anymore and can't be redirected unless there's an unchanging value (the ID in this case). While it "can" be done, and I know some people have this setup in their custom apps, I doubt we'll ever see this supported in the default URLs.
-
Forum Index
Yep... 🤷♂️
-
Forum Index
It's a theme setting now. Users can no longer choose. What you can do instead is create a new theme for each layout option. You'll need 3 separate themes: Table Grid Fluid
-
Changing the location of followers in profile in beta 7 is not good
Yeah, that layout is ugly. It should be changed to something like: X Followers Options --- FOLLOWER AVATARS BELOW ---
-
Here's Beta 6
The Support area has been removed from Commerce in v5, so that file won't be overwritten no matter what as it's not present anymore. The code should avoid loading extensions not present anymore in the extensions.json file. 🤔
-
Five Invision Community 5 features your members will love
For developers maybe. It doesn't make much sense for normal users who used to have it as a top-level button in v4. I've already had several clients ask me where to find it after they upgraded to the beta version. 🙄
-
Developer Mode problem.
Based on that screenshot, it looks like the browser is unable to load the CSS files. Do you have any errors in your browser's console?
-
Here's Beta 6
Go to /admin/upgrade/ and follow the instructions.
-
Developer Mode problem.
Did you delete the default theme with ID 1 at some point? IN_DEV looks for that theme ID unless you setup a DEFAULT_THEME_ID constant with a different theme ID value.