Title: thos's Replies | WordPress.org

---

# thos

  [  ](https://wordpress.org/support/users/thos/)

 *   [Profile](https://wordpress.org/support/users/thos/)
 *   [Topics Started](https://wordpress.org/support/users/thos/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thos/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thos/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thos/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thos/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thos/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] problem with rich text (full and tiny)](https://wordpress.org/support/topic/problem-with-rich-text-full-and-tiny/)
 *  Thread Starter [thos](https://wordpress.org/support/users/thos/)
 * (@thos)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/problem-with-rich-text-full-and-tiny/#post-4000698)
 * i found the issue
 * It was a problem with a plugin used for performance, that minimify the js, css,…
 * i hope it can help someone else
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [List post with a particular custom field](https://wordpress.org/support/topic/list-post-with-a-particular-custom-field/)
 *  Thread Starter [thos](https://wordpress.org/support/users/thos/)
 * (@thos)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/list-post-with-a-particular-custom-field/#post-1706728)
 * Because I don’t want my users have to choose the region and the departement when
   they create a post ^^ ( it’s a second hand sale site where people can post their
   own items )
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [List post with a particular custom field](https://wordpress.org/support/topic/list-post-with-a-particular-custom-field/)
 *  Thread Starter [thos](https://wordpress.org/support/users/thos/)
 * (@thos)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/list-post-with-a-particular-custom-field/#post-1706706)
 * Hi
 * I tried `query_posts('meta_value=Bas-Rhin,Haut-Rhin');` and `query_posts('meta_value
   =Bas-Rhin,Haut-Rhin&meta_key=cp_dpartement');`
 * but it didn’t worked
 * I’ve done this and it’s working :
 *     ```
       $querystr = "
           SELECT wposts.*,wpostmeta.*
           FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
           WHERE wposts.ID = wpostmeta.post_id
           AND wpostmeta.meta_key = 'cp_dpartement'
           AND ($dep)
           AND wposts.post_status = 'publish'
           AND wposts.post_type = 'post'
           ORDER BY wposts.post_date DESC
        ";
   
        $pageposts = $wpdb->get_results($querystr, OBJECT);
   
       foreach($pageposts as $post):
       ...
       endforeach
       ```
   
 * But i don’t know how to paginate this, and now to have my adress
    [http://www.mysite.com/carte/alsace](http://www.mysite.com/carte/alsace)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[More Fields] [Plugin: More Fields] contact form 7 and more field ?](https://wordpress.org/support/topic/plugin-more-fields-contact-form-7-and-more-field/)
 *  Thread Starter [thos](https://wordpress.org/support/users/thos/)
 * (@thos)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/plugin-more-fields-contact-form-7-and-more-field/#post-1656154)
 * Worked great, thank you !
 * i used this
 * $col2 = more_fields(“contcol2″,””,””,true);
 * I post it in case someone has the same problem as me 🙂
 * Thank you again
 * Thomas
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[More Fields] [Plugin: More Fields] contact form 7 and more field ?](https://wordpress.org/support/topic/plugin-more-fields-contact-form-7-and-more-field/)
 *  Thread Starter [thos](https://wordpress.org/support/users/thos/)
 * (@thos)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/plugin-more-fields-contact-form-7-and-more-field/#post-1656147)
 * Hi
 * Thank you for fast reply.
 * Could you explain me how to do that ? I’m not very familiar with the filters 
   🙁

Viewing 5 replies - 1 through 5 (of 5 total)