All Low add-ons are now owned by EEHarbor. Read the blog post.

Support archive

Help low_alphabet_heading and low_alphabet_footer are not being parsed.

Jamal A Mohammed 23 Jul 2013 10:24 problem, complete

I am using the example code from your documentation, and the tags are not getting passed.

http://gotolow.com/addons/low-alphabe...

http://pastebin.com/gWmcy3rG

The test page just has the code from your example running on EE v2.5.3 and Low Alphabet v1.0.8 and its enabled.

Appreciate your help.

Cheers,
Jamal

Replies

  1. chrisrowe 23 Jul 2013 10:48

    Looks like this could be a php 5.4 thing? I've had the same thing since installing Mavericks B4

  2. Low 23 Jul 2013 11:00

    I'm using PHP 5.4.10 and can't reproduce. Might be an extension conflict. Can you check in exp_extensions which add-ons use the channel_entries_query_result hook?

  3. chrisrowe 23 Jul 2013 11:06

    Odd, this literally worked last night and hasn't this morning with no code changes, only OSX update. Changing the priority to 10 has solved the issue.

    Cheers!

  4. Low 23 Jul 2013 11:09

    That definitely points to an extension conflict. Someone not checking the last_call property. Changing the priority (to a number higher than the conflicting ext) will solve that, indeed. Which ones do you have installed?

  5. chrisrowe 23 Jul 2013 11:11

    Assets_ext
    Better_pagination_ext
    Low_search_ext
    Low_alphabet_ext

    They were all on 10 except alphabet which i've now upped

  6. Low 23 Jul 2013 11:19

    I'm thinking it's Better_pagination_ext.

  7. chrisrowe 23 Jul 2013 11:21

    Got it in one. Cheers Low

  8. Jamal A Mohammed 23 Jul 2013 11:23

    So how do I fix this?

  9. Low 23 Jul 2013 11:29

    Have you got Better Pagination installed, Jamal? If so, contact its developer and ask him to update his add-on to make use of the last_call property.

    In the meantime, you can fix by changing the Priority column in ext_extensions to 10 (or higher) for the record that has Low_alphabet_ext as class. You'll need something like PHPmyAdmin or Sequel Pro to change it. Or a custom query:

    UPDATE exp_extensions SET priority = '10' WHERE class = 'Low_alphabet_ext';


    Untested, but should work. (back up DB to be sure)

  10. Jamal A Mohammed 23 Jul 2013 11:38

    Low, I don't have Better Pagination installed, do I still have to run this query?

    Other add-ons using channel_entries_query_result hook in my EE setup

    Low_alphabet_ext 1
    Assets_ext 10
    Ep_better_workflow_ext 8
    Store_ext 10

    Cheers!

  11. Low 23 Jul 2013 16:31

    Yeah. Try changing '10' to '11' to be on the safe side. Could be that Store or Assets is causing it. Need a number higher than those.

  12. Jamal A Mohammed 24 Jul 2013 04:19

    Thanks Low, changed to 11 it works now.

    Cheer.