Title: mattwebdev's Replies | WordPress.org

---

# mattwebdev

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Lost Text Wrapping/Formatting tags](https://wordpress.org/support/topic/lost-text-wrappingformatting-tags/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/lost-text-wrappingformatting-tags/#post-5673473)
 * Yeah, fair. I didn’t know they are removed from wordpress.org repo’s, like mentioned
   above, either. You learn something new everyday!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Lost Text Wrapping/Formatting tags](https://wordpress.org/support/topic/lost-text-wrappingformatting-tags/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/lost-text-wrappingformatting-tags/#post-5673280)
 * Those would be shortcodes ([http://codex.wordpress.org/Shortcode_API](http://codex.wordpress.org/Shortcode_API)),
   and are part of the theme – not WordPress core.
 * Looks like someone else had the same issue here:
    [https://wordpress.org/support/topic/lost-message-blocks?replies=3](https://wordpress.org/support/topic/lost-message-blocks?replies=3)
 * Until the dev fixes it – I’d re-install the older version of the theme, like 
   suggested in that link I provided. Just the theme, not WordPress itself.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [display custom post type from register taxonomy](https://wordpress.org/support/topic/display-custom-post-type-from-register-taxonomy/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/display-custom-post-type-from-register-taxonomy/#post-5670521)
 * The setup looks correct – but you’re right, the error is in your query. Checkout
   [http://codex.wordpress.org/Class_Reference/WP_Query](http://codex.wordpress.org/Class_Reference/WP_Query)
   for a huge list of options. There is a section on taxonomy queries.
 * The code below should work for what you’re looking to accomplish:
 *     ```
       $args = array(
       	'post_type' => 'advertising',
       	'posts_per_page' => 50,
       	'tax_query' => array(
       		array(
       			'taxonomy' => 'advertising_type',
       			'field' => 'slug',
       			'terms' => 'recruitment'
       		)
       	)
       );
   
       $query = new WP_Query( $args );
   
       if ( $query->have_posts() ) :
       	while( $query->have_posts() ) :
       		$query->the_post();
       		// code to display your post
       	endwhile;
       else :
       	// if empty
       endif;
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [how to arrange the text width in the 2014 theme?](https://wordpress.org/support/topic/how-to-arrange-the-text-width-in-the-2014-theme/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/how-to-arrange-the-text-width-in-the-2014-theme/#post-5660301)
 * That is correct, the code I provided is CSS and can go in your child-themes style.
   css file. Remember to replace the references to twenty-fifteen to fourteen since
   you’re using that theme. Also, follow the instructions on that page to create
   the functions.php child-theme file to enqueue the files properly.
 * If all goes well, you should see the new child-theme in the admin.
 * This way you can make as many or as little changes as you want via the child-
   theme, without overriding anything from the default.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Not going anywhere…. Scroll from created Theme from Tesla](https://wordpress.org/support/topic/not-going-anywhere-scroll-from-created-theme-from-tesla/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/not-going-anywhere-scroll-from-created-theme-from-tesla/#post-5660990)
 * You’ve got a Javascript error every time you click on a navigation link. Coming
   from a plugins.js file. Do you have many third party plugins installed? Have 
   you tried disabling the plugins 1 by 1 to see which one is causing the issue?
 * It looks like there is a plugin installed that has a conflict with your theme’s
   Javascript. If you can pinpoint the conflicting plugin, I may be able to help
   further.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [how to arrange the text width in the 2014 theme?](https://wordpress.org/support/topic/how-to-arrange-the-text-width-in-the-2014-theme/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/how-to-arrange-the-text-width-in-the-2014-theme/#post-5660195)
 * Hi there.
 * The code that is controling the content width of your theme is:
 *     ```
       .site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content {
       margin: 0 auto;
       max-width: 474px;
       }
       ```
   
 * You can see it has been set to a max-width of 474px, and the `margin: 0 auto`
   is what is centering it. You could simply override the max-width value to achieve
   the look you’re after.
 * Probably best to do so in a child theme ([http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Not going anywhere…. Scroll from created Theme from Tesla](https://wordpress.org/support/topic/not-going-anywhere-scroll-from-created-theme-from-tesla/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/not-going-anywhere-scroll-from-created-theme-from-tesla/#post-5660792)
 * Can you post a link to your site?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove or hide powered by WordPress on footer (new)](https://wordpress.org/support/topic/remove-or-hide-powered-by-wordpress-on-footer-new/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/remove-or-hide-powered-by-wordpress-on-footer-new/#post-5660193)
 * Hey there.
 * I took a look at the theme, and believe I have a solution for you. In the code
   you posted above – you’ll notice the:
 *     ```
       <div id="footer2">
           <?php cryout_footer_hook(); ?>
       </div><!-- #footer2 -->
       ```
   
 * This is what is displaying the copyright section, social media & your “powered
   by” message.
    You can remove it two ways:
 * 1 – Remove the function that calls for the “powered by” entirely, by pasting 
   the following at the bottom of the theme’s functions.php file:
    `remove_action('
   cryout_footer_hook','tempera_site_info',99);`
 * Remember that if you update the theme, this will get removed.
 * 2 – You could also simply hide it with CSS. That particular line has inline styles
   on it, so you’d have to add !important to the over-ride. something like this 
   should work:
 * `#footer2 span { display: none!important; }`
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Make] menu max width](https://wordpress.org/support/topic/menu-max-width/)
 *  [mattwebdev](https://wordpress.org/support/users/mattwebdev/)
 * (@mattwebdev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/menu-max-width/#post-5660775)
 * Can you post a link to to your website?

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