Title: root09's Replies | WordPress.org

---

# root09

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[New User Approve] Approve And multisite](https://wordpress.org/support/topic/approve-and-multisite/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/approve-and-multisite/#post-17553279)
 * solved
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[New User Approve] Approve And multisite](https://wordpress.org/support/topic/approve-and-multisite/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/approve-and-multisite/#post-17553278)
 * thanks you 👍
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Accept Stripe Payments] Sepa ?](https://wordpress.org/support/topic/sepa-3/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/sepa-3/#post-16967978)
 * Thank you 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Exclusive Addons for Elementor] Your roadmap…](https://wordpress.org/support/topic/your-roadmap/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/your-roadmap/#post-16878969)
 * ok, good ideas 👍
 * thank you.
    -  This reply was modified 2 years, 11 months ago by [root09](https://wordpress.org/support/users/root09/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Responsive Recent Post Slider/Carousel] Mobile version…](https://wordpress.org/support/topic/mobile-version-136/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [4 years ago](https://wordpress.org/support/topic/mobile-version-136/#post-15677715)
 * Hello…
 * ist working perfect !
 * thank you !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One WP Migration and Backup] Upload Stuck](https://wordpress.org/support/topic/upload-stuck-2/)
 *  [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/upload-stuck-2/#post-14931200)
 * to stop automatic updates… for 6.77 version.
 * make a “mu-plugins” folder
    add inside a file > disable-update-all-in-one-migration.
   php
 *     ```
       <?php
           /* 
            * Disable update notification for individual plugins
            */  
       /* Function which remove Plugin Update Notices – all-in-one-wp-migration*/
       function disable_plugin_updates( $value ) {
          unset( $value->response['all-in-one-wp-migration/all-in-one-wp-migration.php'] );
          return $value;
       }
       add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' );
       ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Mobile menu customization](https://wordpress.org/support/topic/mobile-menu-customization/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/mobile-menu-customization/#post-11204132)
 * hi Leo…
    thank’s for the “tip” 🙂
 *     ```
       <?php
           /* 
            * generatepress logo mobile
       	 * Source: https://generatepress.com/forums/topic/how-to-create-a-menu-bar-with-logo/
            */  
       add_action('generate_inside_mobile_menu_bar','generate_navigation_logo');
       function generate_navigation_logo()
       {
       ?>
       	<div class="site-logo">
       		<a href="tel:0102030405"><img src="phone image" alt="mobile"></a>
       	</div>
       	<div class="site-logo">
       		<a href="https://auto.cazes.info"><img src="My logo here" alt="logo"></a>
       	</div>
       <?php
       }
       ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Mobile menu customization](https://wordpress.org/support/topic/mobile-menu-customization/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/mobile-menu-customization/#post-11199207)
 * ok… i made some “test”…
    it seem that is working: Source:** [https://generatepress.com/forums/topic/site-title-in-navigation-bar/](https://generatepress.com/forums/topic/site-title-in-navigation-bar/)**
 * CSS:
 *     ```
       @media only screen and (max-width: 850px) {      
           .main-navigation .site-logo{
           float: right;
           line-height: 20px; /* Adjust this to your menu item height */
           margin-right: 5.5em;
           margin-top: 10px;
   
       } 
       ```
   
 * PHP:
 *     ```
       <?php
           /* 
            * generatepress logo mobile
       	 * Source: https://generatepress.com/forums/topic/how-to-create-a-menu-bar-with-logo/
            */  
       add_action('generate_inside_navigation','generate_navigation_logo');
       function generate_navigation_logo()
       {
       ?>
       	<div class="site-logo mobile-image">
       		<a href="tel:0102030405"><img src="phone image here" alt="mobile"></a>
       	</div>
       	<div class="site-logo mobile-image">
       		<a href="link to home"><img src="logo here" alt="logo"></a>
       	</div>
       <?php
       }
       ?>
       ```
   
 * two classes, “site logo” and “mobile-image”
    RESULT: [the result here…](https://prnt.sc/mkas6w)
 * tell me, if that correct ?
 * re… thank you 😉
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] GP and wp car manager problem…](https://wordpress.org/support/topic/gp-and-wp-car-manager-problem/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/gp-and-wp-car-manager-problem/#post-11182334)
 * hello… working perfect…both problems solved!
 * [result on my test site …](https://prnt.sc/mi6gl3)
 * (in the next day, i will integrate Wp show post…)
 * thank you so much Tom 🙂
 * Alain.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] GP and wp car manager problem…](https://wordpress.org/support/topic/gp-and-wp-car-manager-problem/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/gp-and-wp-car-manager-problem/#post-11178052)
 * Hi Tom 🙂
    workking perfect now !
 * thank you !!!!
 * other problem with the search box…
 * [search bad display…](https://prnt.sc/mhpo46)
 * and with “Twenty sixteen”…
    [search align is ok](https://prnt.sc/mhpo73)
 * do have an ” idea” ?
 * thank’s
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happyforms - Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms] how to have date in european format ?](https://wordpress.org/support/topic/how-to-have-date-in-european-format/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/how-to-have-date-in-european-format/#post-11132732)
 * Hey [@thethemefoundry](https://wordpress.org/support/users/thethemefoundry/)
 * do you know… 😉
    interested ! of course !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happyforms - Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms] How to include a referer ?](https://wordpress.org/support/topic/how-to-include-a-referer/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/how-to-include-a-referer/#post-11118031)
 * [@thethemefoundry](https://wordpress.org/support/users/thethemefoundry/) …
 * is working with ” !important ”
 *     ```
       .happyforms-part-page-id {
           display: none !important;
       }
       ```
   
 * also i have put your code in the “mu-plugin ”
    to avoid any problem with theme
   update.
 * many tanks 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happyforms - Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms] How to include a referer ?](https://wordpress.org/support/topic/how-to-include-a-referer/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/how-to-include-a-referer/#post-11117545)
 * Hey [@thethemefoundry](https://wordpress.org/support/users/thethemefoundry/)
 * its working !
    look > ht[tps://prnt.sc/mam7g8](https://prnt.sc/mam7g8)
 * email result > > [https://prnt.sc/mam7ob](https://prnt.sc/mam7ob)
 * now, we must hide the field 🙂
 * thanks !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happyforms - Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms] How to include a referer ?](https://wordpress.org/support/topic/how-to-include-a-referer/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/how-to-include-a-referer/#post-11111303)
 * Hey [@thethemefoundry](https://wordpress.org/support/users/thethemefoundry/)
   
   ok for the chalenge …
 * BUT…to be honest with you, it will be “difficult”
    for me…
 * thanks for you patience…
    🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happyforms - Form Builder for WordPress: Drag & Drop Contact Forms, Surveys, Payments & Multipurpose Forms] reduce the space between the form fields](https://wordpress.org/support/topic/reduce-the-space-between-the-form-fields/)
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/reduce-the-space-between-the-form-fields/#post-11102545)
 * thank you 🙂

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

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