-
Posts
63 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
2hoch11's Achievements

Full Member (4/6)
16
Reputation
-
module PrivacyWire - Cookie Management & async external asset loading
2hoch11 replied to joshua's topic in Modules/Plugins
…I made an TextInputField (site_setup_cookiebox_toggler_text) Then in the "Details" tab: Text Formatters > PrivacyWire Textformatter I added this field to the home template. Then I pasted this [[privacywire-choose-cookies]] in the text field. The outputted the field content for the frontend: $pages->get('/')->site_setup_cookiebox_toggler_text It works but I wantet this in the template (without that workaround). I tried this, but no luck: $privacyWire = $modules->get('TextformatterPrivacyWire'); echo $privacyWire->render("[[privacywire-choose-cookies]]"); What was your solution? -
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
2hoch11 replied to David Karich's topic in Modules/Plugins
@David Karich Is this module still in development? Could you please update that one line that @Gideon So suggested. That solved my PHP8 (and internal server) error. Thanks! Modify line 707 in /site/modules/AllInOneMinify/AllInOneMinify.module $_timestamp = ''; to $_timestamp = null; -
FieldtypeURLLanguage does not work as custom ImageField
2hoch11 replied to 2hoch11's topic in Multi-Language Support
@Robin S Thank you! Must set this as my homepage… ? -
InputfieldFloatRange - A range slider InputField
2hoch11 replied to eelkenet's topic in Modules/Plugins
I tried to use it as as a custom field in an ImageField but no luck… ? -
Call to a member function className() on null
2hoch11 replied to videokid's topic in General Support
Somehow someway the Textarea error disappeared… I uninstalled the MultiplierInputfield (there was a message that said something like "there ist data in the database but no plugin data… do you want to delete the dabase entries?". I said yes.) ?♂️ -
Call to a member function className() on null
2hoch11 replied to videokid's topic in General Support
I have the same problem. I have a fresh install of the latest PW and cannot edit any Textarea fields… "Call to a member function className() on null in wire/modules/Fieldtype/FieldtypeTextareaHelper.php:62" …so what exactly ist the solution? Did youinstall or delete the TextareaCounter module (witch i cannot find)? I found this: but this post is from 2014… -
@adrian now I replaced InputfieldAssistedURL.js and it seem to work…
-
If I'm opening the Module Update Page (/processwire/module/?reset=2) there ist nothing to update: On the module page, if I hit "Look for an update" the backend outputs: "That module is not currently tracked by the modules directory":
-
I installed what you posted: https://github.com/adrianbj/processwire-fieldtype-assisted-url The pw backend says it's the version 2.0.0
-
As Kholja mentioned: it works only if there is a Texarea Field that uses CKEditor. And ideed, it works… but this dependency is strange… but not technically
-
…in theory yes, but it does not behave like shown here: Meaning: the chain-button does not open the modal box. I am wondering why istn't this included in processwire as a default "URL" field? Thanks, anyway.
-
I am using ProFields but none of them opens an "Insert Link" modal box… I can remember I saw a module that does exactly that (url for internal or external pages, page select, target) but I can't find it anymore...
-
I had this moster on my search result page: $selector = "template=produkt, check2|check_temp=1, (title|text|text_editor_minimal|text_editor|text_editor2|text_editor3|search_index~=$q), (produkt_hersteller.title%=$q), (produkt_bereiche.title%=$q), (produkt_anwendungen.title%=$q), (produkt_verwendungen.title%=$q), (produkt_geratetypen.title%=$q), (produkt_gruppen.title%=$q), (produkt_verdichter.title%=$q), (produkt_kaltemittel.title%=$q), (produkt_gwp.title%=$q)"; It worked so far. After I updated PW to 3.0.165 I got an Internal Server error. So far so good. I updated SearchEngine too. No change. I removed piece by piece parts of the selector. Finally I realised that the subfield selectors (like produkt_hersteller.title) caused the error. Now I ended with this selector: $selector = "template=produkt, check2|check_temp=1, (title|text|text_editor_minimal|text_editor|text_editor2|text_editor3|search_index%=$q)"; Has anybody an idea why subfield selectors don't work anymore?