Title: MPasc's Replies | WordPress.org

---

# MPasc

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Filter Everything — WordPress & WooCommerce Filters] Acf Field Checkbox change the Value to Label](https://wordpress.org/support/topic/acf-field-checkbox-change-the-value-to-label/)
 *  [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/acf-field-checkbox-change-the-value-to-label/#post-16731038)
 * Hello again,
 * [@stepasyuk](https://wordpress.org/support/users/stepasyuk/) , please, could 
   you give us an answer please? We bought the plugin months ago and it has caused
   different troubles until now. We can’t find a way to solve this one this time.
 * We would really appreciate your help to solve this issue in this plugin.
 * Regards,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Filter Everything — WordPress & WooCommerce Filters] Acf Field Checkbox change the Value to Label](https://wordpress.org/support/topic/acf-field-checkbox-change-the-value-to-label/)
 *  [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/acf-field-checkbox-change-the-value-to-label/#post-16717130)
 * I have the same problem, I mean that the filters display the value instead of
   the label. For example, for the ACF field with key shop_area, these are the values
   and the labels:
   Spain_south : South of SpainSpain_north : North of SpainFrance_south:
   South of FranceFrance_north : South of FranceHowever, the filters of the plugin
   show:
 * Spain_south (14)
   Spain_north (26)France_south (25)France_north (32)
 * I have tried to add your code (from your last comment on March, 3rd) in functions.
   php but it has not worked.
 *     ```wp-block-code
       add_filter( 'wpc_filter_post_meta_term_name', 'wpc_acf_labels_instead_of_values', 20, 2 );
   
       function wpc_acf_labels_instead_of_values( $term_name, $meta_key )
   
       {
   
       // your ACF-field meta keys
   
       $keys_with_labels = ['shop_area','shop_ranking'];
   
       if ( in_array( $meta_key, $keys_with_labels ) ) {
   
       if( function_exists('get_field_object') ){
   
       $field = get_field_object( $meta_key );
   
       $new_choises = [];
   
       if( isset( $field['choices'] ) && ! empty( $field['choices'] ) ){
   
       foreach ( $field['choices'] as $key => $value ){
   
       $new_key = mb_strtolower($key);
   
       $new_choises[$new_key] = $value;
   
       }
   
       $term_name_test = mb_strtolower( $term_name );
   
       if( isset( $new_choises[$term_name_test] ) ){
   
       $term_name = $new_choises[$term_name_test];
   
       }
   
       }
   
       }
   
       }
   
       return $term_name;
   
       }
       ```
   
 * ¿How can we make it work?
    -  This reply was modified 2 years, 11 months ago by [MPasc](https://wordpress.org/support/users/mpasc/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hestia] Elementor Font Size](https://wordpress.org/support/topic/elementor-font-size/)
 *  [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/elementor-font-size/#post-9807332)
 * Hello,
 * I am having the same problem. These are the tests I have done and my conclusions:
    - Deactivating all plugins but Elementor did not have any effect. It is anot
      a plugin incompatibility matter
    - Deactivating hestia and activating any other template: the font-size was properly
      applied in the text widget. So, it is a problem with Hestia.
    - Removing the <p> tag makes that the text size is properly applied. It looks
      like if there was a configuration for <p> tags in the css of the theme that
      is causing the problem.
 * My website is already online at [here](http://disenoconcabeza.com/tictap/). You
   can see that in the home page there is a blue box with text size set to 3rem,
   but it is not applied.
 * The workaround you suggested works but it is a quite consuming-time solution…
   I think that if that is the only solution I will have to change to another theme,
   but it means redoing a lot of work 🙁
 * I hope this helps to find out the problem.
 * Thank you very much for your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Latest Post Shortcode] Tags under excerpt](https://wordpress.org/support/topic/tags-under-excerpt/)
 *  Thread Starter [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/tags-under-excerpt/#post-6244239)
 * By the way, I have found very elegant the solution to display the word “tags:”.
   Most of the plugins set by php code this kind of works, but you used a css definition
   together with “content”. It allows us to remove this word by css in a very easy
   and clean way.
 * Thank you and congrats again!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Latest Post Shortcode] Tags under excerpt](https://wordpress.org/support/topic/tags-under-excerpt/)
 *  Thread Starter [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/tags-under-excerpt/#post-6244237)
 * Hi,
 * Thank you very much indeed!!!!
 * You have saved me a tone of time! I had tried several posts until I found yours,
   which was the best. Only this functionality was missed. Now it works like a charm
   with all the functionality I needed.
 * Thank you again for your work and time!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Unable to create albums](https://wordpress.org/support/topic/unable-to-create-albums/)
 *  Thread Starter [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/unable-to-create-albums/#post-2198298)
 * I have uploaded to WP 3.2.1 in order to try if it solved the problem, however
   it does not. It seems like if the function nggAutocomplete did not exist, but
   I do not why or where is the conflict. It is becoming annoying and frustrating…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Unable to create albums](https://wordpress.org/support/topic/unable-to-create-albums/)
 *  Thread Starter [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/unable-to-create-albums/#post-2198297)
 * I have disabled all the plugins and even the add-ons, but it did not work yet.
   I have tried in Chrome and Safari too but it does not work either. I have tried
   again in Firefox, keeping all the plugins and add-ons as disabled except Firebug
   and I have seen that I get the following error:
 * jQuery(“#previewpic”).nggAutocomplete is not a function
    [http://localhost/my_web/wp-admin/admin.php?page=nggallery-manage-album](http://localhost/my_web/wp-admin/admin.php?page=nggallery-manage-album)
   Line 170
 * In addition to this, I had selected a picture for the gallery and it is not displayed
   either in the page where I get the error.
 * I have look for the error in Google but the solutions I have found and tried 
   have not worked for me. Any idea, please?? 😉
 * Thank you in advanced
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Unable to create albums](https://wordpress.org/support/topic/unable-to-create-albums/)
 *  Thread Starter [MPasc](https://wordpress.org/support/users/mpasc/)
 * (@mpasc)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/unable-to-create-albums/#post-2198273)
 * Hi Toetde,
 * great, I can see that I am not the only one, and I guess that it must be failing
   for other people too.
 * Nobody has an answer for us?? 😉

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