Title: Mattia Migliorini's Replies | WordPress.org

---

# Mattia Migliorini

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/deshack/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/deshack/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Store Locator] Error activating with WP-CLI](https://wordpress.org/support/topic/error-activating-with-wp-cli/)
 *  Thread Starter [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/error-activating-with-wp-cli/#post-8894868)
 * Hi Tijmen,
    works fine with the fix provided!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Store Locator] Singular/Plural form in CPT strings](https://wordpress.org/support/topic/singularplural-form-in-cpt-strings/)
 *  Thread Starter [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/singularplural-form-in-cpt-strings/#post-8506788)
 * Yep, exactly that.
 * Thank you very much. Keep up the good work!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pinit: Pinterest for WordPress] Undesired pin it button](https://wordpress.org/support/topic/undesired-pin-it-button/)
 *  Plugin Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/undesired-pin-it-button/#post-7092584)
 * Hi,
    Pinit is currently missing a “General Options” page, so it is not yet possible
   to disable that feature in a pretty way.
 * You can still override that behavior though. Just place the following code in
   the functions.php of your theme or in a plugin:
 *     ```
       remove_action( 'wp_footer', 'pit_pinit_js', 9999 );
       function my_pit_pinit_js() {
       	echo '<script async defer type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script>' . "\n";
       }
       add_action( 'wp_footer', 'my_pit_pinit_js', 9999 );
       ```
   
 * Keep an eye on the changelog as we will soon add an options page!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google for WordPress] reCAPTCHA check failed](https://wordpress.org/support/topic/recaptcha-check-failed/)
 *  Thread Starter [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/recaptcha-check-failed/#post-6311288)
 * There was a character missing in the secret key. Thanks for the support.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google for WordPress] reCAPTCHA check failed](https://wordpress.org/support/topic/recaptcha-check-failed/)
 *  Thread Starter [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/recaptcha-check-failed/#post-6311286)
 * I’ll send you more details in pvt.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Featured Gallery size](https://wordpress.org/support/topic/featured-gallery-size/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/featured-gallery-size/#post-6132754)
 * Hi,
    Sorry for the delay.
 * The best image size is 800×300, but it tries to adapt other ratios too.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Bottom-Margin issues](https://wordpress.org/support/topic/bottom-margin-issues/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/bottom-margin-issues/#post-5658271)
 * Hi jsnowbusiness,
    sorry for the excessive delay.
 * I did not get the point, but maybe you removed that part of code in the mean 
   time.
 * Please, let me know if you still need help.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Logo](https://wordpress.org/support/topic/logo-41/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/logo-41/#post-4731587)
 * With a Child Theme you can override the `melany_logo()` function to display it
   only in the front page.
    This is very simple to achieve: just copy the content
   of the function `melany_logo()` you find in `inc/template-functions.php` and 
   wrap its content in a conditional statement checking if the current page is the
   blog index page, like this:
 *     ```
       function melany_logo( $id ) {
         if ( is_home() ) {
           ... // the original melany_logo() function content
         }
       }
       ```
   
 * If you want to use a static page as home page, replace `is_home()` with `is_front_page()`
   in the `if` statement.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Logo](https://wordpress.org/support/topic/logo-41/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/logo-41/#post-4731467)
 * Hi Leigh,
    yes, the logo shows in every page. If you want it to only be displayed
   in the home page without creating a Child Theme, you have to play around with
   the CSS.
 * Be careful though: to ensure a correct behavior both on desktop and in mobile
   devices the logo markup is repeated twice. The section with id `logo-sidebar`
   is displayed on desktops, while that with id `logo` is displayed on mobile devices.
 * If you want to address this issue with a Child Theme, the logo section markup
   is handled by the `melany_logo()` function in `inc/template-tags.php`. Just create
   a function with the same name in your Child Theme and it will be used instead
   of this one.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Posted by "author" removal](https://wordpress.org/support/topic/posted-by-author-removal/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/posted-by-author-removal/#post-4673413)
 * Sorry guys for being late with this reply.
 * There was a mistake in the code provided by [@thedesigneryouneed](https://wordpress.org/support/users/thedesigneryouneed/).
   
   The correct snippet of code needed is:
 *     ```
       .byline {
           display:none;
       }
       ```
   
 * Put it in Appearance > Edit CSS.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google AdSense] Can't pass verification](https://wordpress.org/support/topic/cant-pass-verification/)
 *  Thread Starter [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cant-pass-verification/#post-4507794)
 * Ok, my fault.
    The problem was with the browser blocking cookies from Google -.-
 * Sorry.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Continue Reading Button](https://wordpress.org/support/topic/continue-reading-button-1/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/continue-reading-button-1/#post-4464932)
 * Not yet. I’m going to introduce some options to customize this and other components.
 * The only possible way now is to build a child theme and override the `melany_excerpt_read_more_link()`
   function in `inc/template-tags.php` line 95.
 * As a side note, the “Full text” visibility option refers to feeds, not to the
   blog index page.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Favicon Question](https://wordpress.org/support/topic/favicon-question-1/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/favicon-question-1/#post-4420620)
 * Ciao, hai per caso modificato qualche file o creato un child theme?
 * Il [codice](https://github.com/deshack/melany/blob/dev/header.php#L16) per la
   favicon è presente nel file `header.php` e usa l’opzione [melany_favicon](https://github.com/deshack/melany/blob/dev/inc/customizer.php#L34)
   del Theme Customizer (file `/inc/customizer.php`).
 * Nella homepage del tuo sito viene stampato il codice seguente:
    `<link rel="shortcut
   icon" href="http://connected-mind.it/wp-content/themes/melany/favicon.ico" />`
 * Bisogna capire perché viene stampato quel link.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Theme doesn't display in IE 8/9](https://wordpress.org/support/topic/theme-doesnt-display-in-ie-89/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/theme-doesnt-display-in-ie-89/#post-4317330)
 * [@jesin](https://wordpress.org/support/users/jesin/) It’s an issue with git submodules.
   
   Download the .zip package from [this pre-release](https://github.com/deshack/melany/releases/tag/v1.0.5-beta)(
   the green button).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Melany] Theme doesn't display in IE 8/9](https://wordpress.org/support/topic/theme-doesnt-display-in-ie-89/)
 *  Theme Author [Mattia Migliorini](https://wordpress.org/support/users/deshack/)
 * (@deshack)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/theme-doesnt-display-in-ie-89/#post-4317325)
 * Fixed in Beta. Please download it from [GitHub](https://github.com/deshack/melany/tree/beta)
   and test it as I didn’t do it.
 * Thank you very much.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/deshack/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/deshack/replies/page/2/?output_format=md)