Forum Replies Created
-
AuthorPosts
-
BPMember
Here's the solution.
I got it from Jeremy Herve, JetPack Mechanic, via WordPress forum.The wp_mail filter allows you to customize each one of the arguments passed to the wp_mail function in WordPress:
https://developer.wordpress.org/reference/hooks/wp_mail/
You could consequently use it to customize the email headers and change Mailed-by. However, it's worth noting that your changes will apply to all emails sent by WordPress, regardless of the plugin you use.
I hope this helps.
Brad
BPMemberI figured it out. I remembered some PHP code I used in a non/pre HTML5 theme for a similar reason in the Genesis Simple Hooks plugin and it worked! Here's the code I used:
For posts/articles:
<?php if (is_single() ) { ?>
<p>Adsense Code Goes Here</p>
<?php } ?>For pages:
<?php if (is_page() ) { ?>
<p>Adsense Code Goes Here</p>
<?php } ?>
Brad
BPMemberThis reply has been marked as private.January 31, 2016 at 10:43 pm in reply to: Get Adsense ads to display below article title and By WP meta info? #178016BPMemberThank you for the tips, GD.
Brad
January 31, 2016 at 6:35 pm in reply to: Get Adsense ads to display below article title and By WP meta info? #178002BPMemberThank you, Brad!
Brad
January 31, 2016 at 5:10 pm in reply to: Get Adsense ads to display below article title and By WP meta info? #177991BPMemberThank you, Brad. I'll give it try.
Brad
January 26, 2016 at 5:11 pm in reply to: Will "Open in New Tab" Links Work on Mobile Devices? #177634BPMemberThank you for your reply, Ginger! All good points.
Brad
BPMemberHi PresterJohn,
I did get a quick response when I submitted a "Support Ticket." Their reply to my questions, as best as I can recall, are below the original questions in the quote block.
1.) When was it removed?
2.) Why was it removed?
3.) Will it continue to be supported?
4.) Will it continue to be upgraded? (e.g. to HTML5 at some point.)1. Summer or Fall of 2015. (I do not remember the month the support rep provided.)
2. Sometimes we discontinue a theme and replace it with something else. (Genesis Design Palette Pro ???)
3. Yes!
4. No.I'm very astonished and discouraged by "their" decision to dropped such an amazing theme like Prose. It had been my understanding that "they" planned to upgrade Prose to HTML5 along with making other improvements.
I wish "they" would reconsider, as I like StudioPress/Genesis and their outstanding support team.
Brad
BPMemberYou should submit a support ticket to ask the StudioPress staff. The staff don’t usually read the forums everyday.
Thanks Derek. We think a like. I was planning to do that next. I thought I might get a "different prospective" from those who reply here.
Brad
BPMemberThank you, Brad, but I cannot get it to work. Result with most tries was Adsense ads were blocked below the title on all "pages." I assume the page ID is at the end of the "short link," correct?
Should your code somehow replace or be added to the following, which is in Genesis > Simple Hooks. I tried many variations, but I'm no code expert.
<?php if (is_page() ) { ?>
Your help is greatly appreciated.
Brad
BPMemberI really appreciate all your help, but this is getting too complicated. The date is not all that important, so I'm just going to put it in another widget (which your code enabled) or use the one that's available in the primary nav extras (and use Genesis Prose Extras plugin to switch their locations.)
Thank you for your time and efforts.
Brad
BPMemberWorks! But creates white space between header and nav bar in small mobile devices when testing here: http://www.studiopress.com/responsive/ Do you know how to prevent that?
Brad
BPMemberBPMemberNo. I remove it because it didn't look good.
Brad
BPMemberBPMemberThank you! NutsandBolts. That's cool.
Can you please tell me how to align the date right and change its color.
Brad
BPMemberIf you are trying to change the font color of the "Today's Date" as shown in the Primary Navigation Menu in Prose, here's what worked for me.
#nav li.date {
color: #FFFFFF;
}
Brad
BPMemberAccording to SP Support, the primary and secondary menus cannot be relocated to the header right widget area. You can put the custom menu widget in header right and then restyle it using css, however.
All considered, it doesn't seem worth the effort to me. At least at my current css skill level. 🙂
Brad
BPMemberThank you, NutandBolts, for your insights.
Brad
November 26, 2013 at 10:56 am in reply to: What is automatically shortening permalink titles? #75712BPMemberThis post by Yoast explains, if anyone is interested. Don't get confused by how it is worded. I had to read it couple of times to get what he intended. Just search "stop words."
http://yoast.com/articles/wordpress-seo/
Brad
-
AuthorPosts