Jump to content

MarcC

Members
  • Posts

    379
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MarcC

  1. Hi all, (Please see edit below) I have some Hanna Code that returns image data like this: (single-image field inside a repeater) echo "<!-- url: " . $pageToUse->graphical_cta->first->image->url . " -->"; echo "<!-- httpUrl: " . $pageToUse->graphical_cta->first->image->httpUrl . " -->"; echo "<!-- httpsUrl: " . $pageToUse->graphical_cta->first->image->httpsUrl . " -->"; echo "<!-- basename: " . $pageToUse->graphical_cta->first->image->basename . " -->"; echo "<!-- debugInfo: " . $pageToUse->graphical_cta->first->image->debugInfo . " -->"; Result: <!-- url: /site/assets/files/14469/ --><!-- httpUrl: --><!-- httpsUrl: --><!-- basename: --><!-- debugInfo: --> However, the field data shows up OK from within a regular template on the website, and the images work just fine when used via website template. (And just in case, I confirmed that the image folder has files inside of it) Other fields in this graphical_cta repeater also work fine, for example title_text returns text OK. Is there something I can do to test the field properties via API inside the Hanna Code, to figure out what's going on? Thanks! EDIT: Works OK if I use $pageToUse->image->first->url ...even though it's configured as a single image field (Automatic). Is this reflecting some API change? I'm confused as to why it's only doing this in Hanna Code...
  2. OK. I am going to try to reproduce first. Because it would suck to hand over to you the very simple regex-replace code which now does nothing out of the ordinary, post-the-recent-module-upgrade. ๐Ÿ˜„ And thanks again for your kind response. ๐Ÿ‘
  3. OK, thanks! I see it now, on the front end. I upgraded the module since my investigation, so maybe I was encountering something going on with a previous version. I was testing on the back end, this checkbox wasn't there, and I was getting template-processed output. (Edit: I can check again just in case...)
  4. Ah, I was guessing that the feature might have been enabled by default when I installed the module, or otherwise bumped ๐Ÿ˜…. But if not default...I kinda doubt I bumped it... I don't see it anywhere now that I'm looking. v4.26.36, somewhere in the Console panel? I do see references to the term "Template resources" in settings and I was able to add the separate $ panel to the front end view. That's a really helpful panel btw.
  5. Hi, Related to this thread I started recently, I wanted to follow up and check on the expected behavior for the Tracy Debugger Console. In my template files, there was a preg_replace operation on the $page->body property. The TD Console showed the result of this template operation after executing "echo $page->body". Is this the normal / expected behavior, as opposed to simply showing the field HTML content from the DB? The DB itself showed the unchanged HTML for the body field. Just wanted to check since it will help me understand how to troubleshoot better next time. Thanks!
  6. I would also like to know! Tracy stopped showing the unwanted behavior after the template code was updated. So, I wonder if Tracy is not completely isolated in the case of the console, and in fact attempts to access the body property as it comes out of the template processing. This seems like it could be meant as a convenience. Just an idea though! I guess it would have been nice to know it was doing that. ๐Ÿ˜„
  7. On further investigation: One of the site's main templates was using a preg_replace function to automatically convert plain email address text into links. The situation has been remedied by removing this until I can look into it further and decide whether to modify the code. No more duplicate prefixes! Hooray. I actually stumbled upon the issue while checking where I was using the separate HTML Purifier class in the template code. So a bit of luck helped in the investigation... Thanks all for your ideas & input!
  8. Hi All, I'm looking for some tips to troubleshoot this issue with mailto links: Issue: All email links in the body field are rendered on the website as "mailto:mailto:" with a duplicate prefix. This duplication is not shown inside the editor's "Source" window. Other fields, like the sidebar field, do not have the issue. I removed the body field's Hanna Code formatter and other text formatters, turned off ProCache, and this did not change anything. I rendered the body field from Tracy Debugger's console and did confirm that the duplication is happening there. I checked the DB itself, and there is no duplication in the HTML inside the DB. I can't see any HTML Textarea plugins that would affect email links. Any tips on troubleshooting this further? The site is currently running 3.0.200. Thanks!
  9. Just as an update to this topic, I tried out the jQuery load change and unfortunately it didn't work. However, some of the other ideas I had led to results in working with back-end code, and the test page is working OK now. I still need to run some more tests but thought I'd update the thread while I remember it.
  10. Ah, so it seems like it may be almost like a race condition with jQuery loading. That's interesting. I'll add that suggestion to my next batch of things to try here, thanks for your input. ? I've given some thought to this kind of thing, and other changes I'd like to make, and I have to say we've come a long way with recent changes already, but I know what you mean there.
  11. Hi all, I have some Hanna Code output for PHP Social Stream which is giving different results when the same code is output in two different fields. Here are the two examples for comparison (Removed as things are working now) You can see that the page at the second link appears without proper CSS styles, which seems related to the jQuery issue. (Please note that the social feed output itself is not yet fully configured, so the feed in the footer will let you scroll forever, etc.) The Hanna Code is the same for both, i.e. there is only one test in the Hanna Code PHP right now, to check if the full class for the vendor code has already been include-ed. Tests are run without caching, and both fields have the same CKEditor filtering, other options, and the same general output logic. Tracy Debugger is active and there are no PHP errors in the logs. But only one of these fields is giving the correct result. I did test in other fields (Body for example), and everything works fine there as well. I thought I'd ask the community for input and would be grateful for any suggestions, thanks for your time.
  12. Oh funny, thanks. That's a pretty clever way to manage the configuration. So in case anyone else is wondering, it seems you can either add a namespace to your template files or just set $config->templateCompile to false in config.php. I do wonder what the implications are for either choice, or how future-proof it is to set this to false instead of adding the namespace.
  13. Hi all, Am I correct in remembering that adding a namespace statement to the top of every template file will prevent the file compilation process from needing to run during a 2.x to 3.x upgrade? I had attempted this same upgrade previously on a site with many pages, but the upgrade seemed to fail. However, afterwards I realized it may have been the delay in compiling files rather than a failure of the upgrade. So I'd like to avoid the compilation process if possible. Thank you for any tips! --Marc
  14. Hi everyone, I'm having an issue where a selector doesn't seem to be working properly with page->closest. Here is the code: // Look for the closest page with any social URLs filled in $page_with_socials = $page->closest("extra_url_1|url_5|extra_url_2|extra_url_3|extra_url_4!=''"); if ( $page_with_socials->id ) { // We found a page with social fields containing some URL content $social_config = $page_with_socials; } else { // Fallback: Use home page social URLs // This is used every time extra_url_1 is empty, even if the other URL fields are filled out $social_config = $homepage; } Instead of checking the various fields, the selector is treated like it only says this: $page_with_socials = $page->closest("extra_url_1!=''"); In other words, it's like the other fields aren't even checked for content. If url_5 is filled in, or not, it doesn't matter. The else-fallback is always used as long as the other field, extra_url_1, is empty. So I'm wondering--do I need to change the way I'm using the pipes in my selector or something? Thanks for any tips.
  15. diogo, these are great ideas. Thank you. I really like the pipe-separated version and it would seem to fit great, so I'll give that a go. Thanks again.
  16. Hi everyone, I set up a simple Hanna Code button snippet for a project, like this: [[special_button url='example.com' label='Visit Example.com']] The client is using it actively and have asked for a side-by-side version, where two buttons will be next to one another. In this case, they are requesting this because the URL varies depending on where the website user lives--County A or County B. Any thoughts about how to implement this? Which HTML structure would you prefer for the columns, keeping in mind this is user-editable content? Would you alter the Hanna Code at all? I'm not used to using Hanna Code and layout options together, in a textarea like the Body field, so I thought I'd ask. Thanks!
  17. Was there a field or Profield that could help site editors design pages? I thought I saw something like this a few years ago: Editors can choose from specified types of page layout elements while editing the page (For example--gallery, 1-column text, 3-column text, news items, etc.) Rearrange these elements Duplicate the elements Is there something like this? Thanks in advance.
  18. Terrific. Thanks Robin, both of those seem like excellent options.
  19. I have a bunch of events in the back end of a site which are sorted by date, and wondered if it's also possible to sort them by title within the date selection, for example using a "sort=date,sort=title" selector. In this way, an event called "A Day for Children" would show up before "Zero Hour" if they're on the same day. I tried to make this change in the parent template's Family tab, under "Sort settings for children," however I don't see a way to use multiple sorting criteria. Is this possible somehow? The site is currently running 2.8.62. Thanks!
  20. Hi everybody, I am updating a PW site that has been migrated away from another vendor. The old URLs had a prefix-segment like /page/ in front of blog posts. Here is the rule I created in PW's .htaccess: RewriteRule ^page/blog/(.*)$ blog/$1 [R=301,QSA] Within the .htaccess, this is placed before another, working, rule, and below the directives to enable mod_rewrite. Can anyone see a reason why this would not be doing anything? If I go to example.com/page/blog/blah I still get a 404 page instead of being redirected to example.com/blog/blah. Thanks!
  21. Hi Sergio, yes, it is on the same server. Do you know of any code examples for doing this? I've used the API for mostly basic things, so if there's a skeleton example available that'd be helpful. I'm excited to hear it's possible.
  22. I am in the process of upgrading an older PW website, say www.example.com. At new.example.com I have an upgraded version, but now the client needs to make content changes on the old site, like 15-20 pages added per day. How can I most easily move these pages over from the old site to new.example.com, when other people are already making new pages at new.example.com? Thanks!
ร—
ร—
  • Create New...