Ranking
-
uwzględniając wszystkie działy
- We wszystkich działach
- Wydarzenia
- Komentarze do wydarzeń
- Opinie o wydarzeniu
- Wpisy na blogu
- Komentarze w blogu
- Grafiki
- Komentarze do grafik
- Opinie o grafice
- Albumy
- Komentarze w albumach
- Recenzje albumów
- Pliki
- Komentarze do plików
- Opinie o pliku
- Tematy
- Odpowiedzi
- Aktualizacje statusu
- Odpowiedzi na komentarze
-
Rok
-
Cały czas
28 Maja 2009 - 11 Kwietnia 2026
-
Rok
11 Kwietnia 2025 - 11 Kwietnia 2026
-
Miesiąc
11 Marca 2026 - 11 Kwietnia 2026
-
Tydzień
4 Kwietnia 2026 - 11 Kwietnia 2026
-
Dzisiaj
11 Kwietnia 2026
- Wprowadź datę
-
Cały czas
Popularna zawartość
Zawartość, która uzyskała najwyższe oceny od 11.04.2025 uwzględniając wszystkie działy
-
Wersja 20.0.2
6 pobrań
Spolszczenie, które znacie od lat - teraz w wersji dla Invision Community 5. IC5 to platforma napisana praktycznie od zera. Nowy silnik, nowa architektura, mnóstwo nowych fraz. Nasz zespół wziął się za robotę i przygotował polskie tłumaczenie, które obejmuje wszystkie kluczowe aplikacje - od forum i galerii, przez pliki i blogi, aż po sklep i strony. Krótko mówiąc: jeśli tego używasz, mamy to przetłumaczone. Instalacja wygląda tak samo jak w IPS4 - wchodzisz do ACP, zakładka Customization > Languages, klikasz + Create New, przechodzisz na zakładkę Upload, wgrywasz plik XML, wybierasz lokalizację polski (Polska) i zapisujesz. Gotowe. Aktualizację spolszczenia do kolejnych wersji robisz przez Wyślij nową wersję przy języku polskim. Jedno zastrzeżenie - to pierwsze wydanie pod IC5, a nowych fraz było naprawdę dużo. Mogą trafić się tu i ówdzie jakieś potknięcia stylistyczne czy niezręczne sformułowania. Jeśli coś takiego znajdziesz, nie przemilczaj tego - zgłoś na forum, a zespół tłumaczy się tym zajmie. Każde zgłoszenie ma znaczenie i naprawdę pomaga nam tę paczkę doszlifować.Darmowy5 punktów -
4 punkty
-
Cześć, Chętnie się zgłoszę do pomocy przy tłumaczeniu. Znajomość angielskiego jest u mnie na odpowiednim i wystarczającym poziomie, ponieważ nie raz przygotowywałem tłumaczenia wtyczek / aplikacji pod MyBB, więc wtedy cała aplikacja była tłumaczona odpowiednio, bez jakichkolwiek błędów / kleksów 😁 Obecnie jestem Glob. Moderatorem na Pecetowiczu, więc troszkę siedzę w tematach silników CMS, i tak jak wcześniej wspomniałem - problemów z przygotowaniem nowych wersji językowych do wtyczek nie mam problemu. Wcześniej swoją przygodę w sieci prowadziłem jako administrator for internetowych cs itp, oraz obecnie jako grafik ( głównie szablony). Jeżeli jesteś chętny do nawiązania współpracy, odezwij się do mnie @DawPi w ostatniej naszej konwersacji ze szczegółami.3 punkty
-
Z samego poziomu IPS nie da rady. Możesz skorzystać z wtyczki do tego przystosowanej - Change Topic & Post Authors.2 punkty
-
Bardziej bym zmienił sposób sprawdzania interwałów, bo jest ich 10, jezeli 10 jest takich samych i mają taki sam czas odświeżenia przez użytkownika to następuje blokada.2 punkty
-
2 punkty
-
Hi, Following up on the issues I reported previously with the Popp theme, I took some time to dig deeper into the code to understand what was going on, both on the theme side and in IPS 5 core. I was honestly surprised to discover that IPS 5 has completely removed parent-child theme inheritance. The `set_parent_id` column still exists in the database, but it's never referenced anywhere in the PHP codebase. So the idea of using a child theme to preserve customizations across updates, which seemed like the natural solution, simply isn't possible anymore (crazy...). That said, I did manage to identify and fix the issue where the site was loading in light mode instead of the configured dark default for guests and private browsing sessions. The root cause turned out to be in the color scheme switcher script included in the "Scripts" custom template. When no cookie is set (first visit, incognito), the script defaults to `schemes[0]` which is `'light'`, effectively overriding the server-rendered dark scheme. I've detailed both issues below with the exact root causes and suggested fixes, the color scheme bug which can be fixed on the theme side, and the css_variables overwrite on update which appears to be an IPS 5 core limitation but could potentially be mitigated at the theme packaging level. Hope this helps! Bug 1: Color scheme defaults to "light" for guests / private browsing Environment: IPS Community 5.0.16, Popp theme, default scheme set to "dark" Problem: When a visitor accesses the site without any cookies (private/incognito browsing, first visit), the page briefly loads in dark mode (correct, server-rendered `data-ips-scheme='dark'`) but is then immediately overridden to light mode by the Popp color scheme switcher script. Cause: The custom template "Scripts" (hookpoint `core/front/global/globalTemplate:body`) contains the color scheme toggle logic. At the end of the `DOMContentLoaded` handler: javascript const savedScheme = ips.utils.cookie.get('acpthemedefault'); currentIndex = schemes.indexOf(savedScheme); if (currentIndex === -1) currentIndex = 0; applyColorScheme(schemes[currentIndex]); When there is no cookie (new visitor, private browsing), `ips.utils.cookie.get('acpthemedefault')` returns `null`. `schemes.indexOf(null)` returns `-1`, so `currentIndex` falls back to `0`, which maps to `schemes[0]` = `'light'`. The script then calls `applyColorScheme('light')`, overriding the server-rendered dark scheme. This happens regardless of the theme's `set__i-default-scheme` setting. Suggested fix: When no cookie is found, the script should not override the server-rendered scheme. Replace: javascript const savedScheme = ips.utils.cookie.get('acpthemedefault'); currentIndex = schemes.indexOf(savedScheme); if (currentIndex === -1) currentIndex = 0; applyColorScheme(schemes[currentIndex]); With: javascript const savedScheme = ips.utils.cookie.get('acpthemedefault'); currentIndex = schemes.indexOf(savedScheme); if (currentIndex === -1) { /* No cookie found - keep the server-rendered default scheme */ return; } applyColorScheme(schemes[currentIndex]); This way, if the user has never explicitly chosen a scheme, the theme's configured default (set via `set__i-default-scheme` in the theme editor) is respected. --- Bug 2: Theme editor customizations lost on theme update (css_variables overwrite) Environment: IPS Community 5.0.16, Popp theme Problem: When importing a Popp theme update (XML), all theme editor customizations are lost: colors, slider configuration, layout settings, font choices, dark mode variables, etc. Ccause: This appears to be an IPS 5 core issue rather than a Popp-specific bug. The IPS theme import code in `applications/core/modules/admin/customization/themes.php` (around line 514) simply overwrites the `set_css_variables` column with whatever is in the XML: php case 'css_variables': $set->css_variables = $xml->readString(); break; There is no merge logic, no comparison between the existing customizations and the imported defaults. The `saveHistorySnapshot()` call made before import only saves templates and CSS to `core_theme_content_history`, but does NOT include `css_variables`, `view_options`, or `theme_editor_data`. The IPS default theme (set_id 0) stores its configurator values in the master CSS file (`1-2-settings.css`) as CSS custom properties (e.g., `--set__i-default-scheme: system`). These defaults are always present and the user's overrides in `set_css_variables` are merged on top at runtime (in `getCssVariables()`). Themes Popp store ALL their configuration (slider, custom colors, layout, etc.) directly in `set_css_variables`. When the import replaces this column with the XML defaults, ALL customizations are lost, there's no fallback like the master CSS provides for the default theme. Suggested improvements: Consider shipping the theme XML without `<css_variables>` content, or with only the theme's own default variables. This way, user customizations in `set_css_variables` would not be overwritten during updates. My actual solution: We've created a backup/restore script that dumps and restores the `set_css_variables` and `set_theme_editor_data` columns before/after each theme update. This works but is fragile and requires manual intervention. Thanks for reading and have a nice day2 punkty
-
W szablonie klase dopakowałam. Tylko, że ja mam takie tendencje , że jak zaczne modyfikować, to pół strony mi sie rozjedzie, a chcialabym wycelować od razu . Nic, trzeba będzie się douczyć . Chętnie twoją stronę poczytam . Dzięki , wzajemnie i niech moc będzie z Tobą zawsze :)))2 punkty
-
Możesz to zrobić na poziomie Szablonów w pages, albo na poziomie CSS w custom tak jak wszystko. Ja nie znam innego patentu niż szukanie przez developer tools, i doklejanie w custom css zmian.2 punkty
-
Wpisz w konsolę frazę "locale". I Sprawdź co Ci wyświetla. Jeśli któreś będzie "en_US.UTF-8". To wykonaj poniższe komendy i zrestartuj usługę lub cały serwer.2 punkty
-
2 punkty
-
2 punkty
-
[data-ips-hook="galleryCommentWrap"] > .ipsPhotoPanel > .ipsUserPhoto, .ipsPhotoPanel .ipsAvatarStack { width: var(--i-photoPanelAvatar, 3em); }2 punkty
-
2 punkty
-
Nie wiem czy ktoś zwrócił uwagę, ale widać IPS wycofał się z opcji odnawiania miesięcznego (i opcji opłacania zaległych miesięcy). Tak więc teraz przenosząc się na nowe warunki płacimy 199$/rocznie. Jakiś czas temu potwierdzałem to jeszcze z Markiem z teamu IPS-u. Szczerze mówiąc nadal trochę boli fakt, że w ciągu dwóch lat od ostatniego odnowienia trzeba będzie odnowić licencję, w innym przypadku pozostanie kupno nowej, ale wychodzi na to, że muszą jakiś sens w tym widzieć. Dla mnie jest to poniekąd zrozumiałe, rynek for internetowych lata świetności ma za sobą widać to nawet po Invisionize, gdzie kiedyś siedziało dziennie naście osób a teraz od czasu do czasu tylko ktoś zagląda, lub w momencie kiedy potrzeba pomocy. Po prostu IPS musi coś robić, żeby się też utrzymać jako tako, choć nie twierdzę, że ich wszystkie decyzję są logiczne, np. zamknięcie Marketplace i zepchnięcie twórców na własną rękę, ale IPS już miał wiele kontrowersyjnych akcji za sobą, choćby anulowanie ludziom licencji wieczystych...2 punkty
-
I'm reinforcing @opentype's request. It would be really great news to see the return of this application for V5.2 punkty
-
A co pokaże takie coś: {{$cnt = \IPS\Session\Store::i()->getOnlineUsers( \IPS\Session\Store::ONLINE_MEMBERS | \IPS\Session\Store::ONLINE_GUESTS | \IPS\Session\Store::ONLINE_COUNT_ONLY, 'desc', NULL, NULL, TRUE );}} <a href="#" data-ipsTooltip title="{$count} online"><i class="fa-solid fa-signal"></i> {$cnt}</a> For devs - bitwise: /** * Fetch all online users (but not spiders) * * @param int $flags Bitwise flags * @param string $sort Sort direction * @param array|NULL $limit Limit [ offset, limit ] * @param int $memberGroup Limit by a specific member group ID * @param boolean $showAnonymous Show anonymously logged in peoples? * @return array */ abstract public function getOnlineUsers( $flags=0, $sort='desc', $limit=NULL, $memberGroup=NULL, $showAnonymous=FALSE );2 punkty
-
Be careful with this person, do not do any business with him https://www.pecetowicz.pl/topic/opinie-o-uzytkowniku-riv-split-104783/page/4/?&_rid=41889#findComment-6412181 punkt
-
Witamy nowego tłumacza @ferstel! Mamy nadzieję, że pierwsze wydanie tłumaczenia do IC5 ujrzy światło dzienne niebawem.1 punkt
-
Jakieś progresje? Wiadomo coś? Zawsze warto wrzucić jak jest skończone, a potem tylko fixy dawać po update'ach? Jeżeli dalej poszukujecie, dajcie znać. Czasu mam, w tygodniu na pewno coś by się poklikało i wszystko by było na porządku dziennym. @DracoBlue @DawPi1 punkt
-
1 punkt
-
Wersja 1.1.1
24 pobrań
Popp Theme is a fresh template for forums running on Invision Community 5. Designed by the author with extended functionality in mind, it is continuously updated with new features. Main Features: Built-in tools – numerous useful features to enhance forum management. Regular updates – each new version introduces additional improvements. Dark Mode option – available in an alternative dark-themed version. If you’re interested in checking out a demo or learning more, you can explore further here.149,99 zł1 punkt -
1 punkt
-
Hejka, w swoim archiwum znalazłem taki plugin z invisionfocus.de. Zobacz może ci zadziała. Activity Block.xml1 punkt
-
1 punkt
-
1 punkt
-
Tak, masz polskie locale ustawione w języku polskim?1 punkt
-
1 punkt
-
Może się komuś przyda. Pytałem IC o różnice pomiędzy wersjami Host a Cloud ... i podobno jest ich cała masa, lecz nie chcieli podać ile i jakie to są. Otrzymałem taką "grafikę", która ma "pomóc". Średnio pomocni. "Szybko podkreśliłem funkcje chmury w naszych pakietach, które nie są dostępne w wersji z własnym hostingiem."1 punkt
-
Mnie to podejście trochę dziwi, bo biorąc pod uwagę marginalizację for dyskusyjnych oraz istnienie na rynku konkurencji (nie ważne jakiej jakości, ale często wybieranej), która oferuje tańsze rozwiązania, oni ewidentnie chcą zostać z garstką klientów, którzy są bo byli...1 punkt
-
Czego się w zasadzie spodziewałeś? IPS od lat dążył, żeby wyeliminować jakiekolwiek 3rd-party dodatki. Zaczęło się od choćby zwalania na supporcie, że za większość problemów są odpowiedzialne addony third-party. w IC5 wywalili hooki, i wymusili, żeby nawet najprostsze hooki robić w formie aplikacji. IPS nie chce abyś zasadniczo instalował jakieś dodatki, pozwalają na to, żeby ludzie się nie burzyli o to, w 4.7 nawet edytor styli jest zbudowany tak, żeby był problem z edycją domyślnego stylu. Większość ruchów ostatnich IPSu skłania się do zasady, "my dostarczamy technologie, a ty się skup na contencie", stąd i też takie gorączkowe wypychanie ludzi do chmury, i najwyraźniej się im to sprawdza jak Matt stwierdził, że klienci self-hosted to dla nich 10-25% całości klientów. Model biznesowy się zmienił, internet się zmienia, fora odchodzą do lamusa na rzecz nowszych platform, czy to się nam podoba czy nie, a firmy tworzące tego typu produkty niestety muszą dostosować też swoje modele biznesowe do aktualnej sytuacji, stąd też IPS raczej powoli shiftuje się na klienta biznesowego nie hobbystę, który chce założyć jakieś tam forum o motorówkach załóżmy. Sami jesteśmy sobie tego winni, nie trzeba było gloryfikować discordów, facebooków czy innych tego typu tworów, a siedzieć i rozwijać swoje fora. IC5 szczerze mówiąc sam w sobie też jest dziwnym niedopracowanym tworem, z jednej strony pokastrowali wiele rzeczy, z drugiej wszystkie aplikacje są wrzucone do jednego wora, ale nie do końca. PS. Co by też nie mówić, większość dodatków została dodana też do samego softu, więc tak naprawdę poza shoutboxem, albo czymś innym to nie wiem co by było jeszcze potrzebne.1 punkt
-
Wersja 1.0.1
7 pobrań
Codey is a new template for forums based on Invision Community 5. Designed by the author with extended functionality in mind, it will be enhanced with additional features in future updates. Main Features: Built-in tools – numerous useful features for efficient forum management. Regular updates – each new version introduces additional improvements. Two color versions – available in both dark and light themes. If you’re interested in checking out a demo or learning more, you can explore further here.70 zł1 punkt -
1 punkt
-
1 punkt
-
So after checking from @Mesharsky is not from application is from our servers. Thank you Mesharsky!!!1 punkt
-
Hello Welcome at Invisionize, You can use .ipsUserPhoto class under some parent gallery class. something like .galleryCommentPhoto .ipsUserPhoto1 punkt
-
1 punkt
-
1 punkt
-
Pierwsze forum na tym miałem, prosty skrypt a nie jak IPB zakręcone w kodzie 😛1 punkt
-
To już zleconko. Nie kojarzę takiej. zresztą nie ma jak szukać jak zamknęli MP. 😕1 punkt
-
1 punkt
-
Po prawie dwóch latach bezinteresownej pomocy, niedawno wpadła pierwsza wpłata. Dziękuję!1 punkt
-
Nie widziałem czegoś takiego. I mam nadzieję, że nie powstanie. Bo "cały sens" forów straci rację bytu.1 punkt
-
1 punkt
-
1 punkt
-
1 punkt
-
1 punkt
-
1 punkt
-
Jak nie działają? Pokazałem na screenie, że działają. W dodatku właśnie to robi ta metoda (get): /** * Get Language String * * @param string|array $key Language key or array of keys * @return string|array Language string or array of key => string pairs */ public function get( $key ) { $return = array(); $keysToLoad = array(); if ( \is_array( $key ) ) { foreach( $key as $k ) { if ( \in_array( $k, array_keys( $this->words ), true ) ) { $return[ $k ] = $this->words[ $k ]; } else { $keysToLoad[] = "'" . \IPS\Db::i()->real_escape_string( $k ) . "'"; } } if ( !\count( $keysToLoad ) ) { return $return; } } else { if ( isset( $this->words[ $key ] ) ) { return $this->words[ $key ]; } $keysToLoad = array( "'" . \IPS\Db::i()->real_escape_string( $key ) . "'" ); } foreach( \IPS\Db::i()->select( 'word_key, word_default, word_custom', 'core_sys_lang_words', array( "lang_id=? AND word_key IN(" . implode( ",", $keysToLoad ) . ")", $this->id ) ) as $lang ) { $value = $lang['word_custom'] ?: $lang['word_default']; $this->words[ $lang['word_key'] ] = $value; $return[ $lang['word_key' ] ] = $value; } /* If we're using an array, fill any missings strings with NULL to prevent duplicate queries */ if ( \is_array( $key ) ) { foreach( $key as $k ) { if ( !\in_array( $k, $return ) and ! array_key_exists( $k, $this->words ) ) { $return[ $k ] = NULL; $this->words[ $k ] = NULL; } } } if ( !\count( $return ) ) { throw new \UnderflowException( ( \is_string( $key ) ? 'lang_not_exists__' . $key : 'lang_not_exists__' . implode( ',', $key ) ) ); } return \is_string( $key ) ? $this->words[ $key ] : $return; }1 punkt
-
1 punkt
Ten Ranking jest ustawiony na Warszawa/GMT+02:00
