Recent content by Dannymh

  1. Dannymh

    As designed Breadcrumbs don't return to prior position

    The breadcrumbs at the top of a post don't return you to the same context you came from. If you are in a node with multiple pages and scroll through to say page three, and then click into a post on page three and want to return to you prior position the breadcrumb for the "node" or forum takes...
  2. Dannymh

    XF 2.2 Is there a way to add other activities to the thread watch>

    I have a modification on my site that has extra thread activity that isn't related to adding a new posts. I would like a way to add notifying users who have watched the thread based on other events. Would this be a matter of extending the service or can things be inserted into a queue of sorts?
  3. Dannymh

    Open PDF [Paid]

    Just wondering if this works with PDF's that go into the lightbox?
  4. Dannymh

    Mautic Integration

    Hi, Not really a request as I will probably write this code myself. However I am wondering if there is any interest out there with others for integrating Mautic into Xenforo. The basic communication functionality for Xenforo is OK, but my marketing manager definitely needs a greater set of...
  5. Dannymh

    XF 2.2 Date_from_format and timezones?

    Finally figured this out and the simple solution was actually to trim() the $date variable, once this was done, it was able to apply correctly
  6. Dannymh

    XF 2.2 Date_from_format and timezones?

    Still can't get this to work, it looks like if I am reading this correctly templater is not picking this up. I am theorising that this is because I am using a template modification to try and action this and therefore its somehow not parsing things to the templater correctly. My template...
  7. Dannymh

    XF 2.2 Date_from_format and timezones?

    a sample time stamp I am working with is 1706086800
  8. Dannymh

    XF 2.2 Date_from_format and timezones?

    I tried the following in the ever loving hope it would work <dd>{{ date(date_from_format('U', $thread.custom_fields.EndTimeStamp, $xf.visitor.timezone), 'D, d, M y, gA') }}</dd> but it still returns as 9am
  9. Dannymh

    XF 2.2 Date_from_format and timezones?

    Hi, So I am working with timestamps for most of the dates on my addon. They all work great programattically in PHP but when I have them in the template and I want to display them from a custom field I used {{ date_time(date_from_format('U', $thread.custom_fields.EndTimeStamp)) }} Which...
  10. Dannymh

    XF 2.2 Finder not sorting correctly

    Hi, I have a custom thread field called "Display order". The custom field is a number , however it looks like it returns as a string in the query, I have tried casting to an integer but nothing seems to work. Essentially the order will look like 1, 10, 11, 12, 13 The finder query...
  11. Dannymh

    Font Awesome Manager

    On my local Ubuntu test/Dev server there was no need to do any of that. Was straight forward as just fonttools. Same with my CentOS 7 server. Alma took a few hours of trying and tweaking different things. No idea why. I tried this on a raw alma install and on my production Alma server and both...
  12. Dannymh

    Font Awesome Manager

    I had to to do a few things to get this working in case anyone else runs into the same thing on Alma 8. One follow the centminmod way If that doesn't work, do this with Python 3 explicitly (and pip3) Also be careful about how you add a straight FA icon, you need to make sure you do class="fa...
  13. Dannymh

    Font Awesome Manager

    Might be my almalinix install but even when I add the icons to the relevant lists in settings and it rebuilds the subsets it still shows them as missing and the little squares Nothing in the debug just says they were added. Any ideas why it has them in the lists but not showing?
  14. Dannymh

    XF 2.2 Using format in a template modification failing

    Hi All I have a template modification on 'custom_fields_macros' The change looks for a specific custom field with an XF:if statement It then replaces it with <dl class="{$valueClass}" data-field="{$fieldId}"> <dt>{$fieldDefinition.title}</dt> <dd>${$fieldValue|currency}</dd>...
  15. Dannymh

    Thread Filter by AddonsLab [Paid]

    So far so good but started getting this error on advance search LogicException: Tried to call XF\Extension::resolveExtendedClassToRoot on AL\ThreadFilter\XF\Pub\Controller\XF22\Search, but extendClass was never called on the base class in src/XF/Extension.php at line 302...
Top Bottom