elitereloaded
Forum Replies Created
-
Forum: Plugins
In reply to: [Mammoth .docx converter] Issue while 'insert into editor'Same issue, clicking on “Insert into editor” appears to do nothing. The developer console shows it’s uploading images. I am working with a 117 page document with a lot of images so I will post again when it’s done uploading images regarding if it inserted in the editor correctly or not.
I would suggest adding an image upload progress bar to prevent this confusion in the future.
Forum: Fixing WordPress
In reply to: How to have several arguments in WP_QUERY Meta_QueryEach meta Key & Value pair needs their own table join.
Let me know if you need further help.
Forum: Fixing WordPress
In reply to: Meta query in WP_Query not working properlyUPDATE
The META query comparisons that are failing are the two below. Together they return no results, but if i remove one then a result is returned (vise versa as well).
Broken META Query
SELECT * FROMwp_4_postmetaWHERE (meta_key= ‘venue-min-latitude’ AND CAST(meta_valueAS DECIMAL ) <= 47.6582390212 ) AND (meta_key= ‘venue-min-longitude’ AND CAST(meta_valueAS DECIMAL ) <= -117.635970695 )Forum: Fixing WordPress
In reply to: How to have several arguments in WP_QUERY Meta_QueryYou will have to build a custom query and use $wpdb->prepare and $wpdb->get_results OR modify the generated SQL using the different SQL filter hooks that WordPress provides for altering the Posts query.