Title: nellone's Replies | WordPress.org

---

# nellone

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Enigma] Can’t change text in slider and other areas?](https://wordpress.org/support/topic/cant-change-text-in-slider-and-other-areas/)
 *  [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/cant-change-text-in-slider-and-other-areas/#post-9634224)
 * you need to use the visual editor, if you use the text mode doesn’t work, just
   switch mode with the button next to the “text” one. I guess it’s named “visual”?
   I don’t know, my wordpress is not in english.
    -  This reply was modified 8 years, 9 months ago by [nellone](https://wordpress.org/support/users/nellone/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Enigma] bug Slider description](https://wordpress.org/support/topic/bug-slider-description/)
 *  [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/bug-slider-description/#post-9634216)
 * you can write your text with the visual editor, on the slider page, click the
   visual editor button… instead of the text one.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Enigma] bug Slider description](https://wordpress.org/support/topic/bug-slider-description/)
 *  [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/bug-slider-description/#post-9630683)
 * i found the problem, description can be modified only with visual editor, the
   text one does not work
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Enigma] bug Slider description](https://wordpress.org/support/topic/bug-slider-description/)
 *  [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/bug-slider-description/#post-9630639)
 * I have the same bug here, i just installed Enigma 3.5, i can edit only the 3rd
   description of the default sliders, the first 2 stick with lorem ipsum ecc..
    -  This reply was modified 8 years, 9 months ago by [nellone](https://wordpress.org/support/users/nellone/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] No subject when collected by Flamingo](https://wordpress.org/support/topic/no-subject-when-collected-by-flamingo/)
 *  [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [13 years ago](https://wordpress.org/support/topic/no-subject-when-collected-by-flamingo/#post-3663177)
 * Flamingo should collect anything is written in the Subject textbox, not a not
   existing text data….
    In the subject textfield i have a [_post_title] tag and
   this makes nosense, i should create an invisible div with the [text your-subject]
   tag only for Flamingo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Fields] getting fields data of a fieldgroup outside the loop](https://wordpress.org/support/topic/getting-fields-data-of-a-fieldgroup-outside-the-loop/)
 *  Thread Starter [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [13 years ago](https://wordpress.org/support/topic/getting-fields-data-of-a-fieldgroup-outside-the-loop/#post-3918725)
 * I’m having some trouble with the query
    My post are intended to be of custom 
   type only, so i used pre_get_posts hook to modify the main loop, then i use the
   query->set to filter posts
 *     ```
       add_action( 'pre_get_posts', 'filtri_di_ricerca');
       function filtri_di_ricerca( $query ) {
           if ( is_admin() || ! $query->is_main_query() )
               return;
   
           if (is_home())
       	{
       		$query->set('post_type', 'post_annunci');  
   
       		$meta_query = array('relation' => 'AND');
   
       		// Only check these form fields
       		$fields = array( 'annuncio_contratto', 'annuncio_categoria', 'annuncio_tipologia', 'annuncio_citta');
   
       		foreach( $fields as $field )
       		{
       			if( $_GET[$field] != '' )
       			{
       				// We have something to match, otherwise ignore the field...
       				$meta_query[] = array(
       					'key' => $field,
       					'value' => $_GET[$field],
       					'compare' => '='
       				);
       			}
       		}
   
       		$query->set('meta_query',$meta_query);
   
           }
       ```
   
 * I have some problem obtaining the meta keys as _simple_fields_fieldGroupID_1_fieldID_3_numInSet_0
   instead of $fields, because in the search form i use input fields slugs as input
   names, so my $_GET variabiles are like annuncio_contratto=dropdown_num_16
 * I seen an example in your [blog post](http://simple-fields.com/2013/wp_query-and-sort-posts-using-simple-fields/)
   where you can order by the field slug, is there a similar way to launch a query
   with a field_slug?
    Or get the meta_key giving the slug? I cannot figure out 
   to use action_pre_get_posts_meta($query)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Fields] getting fields data of a fieldgroup outside the loop](https://wordpress.org/support/topic/getting-fields-data-of-a-fieldgroup-outside-the-loop/)
 *  Thread Starter [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [13 years ago](https://wordpress.org/support/topic/getting-fields-data-of-a-fieldgroup-outside-the-loop/#post-3918710)
 * thank you a lot! it’s all what i needed!
    If you could show me an example of 
   query where i can find posts with simple fields … it will be great!
 * this works?
 *     ```
       query_posts(array('numberposts' => '10', 'post_type' => array('filmp', 'corp', 'post'), 'meta_key' => '_simple_fields_fieldGroupID_1_fieldID_3_numInSet_0', 'meta_value' => 'dropdown_num_3'));
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Fields] getting fields data of a fieldgroup outside the loop](https://wordpress.org/support/topic/getting-fields-data-of-a-fieldgroup-outside-the-loop/)
 *  Thread Starter [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/getting-fields-data-of-a-fieldgroup-outside-the-loop/#post-3918656)
 * Is there not a specific post ID to pass, i need to find all posts matching the
   search query sent by the user.
    To create the search query i need to build a 
   form with inputs named as simple fields names and with related values.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow] Images used in slideshow results all unattached](https://wordpress.org/support/topic/images-used-in-slideshow-results-all-unattached/)
 *  Thread Starter [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/images-used-in-slideshow-results-all-unattached/#post-3670275)
 * you can anyway add images that have already been attached.
    The problem is where
   i open my media library and check for unattached images to be deleted (old deleted
   posts)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Contact Form 7 missing on_submit hook?](https://wordpress.org/support/topic/contact-form-7-missing-on_submit-hook/)
 *  [nellone](https://wordpress.org/support/users/nellone/)
 * (@nellone)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/contact-form-7-missing-on_submit-hook/#post-2797059)
 * = 3.3 =
    * New: Introduce new additional setting on_submit. It works like on_sent_ok
   and has one-line JavaScript code, but on_submit code is fired regardless of whether
   or not the mail has been sent successfully.

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