Recent content by llk

  1. L

    [cXF] Sticky Navigation [Paid]

    FYI, there are some broken quotes in the template mods sn_navtabtrigger2, sn_navtabtrigger3, etc: rel="Menu""
  2. L

    As designed Same <base> URL on every page

    Thanks. What was the rationale behind that?
  3. L

    As designed Same <base> URL on every page

    XF is emitting a <base> tag that points to the root of the forum on every page, breaking same-document URLs. Full friendly URLs are enabled. Here's an example value of $requestPaths from a visit to /members/ (domain anonymized): host: example.com protocol: https basePath: / fullBasePath...
  4. L

    ElasticSearch Essentials [Paid]

    Thank you!
  5. L

    XF 1.5 Invalid SOS parameters for sequential JPEG

    We're seeing this error message occasionally, even though we're using GD and have set the PHP config value gd.jpeg_ignore_warning, which is supposed to deal with exactly this problem. Yes, it's probably caused by broken JPEGs, but our users have no way of knowing that (since many tools do accept...
  6. L

    ElasticSearch Essentials [Paid]

    We're seeing occasional error logs caused by malformed search URLs. ErrorException: Illegal string offset 'content' - library/SV/ElasticEss/XenES/Search/SourceHandler/ElasticSearch.php:163 An example URL that should trigger this error would be /search/99999/?q=test&c[p][post] — you can see the...
  7. L

    XF 1.5 Adding tab to user_edit Admin template

    What's the recommended way to add a tab to the Admin template "user_edit"? I see that there are "slots" like <!-- slot: pre_preferences --> ...except I can't do a replacement on those because they each occur twice, once in the tab list and once where the corresponding tab pane is defined. I...
  8. L

    XF 1.4 MySQL lag every 24 hours.

    @PrinceReborn, did you ever figure this out?
  9. L

    ElasticSearch Essentials [Paid]

    What is the purpose of the file "ElasticEss/XenForo/ControllerPublic/Member.php" that was added in 2.3.5?
  10. L

    <select> inside a <xen:option>

    Ah, that is a useful tip. It might be better for XF to hide that last number when it's a zero, since otherwise it's very easy to miss a single '1'. That was it. Thanks! For future reference, are there more comprehensive docs for XF template syntax than...
  11. L

    <select> inside a <xen:option>

    I can't find any documentation on xen:disabled; what does it do? In any case, it doesn't seem to change anything. BTW, what is the difference between plain <select> and <xen:select>? To be more concrete, here's a simplified version of the admin template mod I'm working on. The template name is...
  12. L

    <select> inside a <xen:option>

    Sorry if I posted this in the wrong forum initially. Suggestions? Any help would be appreciated, including alternatives or work-arounds.
  13. L

    <select> inside a <xen:option>

    Any ideas? I can put a statically-populated <select> inside a <xen:option> and it works fine. I just can't figure out how to populate that drop-down from an array in a template var.
  14. L

    <select> inside a <xen:option>

    I'm trying to create a template modification that adds a new option to a radio unit in an admin template. This existing radio unit looks like so: <xen:radiounit label="..." name="..."> <xen:option value="...">...</xen:option> ... </xen:radiounit> I want my new option to contain a...
Top Bottom