Title: philwebs's Replies | WordPress.org

---

# philwebs

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Titles display vertically in the articles list](https://wordpress.org/support/topic/titles-display-vertically-in-the-articles-list/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/titles-display-vertically-in-the-articles-list/#post-10739705)
 * Hi,
 * Are you talking about the admin view of your posts? If so, you probably have 
   some plugins adding additional columns to the posts list. You can try to adjust
   the settings of those plugins to not add columns or you can use CSS to adjust
   the widths of those columns.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Double size my site’s icons](https://wordpress.org/support/topic/double-size-my-sites-icons/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/double-size-my-sites-icons/#post-10739455)
 * Hi,
 * I’m looking at you home page and I see the icons. If these are the icons you 
   want to change then this can be done by editing the CSS. Right now, they are 
   40px x 40px.
    You need to change the `font-size` of the `.icon-box` class. If
   you want them to be twice as big you can make:
 *     ```
       .icon-box {
             font-size: 80px;
       }
       ```
   
 * Hopefully this helps.
 * Phil
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [sort sql query from metadata](https://wordpress.org/support/topic/sort-sql-query-from-metadata/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/sort-sql-query-from-metadata/#post-10739419)
 * Hello,
 * I think you might want to to try to get the user meta via [https://codex.wordpress.org/Function_Reference/get_user_meta](https://codex.wordpress.org/Function_Reference/get_user_meta)
 * Then you can put the meta data in the order that you want it to display.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Set lower number of home page posts for mobile only](https://wordpress.org/support/topic/set-lower-number-of-home-page-posts-for-mobile-only/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/set-lower-number-of-home-page-posts-for-mobile-only/#post-10134360)
 * One approach you could use for this would be to use `wp_is_mobile` to detect 
   if it is mobile
    [https://codex.wordpress.org/Function_Reference/wp_is_mobile](https://codex.wordpress.org/Function_Reference/wp_is_mobile)
   and `pre_get_posts` to change to number of posts to 10. [https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts](https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts)
 * Hopefully this helps, let me know if you I can help you anymore.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [cant write “phone_number” to db as “tel:phone_number”](https://wordpress.org/support/topic/cant-write-phone_number-to-db-as-telphone_number/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/cant-write-phone_number-to-db-as-telphone_number/#post-8916913)
 * Marat,
 * I hope you are doing well!
 * What you are showing is called a ternary operator. It sort of a shorthand for
   an if/else statement.
 * What this is saying is that if the `user-phone` has been sent with the POST request
   then set the `$phone` variable to the value of `$_POST[‘user-phone’]`
 * A complete ternary looks like this:
 *     ```
       $variable = (a statement that is either true or false) ? if true do this : if false do this;
       ```
   
 * For you I’d try
 *     ```
       $phone = isset($_POST[‘user-phone’]) ? 'tel:' . ($_POST[‘user-phone’] : '' 
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problem with Disappearing Header Image on Mobile](https://wordpress.org/support/topic/problem-with-disappearing-header-image-on-mobile/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/problem-with-disappearing-header-image-on-mobile/#post-8916867)
 * Hey,
 * The header image is still there, it is under the menu bar. You can add a margin
   to the header image to push it down so you can see it.
 * You will need to add a `margin-top` that is equal to the menu height. You will
   want to do this with a media query so you don’t push the image down when it is
   on a wide screen.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Calendar/Event Plugin – Multiple Supplier/Merchant?](https://wordpress.org/support/topic/calendarevent-plugin-multiple-suppliermerchant/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/calendarevent-plugin-multiple-suppliermerchant/#post-8916778)
 * Hi toups5,
 * You could create a vendor custom post type and then add a meta box to an events
   calendar plugin containing the vendors. I’ve done something similar using [The Events Calendar](https://wordpress.org/plugins/the-events-calendar/)
   by Modern Tribe for the calendar portion of the plugin.
 * Hopefully this will be a start for you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Navigation Button](https://wordpress.org/support/topic/navigation-button-2/)
 *  [philwebs](https://wordpress.org/support/users/philwebs/)
 * (@philwebs)
 * [10 years ago](https://wordpress.org/support/topic/navigation-button-2/#post-7308331)
 * The padding in this CSS, which is from Bootstrap, is making the buttons taller
   than you would like. You will need to add some CSS to your style.css file of 
   the theme.
 *     ```
       .btn {
           display: inline-block;
           padding: 6px 12px;
           margin-bottom: 0;
           font-size: 14px;
          //I've removed stuff here
       }
       ```
   
 * You could try something like changing the padding to:
    padding: 2px, 12px;
 * To make more space you will need to add a margin to the two button elements.
 * Hopefully this helps.

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