Title: dinkybluebug's Replies | WordPress.org

---

# dinkybluebug

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Product Fields (Product Addons) for WooCommerce] Hide custom field price in shopping cart](https://wordpress.org/support/topic/hide-custom-field-price-in-shopping-cart/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [6 years ago](https://wordpress.org/support/topic/hide-custom-field-price-in-shopping-cart/#post-12693232)
 * Will do – and thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Shopping Cart] Checkout not working on mobile device through facebook store](https://wordpress.org/support/topic/checkout-not-working-through-facebook-store/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/checkout-not-working-through-facebook-store/#post-12073168)
 * Ive sorted it.
 * unticked Open PayPal Checkout Page in a New Tab
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cubic] add another sidebard to single post page](https://wordpress.org/support/topic/add-another-sidebard-to-single-post-page/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/add-another-sidebard-to-single-post-page/#post-6629324)
 * thanks Kathryn, I think you’re right.
 * So speaking of child themes then, its mostly the functions.php that I change
 * If the original theme had a functions.php file that contained content A, B, C
 * and I wanted to add in D and E – currently at the moment, I add this onto the
   end of the functions file so it has A,B,C,D,E
 * using child themes, would I create a functions file with A,B,C,D,E in , or leagve
   the parent with A,B,C and then have a child theme functions file with just D,
   E in?
 * am I making sense?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cubic] static header, scoll bar underneath](https://wordpress.org/support/topic/static-header-scoll-bar-underneath/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/static-header-scoll-bar-underneath/#post-6584616)
 * Hi, Yes- I added this into the stylesheet to fix the header :
 *     ```
       body.home header#masthead.site-header,
       body.archive.category header#masthead.site-header {
       	position: fixed;
       ```
   
 * then added changes to margin top into the responsive code in the cubic stylesheet.
   See below code that changes depending on width of screen
 *     ```
       body.archive.category div#content.site-content,
       	body.home div#content.site-content {
           margin-top: 0px;
           }
       ```
   
 *     ```
       /*--------------------------------------------------------------
       7.0 Responsive
       --------------------------------------------------------------*/
   
       	body.archive.category div#content.site-content,
       	body.home div#content.site-content {
           margin-top: 73px;
           } 
   
       /*--------------------------------------------------------------
       7.1 x <= 568px
       --------------------------------------------------------------*/
       @media screen and (min-width: 568px) {
           /* Content */
   
       	body.archive.category div#content.site-content,
       	body.home div#content.site-content {
           margin-top: 97px;
           } 
   
       	.archive .hentry,
       	.blog .hentry,
       	.search-results .hentry {
       		float: left;
       		padding-bottom: 50%;
       		width: 50%;
       	}
       	.archive .hentry:nth-of-type(2n+3),
       	.blog .hentry:nth-of-type(2n+3),
       	.search-results .hentry:nth-of-type(2n+3) {
       		clear: left;
       	}
   
       }
   
       /*--------------------------------------------------------------
       7.2 x <= 768px
       --------------------------------------------------------------*/
       @media screen and (min-width: 768px) {
       	/* Layout */
       	body.archive.category div#content.site-content,
       	body.home div#content.site-content {
           margin-top: 0px;
           }
   
       	.archive .page-header,
       	.search-results .page-header,
       	.unfixed-header.archive:not(.sidebar-open) .page-header,
       	.unfixed-header.archive:not(.sidebar-open) .site-header,
       	.unfixed-header.blog:not(.sidebar-open) .site-header,
       	.unfixed-header.search-results:not(.sidebar-open) .page-header,
       	.unfixed-header.search-results:not(.sidebar-open) .site-header {
       		position: absolute;
       	}
       	.archive .site-footer,
       	.blog .site-footer,
       	.search-results .site-footer {
       		position: inherit;
       	}
   
       	/* Jetpack */
       	#infinite-handle:before {
       		-webkit-transform: none;
       		-moz-transform:    none;
       		transform:         none;
       	}
       	.site-main .infinite-loader {
       		width: 100%;
       		height: 73px;
       		border: 0;
       		border-top: 1px solid #d9d9d9;
       	}
       	.infinite-scroll.neverending .site-main .infinite-loader {
       		height: 49px;
       	}
       	.infinite-scroll.neverending .site-footer {
       		display: none;
       	}
       	.infinity-end.neverending .site-footer {
       		display: block;
       	}
       }
   
       /*--------------------------------------------------------------
       7.3 x <= 1024px
       --------------------------------------------------------------*/
       @media screen and (min-width: 1024px) {
       	/* Content */
       	.archive .hentry,
       	.blog .hentry,
       	.search-results .hentry {
       		padding-bottom: 33.3333%;
       		width: 33.3333%;
       	}
       	.archive .hentry:nth-of-type(2n+3),
       	.blog .hentry:nth-of-type(2n+3),
       	.search-results .hentry:nth-of-type(2n+3) {
       		clear: none;
       	}
       	.archive .hentry:nth-of-type(3n+4),
       	.blog .hentry:nth-of-type(3n+4),
       	.search-results .hentry:nth-of-type(3n+4) {
       		clear: left;
       	}
   
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] use email address as user name when registering users](https://wordpress.org/support/topic/use-email-address-as-user-nme-when-registering-users/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/use-email-address-as-user-nme-when-registering-users/#post-6570430)
 * resolved here [https://wedevs.com/support/topic/use-user-name-as-user-nickname-in-profile/#post-74313](https://wedevs.com/support/topic/use-user-name-as-user-nickname-in-profile/#post-74313)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cubic] static header, scoll bar underneath](https://wordpress.org/support/topic/static-header-scoll-bar-underneath/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/static-header-scoll-bar-underneath/#post-6584369)
 * I fixed it myself!! herrah
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Swift SMTP (formerly Welcome Email Editor)] put "name" into nickname instead of user name](https://wordpress.org/support/topic/put-name-into-nickname-instead-of-user-name/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/put-name-into-nickname-instead-of-user-name/#post-6575661)
 * ignore this…. posted on wrong page
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Swift SMTP (formerly Welcome Email Editor)] use tag [user_nickname}](https://wordpress.org/support/topic/use-tag-user_nickname/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/use-tag-user_nickname/#post-6571870)
 * No – i havent… rubbish
 * Ive added in :
 * $user_nickname = $user->display_name;
 * and then also
 * $admin_message = str_replace(‘[nickname]’, $user_nickname, $admin_message);
    
   $admin_subject = str_replace(‘[nickname]’, $user_nickname, $admin_subject); $
   user_message = str_replace(‘[nickname]’, $user_nickname, $user_message); $user_subject
   = str_replace(‘[nickname]’, $user_nickname, $user_subject);
 * in their respective places.
 *  Im using the tag [nickname] in the email and its not working. I want the email
   to show their displayed name
 * Any help?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Swift SMTP (formerly Welcome Email Editor)] use tag [user_nickname}](https://wordpress.org/support/topic/use-tag-user_nickname/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/use-tag-user_nickname/#post-6571819)
 * Ive fixed it all by myself. Yay
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] Insert featured image button doesnt work when using w3 total cache](https://wordpress.org/support/topic/insert-featured-image-button-doesnt-work-when-using-w3-total-cache/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/insert-featured-image-button-doesnt-work-when-using-w3-total-cache/#post-6566119)
 * yes I’m using WP super cache now and this seems to be working.
 * Thank you deepbevel
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cubic] Change width of one page](https://wordpress.org/support/topic/change-width-of-one-page/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/change-width-of-one-page/#post-6561966)
 * Excellent. Thank you. I didn’t put a space between the object code and the page
   id. Now that it’s there it works. Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] add a automatically when image is added to posr](https://wordpress.org/support/topic/add-a-automatically-when-image-is-added-to-posr/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/add-a-automatically-when-image-is-added-to-posr/#post-6561873)
 * Sorry. Just read my post back and it doesn’t make any sense as the code has been
   removed
 * I’d like a line break to be added in automatically after an image when an image
   is added into a post using the ‘add image’ button. At the moment it isn’t clear
   when the cursor is as it located buttom right of the image and isn’t obvious 
   where it is. Meaning you try and move the cursor about looking for it
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cubic] Change width of one page](https://wordpress.org/support/topic/change-width-of-one-page/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/change-width-of-one-page/#post-6561865)
 * ive worked out what i need to add to get the page wider:
 * entry-content {
    padding-left: 0; padding-right: 0; width: 90%; }
 * but the problem is that it changes the width across the whole site.
 * Anyone know how I can just amend this code so that it changes on page on my site?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cubic] change order of menu / show widget first](https://wordpress.org/support/topic/change-order-of-menu-show-widget-first/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/change-order-of-menu-show-widget-first/#post-6543087)
 * Yay! Sacredpath it worked – well you knew that, ha ha
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] Users can't edit posts](https://wordpress.org/support/topic/users-cant-edit-posts/)
 *  Thread Starter [dinkybluebug](https://wordpress.org/support/users/dinkybluebug/)
 * (@dinkybluebug)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/users-cant-edit-posts/#post-6540149)
 * ignore me – I didn’t have the right page listed in the settings for where edit
   page is located. Sorry

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

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