Amigo Chan
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Db Abstraction] [Plugin: WP Db Abstraction] Not showing postsThis is to confirm to use both LukeG84 and CriGoT suggestion works
1. show the media library correctly, with ot without pagination.
2. may edit and delete post in media library.You have to change two sections. Both in function translate_limit().
Section 1:
From:’/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)(;{0,1})$/is’
To: ‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)$/is’;Section 2 (Two if comparision statement):
From: count($limit_matches) == 5
To: count($limit_matches) >= 5Wish it helps!
Forum: Plugins
In reply to: [WP Db Abstraction] [Plugin: WP Db Abstraction] PROBLEM IN translate_limitHere are more detail discussion:
http://ww.wp.xz.cn/support/topic/plugin-wp-db-abstraction-not-showing-posts?replies=7
You have to change two sections. Both in function translate_limit().
Section 1:
From:’/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)(;{0,1})$/is’
To: ‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)$/is’;Section 2:
From: count($limit_matches) == 5
To: count($limit_matches) >= 5Wish it helps!
Forum: Plugins
In reply to: [WP Db Abstraction] [Plugin: WP Db Abstraction] PROBLEM IN translate_limitI have follow your instruction and modify the Line 750 of translation.php
Yes, I may see the media library. But I cannot edit or delete anything now.
Therefore, I am still looking for solution…