-
Posts
60 -
Joined
-
Last visited
csaggo.com's Achievements

Full Member (4/6)
39
Reputation
-
New post – Implementing and using TinyMCE 6 in ProcessWire
csaggo.com replied to ryan's topic in News & Announcements
thank you @bernhard god, i still didn't find the time, but i WILL check it out in depth soon! -
New post – Implementing and using TinyMCE 6 in ProcessWire
csaggo.com replied to ryan's topic in News & Announcements
thank you @Denis Schultz simply adding it to sass uikit which i compile anyway makes a lot of sense -
New post – Implementing and using TinyMCE 6 in ProcessWire
csaggo.com replied to ryan's topic in News & Announcements
@ryani like tinymce alot. What i'm coming across that some stuff is not inline-css but classes like "align_center" now that works in the editor but my uikit-frontend does not know about this. I didn't figure out how to set it up that the align center entry uses uk-text-center instead or additionally? or do i have to remove the original align menu in the settings and set it up as my own "uikit-align" or is there a frontend css file i can simply add to frontend? -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
@kongondofor me this can be closed with padloper 2 version 8, latest pw 3.0.213 and php 8.2 i have no more issues here. so i am assuming something that was done in pw core fixed it -
on php 8.2 i have the same errors: for a temporary fix until it is updated i just added these lines to Padloper.module: public $padloperDownloads; public $outOfStock; // added for 8.2 public $productNotFound; // added for 8.2 public $checkYourOptions; // added for 8.2 public $session_id; // added for 8.2
-
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
@kongondo 1. yes, i just install blank profile for start usually (not sure about newest dev, if there are any profiles anymore, but it doesnt matter just a minimal pw-install with no language support) 2. in module core-modules just install/activate "Languages Support" 3. in setup-menu in addition to fields, templates and so on you now have languages with only one language (default) which is english 4. in setup for default language on the bottom there is a file field to upload core-translation files (there is also a link to the available language packs). Just upload the zip file for Deutsch right here, your backend is now translated to german. optional 5: in order to be able to navigate as you are used to you can add another language (english) just add english and dont upload a translation pack there. so it will be english as in default. You can switch in your user profile. -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
@kongondoits been a while sorry. so i just added language english and switched my user profile to it. and .... it works with english. so it is in fact a multilanguage issue. to reproduce -> activate language support. Have only default-language in place and import the translation files: https://processwire.com/modules/german/ EDIT: Additional info. Once i had a property on the product, set my profile to german again, edited the same product, the search works fine for the existing property. But when adding another one, it does not work on the new one. So very specifically, it does not work on newly added property-line when the language is not english. -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
hi @Jan Fromm thanks for sharing. so the obvious difference is that i have pw 3.0.201 will try with older version. -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
@kongondo More debugging: i changed the core InputFieldPageAutocomplete.js - init Method like this: init: function (id, url, labelField, searchField, operator) { var $value = $("#" + id); var $ol = $("#" + id + "_items"); var $input = $("#" + id + "_input"); alert("changing"); console.log(document.getElementById(id + "_input")); var newId = "testCsam" + Date.now(); $input.attr("id", newId); console.log(document.getElementById(newId)); return; When i open the product page i get the alert "changing" two times (once for Brand and once for Type in Classifcation tab) When i then add a line in Properties tab I also get the alert two times as expected (once for Property and once for Dimension) See the console output in the screenshot: for the classification fields everything works, the id is changed to my test id afterwards and the element is found. if i inspect the element i also see my test-id for the two properties-fields you first see that the console-log output allready looks different. and most importantly the element with the test-id is not found. It is also not changed when i inspect it. i dont know enough about htmx and its afterSwap but whatever is done in the triggered init-method is obviously not applied to the final dom-elemnt(s) (including eventlisteners) and does not work. -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
@kongondo it is in fact a JS issue: when i klick the little x on the right in order to clear the field, also nothing happens. It looks to me as if there simple all event-listeners missing for the input. EDIT: also the trash icon on the very right (to remove the whole property line) does not react on click. -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
/processwire/page/search/for?template=padloper-dimension&limit=50&status<8192&get=title this is the link, the autocomplete has in his attribute to search. if i past this manually i find my properties. so they are definitly published and would show up if only the search would start. -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
They are activated in the sense of beeing published. Can i see somewhere in the database if activated by Padloper? But i dont think thats the issue. As mentioned i monitored Networking in Debug Tools when typing in and there is no Ajax Request happening so it does not even try to find something. -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
Hi @kongondo sorry for delay was on vacation. i have just retried with padloper 002 but still no search happening when i type. Language Support is installed but only default language exists (we have imported german translations) PW is latest DEV (3.0.201) -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
Yes exactly for 1-3 4. i am not entirely sure but i think it actually did work at some point when i was playing around with it after first installing it. cant tell 100% to be honest. I also tried again with product settings to variants -> YES and even tho the markup js gets loaded, still nothing happens when i type the Property Name -
Adding Properties on Product Page does not work
csaggo.com replied to csaggo.com's topic in Padloper Support
@kongondo hi, in this case i dont need product variants. Properties should be available anyways right? For variants i need attributes correct? so 1. no i am not able to add properties to the product. 2. when i click add new property the form appears like in first screenshot 3. exactly 4. did not try with variants, only have products without so far. i tried with variant article now and you are correct the js gets loaded in this case. but i think it always should be as properties should be allowed regardless of variants.