Title: Justin Tucker's Replies | WordPress.org

---

# Justin Tucker

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Change filename of custom page templates without breaking stuff](https://wordpress.org/support/topic/change-filename-of-custom-page-templates-without-breaking-stuff/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/change-filename-of-custom-page-templates-without-breaking-stuff/#post-9035155)
 * Hi Guido,
 * It sounds like you are looking for a global page template, which is similar to
   what you have now but with a special header added to the template file.
 * You can read more about that here:
    [https://developer.wordpress.org/themes/template-files-section/page-template-files/#creating-custom-page-templates-for-global-use](https://developer.wordpress.org/themes/template-files-section/page-template-files/#creating-custom-page-templates-for-global-use)
 * After creating the custom template you can programmatically set the postmeta 
   to the template name.
    -  This reply was modified 9 years, 1 month ago by [Justin Tucker](https://wordpress.org/support/users/certainstrings/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Delete shipping and taxes column](https://wordpress.org/support/topic/delete-shipping-and-taxes-column/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/delete-shipping-and-taxes-column/#post-8842699)
 * That looks like a default woocommerce cart. You can adjust the cart display by
   copying the template, placing it in your theme and adjusting the code.
 * Read how it works here:
    [https://docs.woocommerce.com/document/template-structure/](https://docs.woocommerce.com/document/template-structure/)
 * The template you most likely need should be in this folder within the plugin:
   
   [https://github.com/woocommerce/woocommerce/tree/2.6.0/templates/cart](https://github.com/woocommerce/woocommerce/tree/2.6.0/templates/cart)
    -  This reply was modified 9 years, 2 months ago by [Justin Tucker](https://wordpress.org/support/users/certainstrings/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Section not appearing](https://wordpress.org/support/topic/php-help-needed-section-not-appearing-please-and-thank-you/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/php-help-needed-section-not-appearing-please-and-thank-you/#post-8842679)
 * Try resetting post data after your news section. `wp_reset_postdata();`
 * Also, you may want to swap out the use of `query_posts()` for `WP_Query()`.
 * Read [@rarst](https://wordpress.org/support/users/rarst/)’s explanation here:
   [http://wordpress.stackexchange.com/questions/1753/when-should-you-use-wp-query-vs-query-posts-vs-get-posts](http://wordpress.stackexchange.com/questions/1753/when-should-you-use-wp-query-vs-query-posts-vs-get-posts).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lens] Header image overlay mesh/grid effect](https://wordpress.org/support/topic/header-image-overlay-meshgrid-effect/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/header-image-overlay-meshgrid-effect/#post-8369390)
 * Same as above but remove `:after`
 *     ```
       #masthead .layer {
           background: none;
       }
       ```
   
    -  This reply was modified 9 years, 6 months ago by [Justin Tucker](https://wordpress.org/support/users/certainstrings/).
    -  This reply was modified 9 years, 6 months ago by [Justin Tucker](https://wordpress.org/support/users/certainstrings/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Sixteen] How to create template in twentysixteen theme?](https://wordpress.org/support/topic/how-to-create-template-in-twentysixteen-theme/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-create-template-in-twentysixteen-theme/#post-7092098)
 * [@michael](https://wordpress.org/support/users/michael/) Good point. I was thinking
   auto page templates, such as page-$slugname.php without the header.
 * [@shakil6677](https://wordpress.org/support/users/shakil6677/) Glad you got it
   sorted.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Sixteen] How to create template in twentysixteen theme?](https://wordpress.org/support/topic/how-to-create-template-in-twentysixteen-theme/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-to-create-template-in-twentysixteen-theme/#post-7092052)
 * Your code looks correct, but you need rename your directory to `page-templates`
   and your file name to `home-page-template.php`.
 * By default WordPress only recognizes two folders for auto-loading. They are languages
   and page-templates.
 * You can read more about that here:
    [https://developer.wordpress.org/themes/basics/organizing-theme-files/](https://developer.wordpress.org/themes/basics/organizing-theme-files/)
 * [https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/#file-organization-of-page-templates](https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/#file-organization-of-page-templates)
 * Also, best practices recommend using a child theme to add custom code.
    [https://developer.wordpress.org/themes/advanced-topics/child-themes/](https://developer.wordpress.org/themes/advanced-topics/child-themes/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Emphasize] how do i remove the gap between my video and menu bar](https://wordpress.org/support/topic/how-do-i-remove-the-gap-between-my-video-and-menu-bar/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-do-i-remove-the-gap-between-my-video-and-menu-bar/#post-7070088)
 * You’re welcome. Glad I could help.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Emphasize] how do i remove the gap between my video and menu bar](https://wordpress.org/support/topic/how-do-i-remove-the-gap-between-my-video-and-menu-bar/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-remove-the-gap-between-my-video-and-menu-bar/#post-7069950)
 * Hi debonemo,
 * You have a few things going on here. First you need to modify some css. You can
   install a WordPress plugin that allows you to enter custom css.
 * Something like this: [https://wordpress.org/plugins/simple-custom-css/](https://wordpress.org/plugins/simple-custom-css/)
 * Then you will need to add some selectors.
 *     ```
       #content {
           padding: 0 0 40px;
       }
   
       .entry-content {
           margin: 0;
       }
       ```
   
 * Finally, you’ll need to adjust some of the content in the text widget that is
   adding your video. There is an extra `<p></p>` tag that is causing extra padding.
   If you can’t remove it, you could target it with some css as well.
 *     ```
       .siteorigin-panels-stretch p {
           margin: 0;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [center aligning the post carousel](https://wordpress.org/support/topic/center-aligning-the-post-carousel/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/center-aligning-the-post-carousel/#post-7040591)
 * Without being able to see the site, I can only speculate. It sounds like there
   may be some css that is positioning carousel to float left.
 * It may be a css issue, it may be a setting with the theme/plugin.
 * If you’re in the Google Chrome browser, you can right click on the carousel and
   that will show what styles have been applied to the carousel.
 * From there you could use a WordPress plugin that enables adding custom css. Again,
   it’s hard to troubleshoot without seeing the site. Hopefully that will get you
   in the right direction.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Image for Inner Page](https://wordpress.org/support/topic/image-for-inner-page/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/image-for-inner-page/#post-7040565)
 * You could try a plugin combination of an image uploader widget and one that shows
   widgets on specific pages.
 * [https://wordpress.org/plugins/easy-image-uploader/screenshots/](https://wordpress.org/plugins/easy-image-uploader/screenshots/)
   
   [https://wordpress.org/plugins/display-widgets/](https://wordpress.org/plugins/display-widgets/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to fix W3C validation errors](https://wordpress.org/support/topic/how-to-fix-w3c-validation-errors/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-fix-w3c-validation-errors/#post-7057062)
 * It looks like you have two separate plugins that are integrating Facebook on 
   your site. I can see a widget in the footer and I believe the other one has to
   do with sharing content.
 * `<fb-root>` is used to load content from Facebook. The plugins you have here 
   are adding their own element without checking if one exists.
 * You can try disabling one of your Facebook plugins or temporarily removing a 
   widget and rerun the validator to see if that was the issue.
 * As errors go, duplicate nodes in this case aren’t going to be a huge issue. If
   both of your plugins function as expected, you may just leave them. Otherwise,
   you would need to high a developer to look into removing the additional Facebook
   node.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [change the theme by in the admin section](https://wordpress.org/support/topic/change-the-theme-by-in-the-admin-section/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/change-the-theme-by-in-the-admin-section/#post-7054127)
 * Glad i could help. Can you mark this topic as resolved?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Can't Get Child Theme To Load -"Template is missing" error](https://wordpress.org/support/topic/cant-get-child-theme-to-load-template-is-missing-error/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-get-child-theme-to-load-template-is-missing-error/#post-7054008)
 * Have you created a `functions.php` file?
 * Using `@import` is no longer considered best practice. You’ll want to enqueue
   your stylesheets using WordPress hooks.
 * You can read more about that just below the header css section on this page: 
   [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [change the theme by in the admin section](https://wordpress.org/support/topic/change-the-theme-by-in-the-admin-section/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/change-the-theme-by-in-the-admin-section/#post-7053999)
 * If you’re referring to this:
    [https://cloudup.com/ch0WV_wV80N](https://cloudup.com/ch0WV_wV80N)
 * It’s located in the style.css file, within the root directory of the theme.
 * Specifically: [https://github.com/WordPress/twentysixteen/blob/master/style.css#L4](https://github.com/WordPress/twentysixteen/blob/master/style.css#L4)
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [How to start building very first wordpress website](https://wordpress.org/support/topic/how-to-start-building-very-first-wordpress-website/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-start-building-very-first-wordpress-website/#post-7028725)
 * If you’re looking to build a theme from the ground up, you’ll want to look into
   a few things.
 * First – setting up a local server. If you don’t have experience with this, DesktopServer
   is a quick way to get started. MAMP is also a good solution. Both have free options.
 * [https://serverpress.com/get-desktopserver/](https://serverpress.com/get-desktopserver/)
   
   [https://www.mamp.info/en/](https://www.mamp.info/en/)
 * Next you’ll want to read up on how themes work and what files are invovled. Check
   out the theme handbook.
 * [https://developer.wordpress.org/themes/getting-started/](https://developer.wordpress.org/themes/getting-started/)

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

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