Title: platingpixels's Replies | WordPress.org

---

# platingpixels

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] How to add post title above featured image](https://wordpress.org/support/topic/how-to-add-post-title-above-featured-image/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/how-to-add-post-title-above-featured-image/#post-6807295)
 * I made the old changes in featured and it seemed to work, but lost the comment
   count on image. Reverted back and figured out how to move it in content-featured.
   php
 * Thanks so much!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Hueman theme mobile topbar not sticky on posts](https://wordpress.org/support/topic/hueman-theme-mobile-topbar-not-sticky-on-posts-1/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/hueman-theme-mobile-topbar-not-sticky-on-posts-1/#post-6797762)
 * I was able to add div padding to my header ad within the Ad Inserter plugin I’m
   using. Appears to be working fine.
 * Except my admin menu bar isn’t sticky on mobile. Technically that’s fine since
   users don’t see that. Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Hueman theme mobile topbar not sticky on posts](https://wordpress.org/support/topic/hueman-theme-mobile-topbar-not-sticky-on-posts-1/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/hueman-theme-mobile-topbar-not-sticky-on-posts-1/#post-6797700)
 * Thanks but that didn’t seem to work. I was able to move the ad down in my header
   file but didn’t fix. I found this css that did stick the mobile top bar.
 * .full-width #nav-topbar.nav-container {
    position: fixed; }
 * But now my google ad is hidden below top bar on mobile. Is there a way to move
   that down or add padding above it?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] How do I add Blog Subheading to all pages/posts](https://wordpress.org/support/topic/how-do-i-add-blog-subheading-to-all-pagesposts/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years ago](https://wordpress.org/support/topic/how-do-i-add-blog-subheading-to-all-pagesposts/#post-6222347)
 * That did it. Thank you so much!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] How do I add Blog Subheading to all pages/posts](https://wordpress.org/support/topic/how-do-i-add-blog-subheading-to-all-pagesposts/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years ago](https://wordpress.org/support/topic/how-do-i-add-blog-subheading-to-all-pagesposts/#post-6222299)
 * Sorry but I tried to make sense of what you suggested did a few options based
   on that, and it locked up my site. I was able to revert back easily. I have this
   code in my function that sounds like what you are referring to. How exactly should
   I change it to get my blog subheading to show on all post? (it’s in the are right
   to the left of the comment count on posts – you can see it on my homepage but
   not posts.
 *     ```
       Page title
       /* ------------------------------------ */
       if ( ! function_exists( 'alx_page_title' ) ) {
   
       	function alx_page_title() {
       		global $post;
   
       		$heading = get_post_meta($post->ID,'_heading',true);
       		$subheading = get_post_meta($post->ID,'_subheading',true);
       		$title = $heading?$heading:the_title();
       		if($subheading) {
       			$title = $title.' <span>'.$subheading.'</span>';
       		}
   
       		return $title;
       	}
   
       }
   
       /*  Blog title
       /* ------------------------------------ */
       if ( ! function_exists( 'alx_blog_title' ) ) {
   
       	function alx_blog_title() {
       		global $post;
       		$heading = ot_get_option('blog-heading');
       		$subheading = ot_get_option('blog-subheading');
       		if($heading) {
       			$title = $heading;
       		} else {
       			$title = get_bloginfo('name');
       		}
       		if($subheading) {
       			$title = $title.' <span>'.$subheading.'</span>';
       		}
   
       		return $title;
       	}
   
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] How do I add Blog Subheading to all pages/posts](https://wordpress.org/support/topic/how-do-i-add-blog-subheading-to-all-pagesposts/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years ago](https://wordpress.org/support/topic/how-do-i-add-blog-subheading-to-all-pagesposts/#post-6222248)
 * That is my site and I tried adding that code to my css editor. It didn’t do anything.
   What’s weird is you see it on the homepage in gray “A Recipe Resource to Teach
   You About Cooking” But doesn’t show in any other post or page. How do I fix that?
   Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Remove responses/comments on particular page (not quick edit option)](https://wordpress.org/support/topic/remove-responsescomments-on-particular-page-not-quick-edit-option/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/remove-responsescomments-on-particular-page-not-quick-edit-option/#post-6031974)
 * Hi thanks for the response. I found a setting on the page edit screen called ‘
   discussions’ that I could check them off. However, it look like ping/trackbacks
   still showed up even if it was turned off. I had to delete them (since it’s a
   newer page and they were just from my own site anyways).
 * Do I have to delete trackbacks to not show them or is there a different way to
   hide?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Server scaled images affecting web speed](https://wordpress.org/support/topic/server-scaled-images-affecting-web-speed/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/server-scaled-images-affecting-web-speed/#post-6005235)
 * Thanks for the response and I’ll look into those. I did a lot of other work to
   speed up my site, and even with those errors the grade ranges from B-A now.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google AdSense] There are already ad placements on this site. You cannot modify them with this p](https://wordpress.org/support/topic/there-are-already-ad-placements-on-this-site-you-cannot-modify-them-with-this-p/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/there-are-already-ad-placements-on-this-site-you-cannot-modify-them-with-this-p/#post-6024247)
 * Sorry forgot the link. My site is [http://www.platingpixels.com](http://www.platingpixels.com)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OnePress Social Locker] Plugin unlocks all posts](https://wordpress.org/support/topic/plugin-unlocks-all-posts/)
 *  [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/plugin-unlocks-all-posts/#post-5822177)
 * Thanks for the response. So if I don’t set the URL to my facebook page and they
   click like, will that just like that specific post (or url). Then they’d have
   to like each post to unlock specific content? If so that won’t have them actually
   like my FB page and add to my like count correct?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OnePress Social Locker] Plugin unlocks all posts](https://wordpress.org/support/topic/plugin-unlocks-all-posts/)
 *  [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/plugin-unlocks-all-posts/#post-5822175)
 * I agree. I want to to put specific extra cooking tips on every page. I don’t 
   want one share to be able to unlock every page. That seems to defeat the purpose
   of this plugin. Do I need to create a new locker for every page?
 * [http://www.platingpixels.com/how-to-steam-artichokes/](http://www.platingpixels.com/how-to-steam-artichokes/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popups - WordPress Popup] How do I change the size of the buttons (Facebook specifically)](https://wordpress.org/support/topic/how-do-i-change-the-size-of-the-buttons-facebook-specifically/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-change-the-size-of-the-buttons-facebook-specifically/#post-5881652)
 * Is seems like they should be centered within box and evenly space apart correct?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popups - WordPress Popup] How do I change the size of the buttons (Facebook specifically)](https://wordpress.org/support/topic/how-do-i-change-the-size-of-the-buttons-facebook-specifically/)
 *  Thread Starter [platingpixels](https://wordpress.org/support/users/platingpixels/)
 * (@platingpixels)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-change-the-size-of-the-buttons-facebook-specifically/#post-5881651)
 * Thanks but that didn’t appear to help. The button size looks like it’s only one
   size from Facebook?
 * Also they are not aligning as they do in your screenshots on [https://wordpress.org/plugins/popups/](https://wordpress.org/plugins/popups/)
 * And the google plus is still sitting on top of the twitter button.

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