Jump to content

gmclelland

Members
  • Posts

    577
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by gmclelland

  1. Thanks @matjazp! It makes sense now. That's a Windows only thing. Macs don't have that.
  2. @horst - what do you mean by this? I don't see anywhere to input any text in a file or image field.
  3. The two “orange” pages have the same page title, but it probably gives them different page names. Look on the settings tab of each page.
  4. Great looking site Macrura! Can you show a screenshot of your PageTable setup? Are you still using the Micro Context thingy that you wrote about in the past, or have you found a better way?
  5. ..Love what you are doing with this module. Thanks for making it. The icon's line weight look too thin in my humble opinion. What about using an icon from the included font-awesome library. You can browse the icons included by editing a template and then go to "Advanced" tab. Then scroll down to the Icon inputfield and click "Show all icons." That might give you some ideas? For an upload icon, maybe fa-upload? For an edit icon, maybe fa-pencil?
  6. Maybe this? https://processwire.com/blog/posts/pw-3.0.145/ See the Inputfield Javascript API
  7. I think I had this problem in the past and I had to do the following in my template: {% if page.editable() %} <script type="text/javascript" src="{{ config.urls.templates }}scripts/jquery-1.8.3.min.js"></script> {% else %} <script type="text/javascript" src="{{ config.urls.templates }}scripts/jquery-3.2.1.min.js"></script> {% endif %} This is written in Twig, but basically it shows how to check if the page is editable then use this version of jquery, else use a different version of jquery. You might want to check your web browser's console to see if there are any errors on the page. Hope that helps
  8. I believe you can do this with http://modules.processwire.com/modules/page-image-manipulator/ Check the docs at
  9. Could you replacing the line with this: $this->myvar = $this->pages->get(2)->name; // problematic for some reason I have a note in my Processwire notes that say's --Extend WireData to access API variables using $this->page instead of calling wire() function every time. It also lets us get module settings directly using $this->someSetting.
  10. Expand "Filters" on Setup > Templates and you will see it.
  11. If a url segment for year exist, you might have to whitelist the year? https://processwire.com/api/ref/wire-input/whitelist/
  12. What is the url for page2?
  13. See the last paragraph on the latest blog post. https://processwire.com/blog/posts/pw-3.0.142/ Perhaps that is the issue?
  14. Try renaming the MarkupSEO module to .MarkupSEO so you can at least access the site again while you troubleshoot it. What version of processwire are you running?
  15. Looks like this has been corrected in iPadOS 13.1
  16. What version of Processwire are you using? What version of PHP are you using? Older versions of Processwire might not be compatible with the newer versions of PHP 7.X.
  17. I doubt Tracy is the problem, but to disable Tracy you can rename it to .TracyDebugger. Just FTP into the server and rename the folder in site>modules>.TracyDebugger Hope that helps
  18. Go to /processwire/module/edit?name=TracyDebugger edit Tracy's settings: Check this option That way only Superusers can see Tracy on the live site. Hope that helps
  19. https://github.com/processwire/processwire-requests/issues/126
  20. Hi @Pete Would you happen to know why I can’t long press on links to topics within the forum listings on an iPad? When I try to read the Unread activity section in the forum, I like to open the forum topics in their own tab. I’m referring to https://processwire.com/talk/discover/unread/ When I long press on a forum topic link in the listings it will immediately follow the link. This happens on Chrome and Safari on the iPad. Do you know of any way to stop that from happening? Thanks for any help you can provide.
  21. Perhaps this: $page->title = $nome; Should be: $page->title = $name;
  22. I believe a lot of the "trash" issues were already fixed. Can you try upgrading your site to a newer dev version? Using this module makes upgrading easy https://modules.processwire.com/modules/process-wire-upgrade/
  23. In the main navigation, can you do a modules > Refresh from the admin and then test again?
  24. For simple markdown/plain text notes with tagging, I use https://simplenote.com/ made by http://automattic.com/. It also has a mobile app. For more complex notes with images and tagging, I use Evernote.
  25. @horst - I haven't tried this, but this Inputfield module might work for you? Looks like it can show a thumbnail preview image.
×
×
  • Create New...