Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
409 views
in Q2A Core by
1. If you have a minimum/maximum tag threshold and you submit a question with the wrong number of tags, you get an error message like "Please provide at least 1 tag/s". But now the tag completion doesn't work.

2. On Admin>Pages, say you have Tab X, currently located at "Before tabs at top", and Tabs Y & Z located on the right hand side. If you select X to go "After Tab Y" then it goes to the far end instead of between Y and Z. You have to select X to go "After Tab Y" a second time to make it go to the right place.
by
First bug is fixed in 1.4.2 (not yet released) but I can't reproduce the second bug - what version of Q2A is this in and is it still there in 1.4(.1)?
by
Yep still in 1.4.1. I just tried again and noticed another issue. Starting from scratch:

1. Add link "AAA" at "Before tabs at top".
2. Add link "BBB" at "Far end of tabs at top".
3. Add link "CCC" at "Far end of tabs at top".
Now, I have the tabs AAA, then the usual q2a tabs, then on the right CCC then BBB. I would expect BBB to come before CCC (may be this is to do with float:right stuff?) Then:
4. Change CCC to be "after BBB". Ordering is now BBB,CCC.
5. Change AAA to be "after BBB". Now the ordering is BBB,CCC,AAA when it should be BBB,AAA,CCC.
by
I went through your steps diligently, but the problem didn't happen. I started with a blank slate of no custom links or pages.

Not saying the problem doesn't exist, but it might be a consequence of the particular links and pages you already have in the database.

One thing to check is that for each value of nav in qa_pages, the values of position are numbered consecutively starting at 1:

SELECT nav,position FROM qa_pages ORDER BY nav,position;

If not, fixing this is likely to fix the problem you're seeing.

1 Answer

+2 votes
by
Thanks - will check into these for the 1.4.2 maintenance release.
...