lherry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 3.71 Revsions Option in Screen Options is not thereHi,
I found a lot of posts about missing revisions section, but nothing explain my problem…
I’m using WP 3.7.1 since few weeks and I realize today that on some pages I can’t display the revision section (no check box “revisions”) !!
In my wp_config, the “WP_POST_REVISIONS” is set to ‘5’, but i also tried ‘true’ and the result is that it works on some pages and posts but not always… !?
I thought it was coming from a plugin (we are using ACF 4.3.0) and tried to deactivate all plugins (from admin panel and after by directly renaming plugin folder by FTP), but the problem remains the same !
The only thing I can’t try (because it’s on our production server) that’s to try with the “standard” theme (cause we use a specific one…).
Where does this problem could come from ??
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Problem updating ACF content fields…I’ve made a downgrade to version 3.5 which correct my problem !
It makes more than a couple of weeks that there is no reaction of the support team for a problem that seems of course critical to others and me…
I needed to update the content of my website.
It is just chocking to me that there is no reactivity from support for a bought product…
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Problem updating ACF content fields…Ouch ! The official support sub forum is reopened !
No response anyway on it about my problem… 🙁Forum: Fixing WordPress
In reply to: $found_posts issues when using WP_Query with meta_compareThanks a lot for your help : it works !
It was missing the definition of global $wp_query, but it seems to work perfectly.
If understand well, you :
– backup the wp_query in a temp object
– initialize the wp_query object
– do the query
– exploit datas
– restore the wp_query object to its initial stateIs that right ?
How do you explain that we need to initialize and use directly the wp_query object to correct the problem ?
Thanks a lot for the time you given to help me !
Forum: Fixing WordPress
In reply to: $found_posts issues when using WP_Query with meta_compareIt does not change anything : 4 posts, and 4 pages available.
Forum: Fixing WordPress
In reply to: $found_posts issues when using WP_Query with meta_compareSo, it is a custom Page template to display agenda posts…
getCurrentCatID() is a template function :
function getCurrentCatID() { global $wp_query; $cat_ID = $wp_query->query_vars[ 'cat' ]; if( !$cat_ID ) { foreach(( get_the_category()) as $category ) $cat_ID = $category->cat_ID; } return $cat_ID; } // getCurrentCatID()Here is the category custom template file code : http://pastebin.com/kEHzY79C
Thanks !
Forum: Fixing WordPress
In reply to: $found_posts issues when using WP_Query with meta_compareNo, the query return the correct posts (4).
I’ve tuned WP to display 9 posts per pages so I normally have only one page, but with the $found_posts returning 32…Our template designer has desactivated the archive property so we don’t have any archive page…