Skocz do zawartości

Ranking

  1. DawPi

    DawPi

    Manager


    • Punkty

      59

    • Postów

      78 190


  2. Split

    Split

    Użytkownik


    • Punkty

      19

    • Postów

      309


  3. Danloona

    Danloona

    Użytkownik


    • Punkty

      17

    • Postów

      87


  4. ferstel

    ferstel

    Tłumacz


    • Punkty

      14

    • Postów

      38


Popularna zawartość

Zawartość, która uzyskała najwyższe oceny od 11.04.2025 uwzględniając wszystkie działy

  1. 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ć.
    Darmowy
    5 punktów
  2. Hej. Również jestem zainteresowany, służę pomocą
    4 punkty
  3. 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
  4. Z samego poziomu IPS nie da rady. Możesz skorzystać z wtyczki do tego przystosowanej - Change Topic & Post Authors.
    2 punkty
  5. 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
  6. IC5 does NOT have plugins. All addons are made as applications now.
    2 punkty
  7. 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 day
    2 punkty
  8. 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
  9. 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
  10. 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
  11. A tutaj patrzyles https://invision-market.com. ?
    2 punkty
  12. v5 jest praktycznie przetłumaczony ale zawsze się przyda więcej rąk do pomocy
    2 punkty
  13. [data-ips-hook="galleryCommentWrap"] > .ipsPhotoPanel > .ipsUserPhoto, .ipsPhotoPanel .ipsAvatarStack { width: var(--i-photoPanelAvatar, 3em); }
    2 punkty
  14. Szybko poszło! Witamy @DracoBlue!
    2 punkty
  15. 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
  16. I'm reinforcing @opentype's request. It would be really great news to see the return of this application for V5.
    2 punkty
  17. 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
  18. 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-641218
    1 punkt
  19. Witamy nowego tłumacza @ferstel! Mamy nadzieję, że pierwsze wydanie tłumaczenia do IC5 ujrzy światło dzienne niebawem.
    1 punkt
  20. 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 @DawPi
    1 punkt
  21. Works for every type of the content my friend. For IC5? I think yes.
    1 punkt
  22. 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
  23. Hejka, w swoim archiwum znalazłem taki plugin z invisionfocus.de. Zobacz może ci zadziała. Activity Block.xml
    1 punkt
  24. Now is fixed - that was chatbox plus - 😊👍
    1 punkt
  25. Tak, masz polskie locale ustawione w języku polskim?
    1 punkt
  26. jak wyjdzie v6 to może wyjdzie tłumaczenie do v5 😜
    1 punkt
  27. 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
  28. 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
  29. 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
  30. 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
  31. my CP - on server - all is ok - something wrong with @OnlyMe 's plugin
    1 punkt
  32. thanx for update cool theme keep up the good work
    1 punkt
  33. So after checking from @Mesharsky is not from application is from our servers. Thank you Mesharsky!!!
    1 punkt
  34. Hello Welcome at Invisionize, You can use .ipsUserPhoto class under some parent gallery class. something like .galleryCommentPhoto .ipsUserPhoto
    1 punkt
  35. 1 punkt
  36. Pierwsze forum na tym miałem, prosty skrypt a nie jak IPB zakręcone w kodzie 😛
    1 punkt
  37. To już zleconko. Nie kojarzę takiej. zresztą nie ma jak szukać jak zamknęli MP. 😕
    1 punkt
  38. https://forum.invisionize.pl/files/file/932-dp5-pm-viewer/
    1 punkt
  39. Po prawie dwóch latach bezinteresownej pomocy, niedawno wpadła pierwsza wpłata. Dziękuję!
    1 punkt
  40. Nie widziałem czegoś takiego. I mam nadzieję, że nie powstanie. Bo "cały sens" forów straci rację bytu.
    1 punkt
  41. Hello my friend, let me check it again. I'll back to you shortly.
    1 punkt
  42. Hi. I will add it in the next version next week.
    1 punkt
  43. 1 punkt
  44. 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
  45. It's fixed, thank you.
    1 punkt
Ten Ranking jest ustawiony na Warszawa/GMT+02:00
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę.