Title: Thubten's Replies | WordPress.org

---

# Thubten

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

 *   [Profile](https://wordpress.org/support/users/thubten/)
 *   [Topics Started](https://wordpress.org/support/users/thubten/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thubten/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thubten/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thubten/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thubten/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thubten/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: [[Groups] get_posts is not filtered](https://wordpress.org/support/topic/get_posts-is-not-filtered/)
 *  Thread Starter [Thubten](https://wordpress.org/support/users/thubten/)
 * (@thubten)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/get_posts-is-not-filtered/#post-6385325)
 * Hello,
 * For the moment, the solution would be using the **groups API**:
 *     ```
       $queryProducts = get_posts(array('post_type'=> post, 'post_status'=> 'publish', 'showposts' => 1000));
   
       $user_ID = get_current_user_id();
   
       foreach ($queryProducts as $post) {
       	if (!Groups_Post_Access::user_can_read_post($post->ID, $user_ID)) continue;
   
       	$title 		=	get_the_title($post);
       	....
       }
       ```
   
 * Yours
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Sitemap Page] Problem using this plugin with WPML](https://wordpress.org/support/topic/problem-within-a-multilingual-website/)
 *  Thread Starter [Thubten](https://wordpress.org/support/users/thubten/)
 * (@thubten)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/problem-within-a-multilingual-website/#post-5690426)
 * Hello,
 * The plugin has a problem in the frond-end side and the WPML team has just been
   gave me advice on how to solve this issue.
    On the back-end side, it was my mistake,
   the admin language should be set up in the “WPML admin language” setting page.
 * For the detailed answer: [http://wpml.org/forums/topic/wp-sitemap-page/#post-546231](http://wpml.org/forums/topic/wp-sitemap-page/#post-546231)
 * Hope the code will be changed by the author in a soon update…
    Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quotes Collection] Make it work with WPML](https://wordpress.org/support/topic/make-it-work-with-wpml/)
 *  Thread Starter [Thubten](https://wordpress.org/support/users/thubten/)
 * (@thubten)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/make-it-work-with-wpml/#post-5095050)
 * Your welcome…
    Hope it will be helpful for anyone who wants to use this plugin
   with WPML.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easing Slider] Add different class number for each image](https://wordpress.org/support/topic/add-different-class-number-for-each-image/)
 *  Thread Starter [Thubten](https://wordpress.org/support/users/thubten/)
 * (@thubten)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/add-different-class-number-for-each-image/#post-5238746)
 * Finally I could manage it.
 * Just have to modify **_easing-slider/templates/slideshow.php_**
 * – Line 96, just after **class=”easingsliderlite-image**, add a space and:
 *     ```
       <?php echo 'img-'.$slide->id ?>
       ```
   
 * Yours
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quotes Collection] Make it work with WPML](https://wordpress.org/support/topic/make-it-work-with-wpml/)
 *  Thread Starter [Thubten](https://wordpress.org/support/users/thubten/)
 * (@thubten)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/make-it-work-with-wpml/#post-5095047)
 * Hello,
 * To add the **Widget title** in **WPML String**, please change the plugin’s code
   as follow:
 * In **_quotes-collection-widget.php:_**
 * – Line 13, under **$options = get_option(‘quotescollection’);**
 *     ```
       // WPML
       if (function_exists('icl_t')) {
       	$options['title'] = icl_t('Quotes Collection', 'Widget title', $options['title']);
       }
       ```
   
 * – Line 71, under **update_option(‘quotescollection’, $options);**
 *     ```
       //WPML
       if (function_exists('icl_register_string')) {
       	icl_register_string('Quotes Collection', 'Widget title', $options['title']);
       }
       ```
   
 * All the best

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