Jump to content

Hatsu

Clients
  • Joined

  • Last visited

Everything posted by Hatsu

  1. I updated my credentials. Please use my dev url and not the live site. Thank you.
  2. On my dev site. But it's running vanilla. Should I update the credentials to my dev site? I didn't update my live site.
  3. I cleared my browser cache(s) on FF and Safari. Still there. Both as a guest and registered user.
  4. If you have a long category name the count has a line break in it. It would be better to shorten the space of the name.Default templates are used.
  5. Just for feedback. The activity of two of the three is for my understanding far away from trending. One of the two is even closed. So perhaps you need some tweaking?
  6. This can be reproduced with widgets which aren't presented as pop over and you can click the Finish editing button of the Page Editor before saving the widget. For example: Feed from database, Database Category Menu, Database Filter etc. Open Page Editor Edit the widget No I'm able to close the Page Editor The widget editor stays open There is only the possibility to save the widget After clicking save a JSON of the widget settings is presented
  7. On self hosted the Monaco editor script is on a third party server and not on the self hosted server.
  8. Hatsu posted a post in a topic in Feedback
    Is it possible to add direction: rtl;in the given CSS?
  9. Hatsu posted a post in a topic in Feedback
    I can confirm this on my self hosted installation on 5.0.4. This should not be the case. Otherwise, it's not self hosted anymore.
  10. Now it's working again.
  11. It's back. Cache issue?
  12. On this site you can't enable it because this is in the theme editor which usually is not accesible for regular users.
  13. I can't change it either. But usually, the title comes from the feed. I just created a new feed and the title comes from the feed itself. This is the source code of one of your imported feeds. <channel> <title> Comments on: </title> <atom:link href="https://bringatrailer.com/datsun/240z/feed/" rel="self" type="application/rss+xml" /> <link>https://bringatrailer.com</link> <description>Barn finds, rally cars, and needles in the haystack.</description> <lastBuildDate>Tue, 11 Mar 2025 22:06:03 +0000</lastBuildDate> <sy:updatePeriod> hourly </sy:updatePeriod> <sy:updateFrequency> 1 </sy:updateFrequency> <generator>https://wordpress.org/?v=6.7.2</generator> </channel> </rss>
  14. Hatsu posted a post in a topic in General Questions
    What would be the best ratio then? F.e. 1:1 is abysmal. It should be something wider. Even 16:9 or 16:10 is not wide enough.
  15. Okay, this is kinda funny one. On latest iOS and Safari the positions of the buttons are swapped in portrait and landscape mode in Mark as Read popup. Here it is not important. But there could be popups where it is.
  16. Thank you for your advices. I now changed and put the JavaScript in the Theme itself. In ACP under Themes -> Theme Designer - CSS/JS let optionsButton = document.querySelector('#elStreamOptions'); if (optionsButton) { document.addEventListener("DOMContentLoaded", function () { let newLink = document.createElement("a"); newLink.href = ipsSettings.baseURL + 'markallread/?csrfKey=' + ipsSettings.csrfKey; newLink.innerText = "Mark Site Read"; newLink.setAttribute( 'class', 'ipsButton ipsButton--inherit'); newLink.setAttribute( 'data-action', 'markSiteRead'); newLink.setAttribute( 'data-controller', 'core.front.core.markRead'); newLink.setAttribute( 'data-menuitem', 'mark_site_read'); let newIcon = document.createElement("i"); newIcon.classList.add("fa", "fa-solid", "fa-eye"); newLink.prepend(newIcon); let parentDiv = optionsButton.parentNode; parentDiv.insertBefore(newLink, optionsButton); }); }I will try your app tomorrow. It's kinda late here today. ☺️
  17. Well, I would need the "Mark all content as read". :) Sorry, I'm very new to IPS modding. I think v5 is much more approachable as v4 was. But I still don't have an idea where to look for the specific things.
  18. Thank you. Did the trick. Is it possible to use language strings in this JavaScript? <script type="text/javascript"> document.addEventListener("DOMContentLoaded", function () { let newLink = document.createElement("a"); newLink.href = ipsSettings.baseURL + 'markallread/?csrfKey=' + ipsSettings.csrfKey; newLink.innerText = "Mark Site Read"; newLink.setAttribute( 'class', 'ipsButton ipsButton--inherit'); let newIcon = document.createElement("i"); newIcon.classList.add("fa", "fa-solid", "fa-eye"); newLink.prepend(newIcon); let optionsButton = document.querySelector('#elStreamOptions'); let parentDiv = optionsButton.parentNode; parentDiv.insertBefore(newLink, optionsButton); }); </script>
  19. I would like to suggest to have the "Mark all content as read"-Button back in the unread content activity stream. From a context point of view I would think this would be a good place as well. I haven't found a template hook where I could add it myself. Is there any?
  20. What I am quite sure about is that the link itself was completely clickable and you couldn't click between the lines. Perhaps it wasn't clickable at all. But it wouldn't take you to the forum.
  21. As I said. The area but the links.
  22. Why I brought this up is: When a thread title goes over two lines like the attached one it is possible to click between the lines and you don't go to the thread but the forum instead. Try it yourself. :)