-
Posts
340 -
Joined
Everything posted by ottogal
-
On your homepage you have style="background-image:url(/site/assets/files/1/)" instead of style="background-image:url(/site/assets/files/1/logo.svg)" which seems to explain the issue...
-
You mean title, not name? But this already collapses the complete subtree. (Not sure to understand you right.) What I aimed to is to collapse by one click all opened pages of the lowest level (more precisely: their parents collapse to not display them).
-
Collapsing the PageList tree was introduced in PW 3.0.13 - see this Blog entry: I would like to suggest that collapsing the tree should work stepwise - in that way, that in each step only the lowest level is affected. Imagine this partially unfolded tree: Home - One-A 3 -- Two-A1 2 --- Three-A11 --- Three-A12 -- Two-A2 2 -- Two-A3 2 - One-B 2 -- Two-B1 4 -- Two-B2 3 - One-C 3 -- Two-C1 -- Two-C2 1 --- Three-C21 -- Two-C3 2 1st click on "Home" would result in Home - One-A 3 -- Two-A1 2 -- Two-A2 2 -- Two-A3 2 - One-B 2 -- Two-B1 4 -- Two-B2 3 - One-C 3 -- Two-C1 -- Two-C2 1 -- Two-C3 2 2nd click: Home - One-A 3 - One-B 2 - One-C 3 I'd find this very handy - what do you think?
-
This is a typo, throwing the "ReferenceError: AdminCustomFiles is not defined". You meant (like the Tip below the JSON checkbox). But with this I get instead of the necessary "ProcessPageList".
-
Thank you, Sebii, for your reply - I saw it just now when I came back to report success... Indeed, it's ProcessPageList, since the css file containig the "bad" definition was ProcessPageList.css. It took me a while to find the necessary settings - the drop-in examples were helpful. In fact it's really easy. Thanks again!
-
@Sebii Yes, that's the problem. Thanks for the hint to the AdminCustomFiles module! I'll give it a try (when I understand what to do...)
-
After some minor snags the module installed well in PW 3.0.18. I had the same issue Soma talked about: Thanks to Ryan for this hint: So I tried to get rid of the commas changing line 63 of /wire/modules/Process/ProcessPageList/ProcessPageList.css from .PageListItem > a span + span:before { content: ', '; } to .PageListItem > a span + span:before { content: ' '; } But of course, changing files in /wire/ is always a bad idea. So what is the right way: Copy the whole ProcessPageList/ directory to /site/modules/ ? Or copy just the css file - but to which location?
-
Is the module Custom Page List compatible to the PW 3.0.18 devns version?
-
Page tree: Link titles should show template too (not just name)
ottogal replied to ottogal's topic in Wishlist & Roadmap
Thank you both. I must admit I didn't see these setting options before. But I don't want to show these details permanently in the tree - to keep it simple and avoid verbosity. So a hover way is desirable. In the meantime I found the module CustomPageList and will give it a try, hoping to be able to style the detail information in a different way than the page title, say in smaller font and light gray text color... . Is this module compatible to PW 3.0.18? -
Module PageEdit - Setting Default "view" location/action
ottogal replied to ottogal's topic in General Support
Posted an issue on GitHub: #1830- 1 reply
-
- 1
-
-
Done: Issue #1828
-
With debug mode enabled, clicking the debug action/icon shows the debug tools in a panel - but only for a Superuser. So the icon should not be visible for non-Super users.
-
Hi all, there seems to be a bug with this feature: When you change the setting Default "view" location/action to New Window/Tab, a click to the View tab wouldn't work anymore - you'd have to use the dropdown list. (The other options don't have this issue.) BTW: Wouldn't it be more consistent to let also the green View Button in the pages tree respect this same setting? (PW 3.0.18 devns)
-
Great improvements, indeed! Some minor observations, though: (1) After opening an image field in the editor, it happens that some of the thumbnails are not cropped correctly: https://snag.gy/zP3cVG.jpg Switching the grid to proportional mode and back, they are displayed well. (2) After the upload of an image the "Choose File" button is displayed wrongly (but works as intended): https://snag.gy/SiBY91.jpg (3) The "Choose File" button's caption is in English, even if the editor user's language is German: https://snag.gy/8OSQyP.jpg (4) In the list mode one image takes too much space (so you have to scroll a lot in case of many images). Why not place the green buttons inline with the filename? Like this: https://snag.gy/ioxGDI.jpg And it would be fine if you could even toggle on and off the display of the description fields... But anyway, no ranting here. Kudos for the fantastic work!
-
Hi again, I'm competely at a loss with this problem... I increased the upload_max_filesize and post_max_size, also tried to set post_max_size to 0 Iinspired by another post, I tried this in the .htaccess : <IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule> All that without success. I'd highly appreciate any further hints. (Cannot give a link, though.)
-
Select specific files for download from array
ottogal replied to electricarts's topic in API & Templates
Are you sure your field download_files has a Maximum files allowed value greater than 1? -
Just saw: When you try to check for updates you get the message instead of the correct one:
-
Ah, okay, I've missed that. Thanks for the clarification - and sorry for my silly "bad idea" statement...
-
That was the crucial point! I'm quite sure to have read about the "Removed Plugins" setting in the forums, but it didn't reach my brain... Now all is working fine - thank you again, Robin S, for your helping thoughts!
-
Me: You: That seems to be a bad idea: When I removed the trailing -master from the folder's name \site\modules\PageTableExtended-master and tried to login, I got this Warning: With pruning the -master from \site\modules\MarkupSimpleNavigation-master , I got an "non object" error message refering to the line where the navigation is rendered... So I renamed back all these folders to their previous names (with trailing -master).
-
Any ideas?
- 14 replies
-
- pagetableextended
- pagetable
-
(and 1 more)
Tagged with:
-
Searching the forums I found this post refering to a similar problem. It says In the file InputfieldCKEditor.module, line 249 is // 'enterMode' => 'CKEDITOR.ENTER_P', // already the default, can be left out So it seems changing the enterMode value to something else might help. Where and how would I change it?
-
I gave it a try but it does'nt work. These are the steps I did: Download of the module's ZIP file. Upload and unpack the file via FTP into the folder /site/modules/InputfieldCKEditor/plugins/ In the PW Admin, edit the CKEditor settings of the field body: tick the checkbox magicline in Extra Plugins In the file config.js, add the line config.extraPlugins = 'magicline'; to the CKEDITOR.editorConfig function. Did I miss some other necessary setting?
-
Thank you so much, @tpr! I'll try it.