adrian Posted August 15, 2019 Share Posted August 15, 2019 On 8/14/2019 at 9:09 AM, bernhard said: Hi @tpr any chance we can get a fix for this issue in AOS as long as it is not fixed in the core? https://github.com/processwire/processwire-issues/issues/812#issuecomment-520855872 Thx ? Expand It doesn't diminish your request, but Interestingly I have an issue where AOS actually causes a horizontal scrollbar to appear on desktop on some pages - as soon as I disable AOS it goes away. I haven't narrowed down the cause, but something worth thinking about in all this. 1 Link to comment Share on other sites More sharing options...
dragan Posted September 8, 2019 Share Posted September 8, 2019 @tpr There's something in AoS that interferes with the brandnew toggle fieldtype. See here for description. Link to comment Share on other sites More sharing options...
grimezy Posted October 4, 2019 Share Posted October 4, 2019 Hey @tpr, I'm also experiencing a different issue with AoS and the new toggle fieldtype. When entering the new toggle field to display results in the admin Page List (template->advanced->list of fields to display), if the page tree is not already open, the 'edit' string is attached to the string of text, when you open up a branch. If the tree is already opened however, it is fine. Please see the attached image. Thanks! Link to comment Share on other sites More sharing options...
tpr Posted October 6, 2019 Author Share Posted October 6, 2019 I see, and it's caused by the template and field edit links submodule. I've tried a few things like prioritizing hooks and changing the execution order but no luck so far. Link to comment Share on other sites More sharing options...
Klenkes Posted November 11, 2019 Share Posted November 11, 2019 @tpr Thanks for this great module! But I think the CKE plugin Linkhover cannot be used with PW anymore. At some point PW or the CKE module implemented the linkhover on their own, and now if you doubleclick a link in your text its title attribute is replaced with the URL. A normal click in the text and then Edit works, but not the doubleclick. Tested on PW 3.0.123 - 3.0.145 with AOS 2.0.20 Link to comment Share on other sites More sharing options...
Robin S Posted November 11, 2019 Share Posted November 11, 2019 On 11/11/2019 at 7:05 PM, Klenkes said: if you doubleclick a link in your text its title attribute is replaced with the URL Expand @tpr, I have added a fix for this in v0.0.2 of the Link Hover plugin if you want to update the version included in AOS: https://github.com/Toutouwai/linkhover On 11/11/2019 at 7:05 PM, Klenkes said: At some point PW or the CKE module implemented the linkhover on their own Expand Not as far as I can see. Without the Link Hover plugin installed there is no equivalent functionality to show the link URL on hover. Thanks for the bug report though. 3 Link to comment Share on other sites More sharing options...
Klenkes Posted November 12, 2019 Share Posted November 12, 2019 On 11/11/2019 at 9:10 PM, Robin S said: I have added a fix for this in v0.0.2 of the Link Hover plugin if you want to update the version included in AOS: https://github.com/Toutouwai/linkhover Expand Thank you. Works great again. On 11/11/2019 at 9:10 PM, Robin S said: On 11/11/2019 at 7:05 PM, Klenkes said: At some point PW or the CKE module implemented the linkhover on their own Expand Not as far as I can see. Without the Link Hover plugin installed there is no equivalent functionality to show the link URL on hover. Thanks for the bug report though. Expand You are right. I got confused. Link to comment Share on other sites More sharing options...
bernhard Posted February 5, 2020 Share Posted February 5, 2020 Hey @tpr just wanted to ask if there is any harm in having all config inputfields toggled visible? AOS has so many options, it's always hard to remember where an option is hidden. Using the browser search this would be a lot easier (eg find "middle" when you want to activate some middle click magic) Link to comment Share on other sites More sharing options...
tpr Posted February 8, 2020 Author Share Posted February 8, 2020 There's no harm but then I would have to modify the current submodule toggle (and role setting) behavior. The idea was to enable/disable a submodule in the top section and hide the corresponding settings section below. If I would remove the "show if" conditionals to show all settings, one wouln't know whether the submodule he is configuring is enabled or not (without scrolling to the top to check). Perhaps the easier solution would be to add some kind of text or icon to indicate the on/off state. Link to comment Share on other sites More sharing options...
dragan Posted February 8, 2020 Share Posted February 8, 2020 @tpr I don't remember if I have posted this already some time ago... The option "disable all admin animations" practically makes the vec-dialogs unusable. The dialog will appear, but won't disappear when you choose either of the options. You then have no choice than to hard-reload the page. Maybe a word of caution would be nice in the settings. I stumbled over this a long time ago, and recently forget how to fix it. 2 Link to comment Share on other sites More sharing options...
tpr Posted February 8, 2020 Author Share Posted February 8, 2020 That sounds me rather as an issue with vex dialogs, are their features rely on animations somehow? Edit: perhaps this? https://github.com/HubSpot/vex/issues/285 Link to comment Share on other sites More sharing options...
bernhard Posted February 9, 2020 Share Posted February 9, 2020 On 2/8/2020 at 3:41 PM, tpr said: If I would remove the "show if" conditionals to show all settings, one wouln't know whether the submodule he is configuring is enabled or not Expand So why not let them all enabled by default? Link to comment Share on other sites More sharing options...
Klenkes Posted February 13, 2020 Share Posted February 13, 2020 Is it possible to overwrite the use of Purifier and ACF in a CKE field with the overwrite function of AOS? I need to disable them on one page with a known ID. Like this: $fieldoverrides['Diable ACF an Purifier for Privacy Policy'] = array( "?page" => "id=1035", "?field" => "body", "removePlugins" => "Purifier,ACF" ); Well it doesn't work, because ACF and Purifier are not plugins... Link to comment Share on other sites More sharing options...
tpr Posted February 14, 2020 Author Share Posted February 14, 2020 On 2/13/2020 at 2:57 PM, Klenkes said: Well it doesn't work, because ACF and Purifier are not plugins... Expand Sure, because they are field settings. This feature wasn't tested and used too many times (by myself) but when I opened a local PW site I usually use for testing, the following was filled int he FieldOverrides textarea in AOS: [Enable any markup in any CKEditor] ?field = "inputfieldClass=InputfieldCKEditor" useACF = 0 usePurifier = 0 Apparently it works, but it's important to know how. AOS is loaded in the admin only, so if you override a field like this, you won't see useACF=0 if you dump the field settings in the frontend (eg. with Tracy). But in the admin the value is overriden, so you can add any markup and it will be saved to the DB. On the contrary, if you decide to remove this override later on, the data won't be changed in the DB automatically unless you re-save the page again. 2 Link to comment Share on other sites More sharing options...
Klenkes Posted February 15, 2020 Share Posted February 15, 2020 Oh yes, of course, you are right. It's a setting! I was so caught up in removing plugins on this template and removing buttons on toolbars on another template. Usually I wouldn't disable security features that but in this case the editors are trustworthy and it's only on 1 page. Thank you for this extraordinary module! Link to comment Share on other sites More sharing options...
tpr Posted February 15, 2020 Author Share Posted February 15, 2020 Glad it helped. I know it can be a powerful feature even though I haven't had a chance to use too much. You may also take the relatively new built-in extended template overrides into account (available when $config->advanced = true). But that would need another template to use so AOS is more flexible. Link to comment Share on other sites More sharing options...
bernhard Posted March 10, 2020 Share Posted March 10, 2020 Hey @tpr found this little glitch on mobile: AOS sets display: none !important for all icons in the pagelist on small screens. This also hides the show more icon of pagelistactions: Link to comment Share on other sites More sharing options...
Macrura Posted March 13, 2020 Share Posted March 13, 2020 Sorry if this has already been asked, there is a "View site" menu item, say when using AdminThemeUiKit, and i want that to open in a new tab, however checking off the "Open Home/View site in new tab (topnav)" seems to have no effect. Link to comment Share on other sites More sharing options...
gornycreative Posted May 25, 2020 Share Posted May 25, 2020 When this module is turned on, my CKEditor modals get buried under an overlay I can't obviously click through. The overlay gets set to a ridiculously high z-index. Normally the overlay sits at I think 10000 and then the modal table gets throw above that at like 10010-10060. When AOS is enabled - with no submodules activated AT ALL - there is a css override in aos.min.css and here's what it puts out in my install: .cke_dialog_background_cover { z-index: 103000 !important; } I'm not sure why that rule is in there, all that I know is that if I turn off AOS completely, it goes away. Trying to edit source code, trying to compare revisions - yeah those don't work. Am I the only one seeing this problem? It doesn't matter if the CKEditor autoload segment is turned on or not. I'm using WP 3.0.156 and AOS 2.0.20 2 Link to comment Share on other sites More sharing options...
adrian Posted May 25, 2020 Share Posted May 25, 2020 @gornycreative - https://github.com/rolandtoth/AdminOnSteroids/issues/118 1 1 Link to comment Share on other sites More sharing options...
ceberlin Posted May 25, 2020 Share Posted May 25, 2020 great - I was just preparing a report here just now. Here's a demo video: bug-aos-cke-sourceeditor.mp4 1 Link to comment Share on other sites More sharing options...
tpr Posted May 25, 2020 Author Share Posted May 25, 2020 If someone could create a PR that would be nice, I don't have my personal notebook with me for a few days (that is, no PHP :)). Link to comment Share on other sites More sharing options...
MaierGrem Posted June 21, 2020 Share Posted June 21, 2020 @tpr, could you add the option "use custom fields width" to the Uikit Tweaks section? When this option is enabled, the css file should be added after uikit in which there will be classes in the format: @media (min-width: 960px) { [data-colwidth="1\%"] { width: 1%; } [data-colwidth="2\%"] { width: 2%; } ... [data-colwidth="100\%"] { width: 100%; } } This will solve the problem - https://github.com/processwire/processwire-issues/issues/480 Link to comment Share on other sites More sharing options...
Robin S Posted June 21, 2020 Share Posted June 21, 2020 On 6/21/2020 at 8:20 PM, MaierGrem said: could you add the option "use custom fields width" to the Uikit Tweaks section? Expand @MaierGrem, do you have percentage-based widths enabled in AdminThemeUikit? 1 Link to comment Share on other sites More sharing options...
tpr Posted June 22, 2020 Author Share Posted June 22, 2020 On 6/21/2020 at 8:20 PM, MaierGrem said: @tpr, could you add the option "use custom fields width" to the Uikit Tweaks section? When this option is enabled, the css file should be added after uikit in which there will be classes in the format: Expand You can pull in a custom CSS (see AssetPaths), where you can add anything you want. 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now