You are not logged in.
Please provide any feedback related to the Textpattern 4.4.1 Release Candidate in this thread.
Try wet_quicklink | Me | @rwetzlmayr | +Robert Wetzlmayr | Repos
Offline
Thanks Robert !
(Not sure) Is there a change with grand_total : can’t get my results on search page…
Cheers,
Patrick.
Txp Tricks & Tips by french users : http://txp-fr.net | G+
@Devs : Can’t find the punched tape version of TXP and I need it!
Happy user of TXP 1.0RC1
Offline
I installed it in the same place I always do. No problems thus far.
Textpattern Community Member since 2004-02-23 | World Headquarters
Offline
Thanks Robert.
The only defect I notice is that lam_browse_by has stopped working. I suppose this has to do with the current jQuery.
Offline
No, it has nothing to do with jQuery.
Offline
GugUser wrote:
lam_browse_by has stopped working
It stopped for me too but I think it’s probably a fault of either the core or jQuery being less-forgiving about unterminated string literals (that was the javascript error I had). I fixed it by changing the trim in the lam_browse_by_js function to doSlash. Not sure if that’s an official fix (it probably has other repercussions) but it might be a stop-gap until someone updates the plugin or writes a new one.
On that note, btw, the lam_browse_by_image_cat can be changed under 4.2.0+ by altering the following lines:
Line 2…
register_callback("lam_browse_by_image_cat", "image_ui", "extend_controls");
Last two lines of lam_browse_by_image_cat…
,'text-align:center','','get');
return $lam_browse_by_form.br;
That’s way more efficient, and faster, than adding it via jQuery. Shame the other tabs haven’t caught up yet in the core or we could do this for all of them. EDIT: though it does suffer from one drawback: if the category you select by has no images associated with it, the lam_browse_by dropdown doesn’t appear (because the core aborts at that point and the callback never fires).
Last edited by Bloke (2011-06-04 19:13:15)
The smd plugin menagerie — for when you need one more gribble of power from Textpattern.
Txp Builders – finely-crafted code, design and Txp
Offline
Thanks, Robert. Two sites on the rc without problems.
<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields
Offline
Bloke schrieb:
I fixed it by changing the
trimin the lam_browse_by_js function todoSlash.
Yes, that helps. Thanks.
But: What is doSlash in jQuery? I searched on Google and found your code, but nothing about jQuery. And the search on the jQuery website shows no response.
Offline
GugUser wrote:
What is
doSlashin jQuery?
It’s not jQuery — it’s a TXP internal function that adds a backslash in front of any quote characters so they don’t break things — used primarily when inserting stuff into the database, but it can also be used to make stuff on the page “safe” for display. As I say, it might not be the best way to achieve that but it seems to work.
The smd plugin menagerie — for when you need one more gribble of power from Textpattern.
Txp Builders – finely-crafted code, design and Txp
Offline
Stef, thank you for the explanation.
Offline