Jump to content

2hoch11

Members
  • 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

Full Member (4/6)

16

Reputation

  1. …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?
  2. @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;
  3. @Robin S Thank you! Must set this as my homepage… ?
  4. When I use FieldtypeURLLanguage as a custom field for an image field there is nothing rendered in the backend. Is there a solution for this? I also tried FieldtypeAssistedURL but no luck…
  5. I tried to use it as as a custom field in an ImageField but no luck… ?
  6. 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.) ?‍♂️
  7. I have a similar problem with Textareas… How can i downgrade to 3.0.226?
  8. 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…
  9. @adrian now I replaced InputfieldAssistedURL.js and it seem to work…
  10. 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":
  11. I installed what you posted: https://github.com/adrianbj/processwire-fieldtype-assisted-url The pw backend says it's the version 2.0.0
  12. 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
  13. …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.
  14. 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...
  15. 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?
×
×
  • Create New...