-
Posts
701 -
Joined
-
Last visited
Everything posted by Christophe
-
[SOLVED] Disable "add" button in Page Reference field
Christophe replied to Pavel Radvan's topic in General Support
Hello Pavel, In your page reference field, in the Input tab, is Allow new pages to be created from field? ... selected? Which Input field type have you chosen? -
I have resolved everything with children pages and a Page Reference field with single select *. I'm also using the PageEditChildren module. And with children pages I can use the VerifiedURLs pro module.
- 1 reply
-
- 2
-
-
Hello, I have tried several things without any success after reading several pages from different sections of the website. I even tried to use tagsList that I found about with Tracy Debugger but could'nt get very far. I first tried with the Pro Table field and ASM Select *, then, because it seemed impossible or too complicated, I tried the same but with children pages and Text Tags (new to me). Has someone already succeeded in retrieving separately the values and the labels from a Predefined options/tags list (Input tab) in a Text (Type) field with the Text Tags Input mode (Details tab)? Max tags/options is 1. In this case, there is a parent page displaying content from its children pages (I already get the single possible value. I can't get its label (like it was also the case with the Pro Table field). Even though I would have liked to be able to get it I don't need it this time). But in order to filter the children data "cards" displayed on the parent page, I need the value and the label for each Predefined options/tags that I defined in the Text Tags field. I can't manage to have a list of <li uk-filter-control=".{$value}"><a href="#">{$label}</a></li>. In Predefined options/tags list, I have a list of value=label, because in my language I can't have the same for both. Thanks in advance if anyone already faced this need and resolved it.
-
There are also the new URL/path hooks: https://processwire.com/blog/posts/pw-3.0.173/
-
Hi Bernhard, I removed RockFrontend.min.js because it's not needed as RockFrontend.js is already added automatically. The browser says it is related to the following line, certainly the only place where j is mentioned: (j = 0; j < attrs.length; j++) { I was just testing the rf-scrollclass attribute (with the css that is included in the docs): <footer class="tm-prose"> <div class="uk-container"> <div class="uk-text-right"> <a href='#' rf-scrollclass='to-top show-desktop@300 show-mobile@600'>Scroll to top</a> </div> ... I don't know the reason for the error message, so I'm just removing the attribute for the moment. I'll try again another time. Have a nice evening!
-
Hello Bernhard, I updated/upgraded ProcessWire and RockFrontend recently (ProcessWire 3.0.239, RockFrontend 3.15.1, PHP 8.1). I've just noticed 2 error messages in the consoles in Vivaldi and Firefox. (Debug mode is on. It's the same when it's off.) I wanted to try the Scrollclass so I added this in _init.php (RockFrontend profile): ->add('/site/modules/RockFrontend/RockFrontend.min.js', 'defer') I'm not sure if it works as intended as there is one error message related to RockFrontend.min.js. The error message related to RockFrontend.js (so the non minified version) already exists when the above code related to RockFrontend.min.js is not added. I don't remember noticing this error message related to RockFrontend.js before. So now, I see this in Firefox: Uncaught ReferenceError: assignment to undeclared variable j <anonymous> http://domainname.fr/site/modules/RockFrontend/RockFrontend.min.js?m=1716312961:5 <anonymous> http://domainname.fr/site/modules/RockFrontend/RockFrontend.min.js?m=1716312961:5 RockFrontend.min.js:5:278 Uncaught ReferenceError: assignment to undeclared variable j <anonymous> http://domainname.fr/site/modules/RockFrontend/RockFrontend.js?m=1716312961:258 <anonymous> http://domainname.fr/site/modules/RockFrontend/RockFrontend.js?m=1716312961:270 RockFrontend.js:258:10 <anonyme> http://domainname.fr/site/modules/RockFrontend/RockFrontend.js?m=1716312961:258 <anonyme> http://domainname.fr/site/modules/RockFrontend/RockFrontend.js?m=1716312961:270 And this in Vivaldi (chrome-based): RockFrontend.min.js?m=1716312961:5 Uncaught ReferenceError: j is not defined at RockFrontend.min.js?m=1716312961:5:279 at RockFrontend.min.js?m=1716312961:5:534 (anonymous) @ RockFrontend.min.js?m=1716312961:5 (anonymous) @ RockFrontend.min.js?m=1716312961:5 RockFrontend.js?m=1716312961:258 Uncaught ReferenceError: j is not defined at RockFrontend.js?m=1716312961:258:12 at RockFrontend.js?m=1716312961:270:3
-
RockFrontend Site Profile - RockFrontend + UIkit + TailwindCSS
Christophe replied to bernhard's topic in Themes and Profiles
[Deleted content] -
RockFrontend Site Profile - RockFrontend + UIkit + TailwindCSS
Christophe replied to bernhard's topic in Themes and Profiles
Hello Bernhard, A bit of context before the questions below in the message. I want to display a list of children of the parent pages that are using the template "parent-page". So, I have created parent-page.php (empty for the moment) in /site/templates. And ParentPagePage.php in /site/classes in which I have this (where I tested different things): <?php namespace ProcessWire; class ParentPagePage extends Page { public function listchildren() { return "Clickable list of children"; } } I had more elaborate code(s) in the return statement, but things weren't working so I just put a string in it to keep it simple. (I've just noticed that vscode and intelephense are writing "Undefined type 'ProcessWire\Page'." in the PROBLEMS tab.) So I had : Method DefaultPage::listchildren does not exist or is not callable in this context on pages that do not use the parent-page template (and use the basic-page template). Method HomePage::listchildren does not exist or is not callable in this context on the homepage. For the error messages and blank page(s) to disappear it seems that it is mandatory to use this in main.latte: {if $page->template == 'parent-page'} {$page->listchildren()} {/if} and not just {$page->listchildren()}. At one point with custom page classes I think I was hoping it would also remove the need for that if condition. In /site/templates/sections/main.latte I currently have the code that follows - at the end of the message now (we apparently can't escape having to use the |noescape filter). I simplified the code to only define and check $image (the code borrowed from another website was also defining and checking $images, so not only the first image, I don't remember why/if it was needed). SO, my question(s) is how could this code be simplified, in part in order to have cleaner code in this main.latte file? Which parts of the code should be in main.latte, which ones in ParentPagePage.php and which ones perhaps in parent-page.php? How would you organize/separate them in the different files? Also, can $image and $thumb be defined elsewhere? Etc. Thanks again in advance! I tried yesterday with simpler children list codes (without images and uikit markup), but it seemed complicated and not clean. And now it's more complicated. I've tried with code directly inside the return statement, and also with a variable and then returning the variable. $thumb is currently defined if $image exists. If I used <img n:if="..." src="... it would be changed. But perhaps it wouldn't be important if it wasn't defined inside the {if}...{/if}. <main> <div class="uk-container"> <h1>{$page->title}</h1> {$page->body|noescape} {if $page->template == 'parent-page'} {$page->listchildren()} {/if} <div n:if="$page->template == 'parent-page'" class='uk-child-width-1-3@m uk-grid-match uk-margin-small-top uk-margin-medium-bottom uk-text-center' uk-grid> <div n:foreach="$page->children() as $child"> <div class='uk-card uk-card-small uk-card-default uk-card-body'> <a class="h2" href="{$child->url}"> {var $image = $child->images->first()} {if $image} {var $thumb = $image->size(200, 150)} <img src="{$thumb->url}" width="{$thumb->width}" height="{$thumb->height}" alt="{$image->description}" /> {/if} <h2>{$child->title|noescape}</h2> </a> </div> </div> </div> </div> </main> -
RockFrontend Site Profile - RockFrontend + UIkit + TailwindCSS
Christophe replied to bernhard's topic in Themes and Profiles
Hello Bernhard, basic-page.php and home.php are empty template files. Are they only needed (even empty) if custom page class(es) php files that are related to them exist? Because latte files are used here I'm a bit confused about the (possible) role of these template files. In this site profile, in which use case(s) would they not stay empty? Could you please give one (or more) example(s)? Thanks in advance! NB: I don't want to use tailwind, but I'm curious about _tailwind.css, I think it's the first time I see the "_" prefix on a css file name. -
If there is a ruby one there should also be a python one ?: https://wagtail.org/ If ProcessWire didn't exist I probably would have already tried it. (I would also probably have tried a ruby one.)
-
Hello Ivan, Not yet. But unlike other interesting things that I haven't tried yet, I wanted to post the link anyway. I'll try it on another computer than my main one, on an old laptop or desktop, first with the "Mistral" model I think. A few GBs are needed if I remember correctly. During a few seconds I thought about the AIs taking control of our computers without asking permission in the future... They could also help to protect them. But let's not forget data poisoning. Have a nice week Ivan! Have a nice week also @szabesz!
-
https://jan.ai/
-
https://processwire.com/blog/posts/new-rte-for-pw/ (see Toolbar configuration) https://processwire.com/blog/posts/using-tinymce-6-in-processwire/
-
[Solved] RockPageBuilder Drag-and-Drop Compatibility with FireFox
Christophe replied to netcarver's topic in RockPageBuilder
OK, I'll open another topic if I can't resolve this. Edit: I thought it had disappeared but the less files error messages are coming back. I've just tried RockPageBuilder's Advanced Live Demo on Firefox, drag-and-drop doesn't work. On Vivaldi it works. https://processwire.com/talk/topic/29456-rockpagebuilder-drag-and-drop-compatibility-with-firefox/?do=findComment&comment=238563 -
[Solved] RockPageBuilder Drag-and-Drop Compatibility with FireFox
Christophe replied to netcarver's topic in RockPageBuilder
Could it be related in any possible way to the fact that in Firefox's console I have around 120 error messages of type request failed with status 404 linked to less files? With "strange" paths like https://www.project.loc/site/templates/bundle/var/www/project/site/modules/AdminStyleRock/styles/alfred.less and all the others like https://www.project.loc/site/templates/bundle/var/www/project/site/templates with less files in folders and sub-folders inside "templates". -
[Solved] RockPageBuilder Drag-and-Drop Compatibility with FireFox
Christophe replied to netcarver's topic in RockPageBuilder
Hello, With the rockpagebuilder profile, so there is draggable="false" and when clicking on the "crosses" handle to drag the content it becomes draggable="true" and sortable-chosen is added to the class. On Vivaldi I can see by default in the Styles tab section[Attributes Style] { -webkit-user-drag: none; } and when clicking (without releasing) I then see section[Attributes Style] { -webkit-user-drag: element; user-select: none; } But in Firefox I don't see anything, probably because it is a webkit-specific property. This property seems to be best supported in Safari. https://caniuse.com/webkit-user-drag https://caniuse.com/?search=user-drag On https://sortablejs.github.io/Sortable/ the handle version demo, for example, works in both Vivaldi and Firefox... and in Vivaldi I still see div[Attributes Style] { -webkit-user-drag: none; } and when clicking div[Attributes Style] { -webkit-user-drag: element; user-select: none; } So, what is the difference...? (Also, could it be because of a z-index setting or something else...?) -
https://brave.com/leo/ https://search.brave.com/ https://brave.com/codellm/
- 1 reply
-
- 2
-
-
{ "error_message" : "The provided API key is invalid. ", "results" : [], "status" : "REQUEST_DENIED" }
-
Square thumbnails from landscape (or portrait) images
Christophe replied to Christophe's topic in API & Templates
Hello BitPoet, I thought that I was "Following" by default because I had created the topic. I received an email with the title "Did this answer your question?" the 20th March. The project hasn't really started yet. I'm waiting for more information to give a quote and continue to work on it. Time has passed really quickly. I'm moving from one house to another one so I didn't realize it. I still have the desktop computer and the Internet in the old house for the moment. In the new house there is no ADSL connection and the fiber/fibre one hasn't arrived yet in the street. I've just added "forceNew" => true to my $options and have cleared the browser's cache, and it has just worked. So, a Very Big Thank You! After that, I've put it to false, to see later if I need to keep it to true or if I can just keep it deactivated from now on. I haven't tried with $image->removeVariations() for the moment as it has worked with forceNew". I've just realized that I had set cropping to false in $options after all the tests that hadn't worked, so it seems that it has fetched the square versions that already existed. "$image->removeVariations() in between", you mean calling it just after using size(), or just before? I have a doubt. You use size(), then remove variations, before calling the thumbnails? And that's why it has fetched the square versions even if "cropped" wasn't activated anymore? Or you tell it to remove variations before using size()? I guess it's what "forceNew" => true does, if one chooses this solution, or at what moment is "forceNew" => true applied? I wonder why it didn't work without forceNew activated. It could be because of the server-specific cache... I'm just curious... Thank you again! -
Hello, I'm converting again a website from another CMS to ProcessWire. On the old website, there are square thumbnail images that were created manually back then, if I remember well. The original images that I'm using again are in majority square images. But some are landscape images. There could also be portrait images. There will also be new images of different proportions. I can't get the rectangle images to be cropped and reduced in size to 75 px. The width is ok (in the case of landscape images of course) but the height is less than 75px. The shortest side should be 75px and the longest side (centered) cropped in order to be 75px. I am using Imagick by default, but I've also tried by setting its priority to 2 and 3. So I've tried with GD with config.php by enabling cropping and/or by trying different settings directly in the template. It doesn't change anything. A square variation could be created in the backend but I'd prefer it to be done via the api in this case. I'm not sure if I need to specify a condition where the height is not equal to the width of the image. I thought it would work automatically with size() and cropping activated. The cropping is normally centered by default if I'm not wrong (even though I've also tried by specifying it). Thank you in advance for your help, hints... If you need more details please let me know. I'm using ProcessWire 3.0.212 dev with PHP 7.4.
-
It seems that the website basili.co also uses ProcessWire.
-
Does someone already know about Fleet (JetBrains)?
-
Thanks again also to Horst and to the other contributors.
-
Hello, In the backend, you can go to Modules > Site, there is a "Clear Compiled Files" button at the bottom of the page. Or you could try by directly removing the content inside site/assets/cache/ (or perhaps just inside site/assets/cache/FileCompiler/). Edit: there is also https://processwire.com/modules/process-cache-control/.