Forum Replies Created
-
AuthorPosts
-
manavecplanMember
*Scratches head...*
Here's the thing: both sites use the EXACT same files. I've literally replicated the files across. And tested it with a third site as well.
Both the test sites are picking up the Open Sans just fine...it's just my site that's borked.
That said, while I agree with you in entirety I'm a little freaked out that I can't see the Open Sans definition on either of the test sites via the Inspector. It's still picking up from somewhere...
manavecplanMemberThanks Victor!
That worked perfectly! Much appreciated... 🙂
manavecplanMemberSo, I've maanaged to get the spacing issue sorted out.
Can I get a second pair of eyes for the font?
It should pick be picking up Open Sans from Google which I've enqueued as under:
//load google font add_action('wp_enqueue_scripts','genesis_sample_enqueue_google_fonts'); function genesis_sample_enqueue_google_fonts() { wp_enqueue_script( 'open-sans', '//fonts.googleapis.com/css?family=Open+Sans:400,300,400italic,600,600italic,700,700italic' ); }
manavecplanMemberTom, Victor,
You're both right, sorry about the snafu.
Despite purging my cache multiple times(and checking the network tab), Chrome is refusing to show me an updated page.
Works just fine on Firefox...
Thanks again for the extra set of eyes guys...
manavecplanMemberHey Christoph,
You're right!
Function 1 works just fine. I hadn't refreshed the page... #facepalm
Function 2 isn't working though even with the code that you helped with. Ideally, I'd want the date showing up in the yellow highlighted spot... 🙁
manavecplanMemberAnyone have any kind of luck with this?
manavecplanMemberDoes this work for you? Presuming that you wanted to target both pages and posts...
function featured_post_image() { if ( !is_singular( array( 'post', 'page' ) )) return; the_post_thumbnail('post-image'); //you can use medium, large or a custom size } add_action( 'genesis_before_entry', 'featured_post_image', 1 );
manavecplanMemberFair point, will mark this as closed.
manavecplanMemberFeel very, very stupid. Ugh.
Was the curly quotes issue. Didn't even notice it in Atom...
Thanks muches Victor!
And yeah, Coral, I don't think that would hurt at all...
manavecplanMemberAnyone wanna chime in?
Also, what about creating a page called "blog" and using that to host the main page of the blog from?
manavecplanMemberIt is ALIVE!!! Chegg it: http://traffictrain.in/test-website-loading-speed/
Thanks so much Julia... 🙂
Looks FANTASTIC imo...all thanks to you! Thanks for putting up with my stupid....
manavecplanMemberDid that too...still no go. 🙁
Check out the latest on: http://traffictrain.in/benefits-of-email-marketing/
manavecplanMemberAlmost there...I'm pretty sure I made a mistake while explaining it though. 🙁
While it now spans the width of the text column, I actually need it to span the width of the content column(whitespace+text+whitespace) in entirety.
manavecplanMemberHey Tonya,
Tried the specific tags thing, no go. To be specific, I've tried the p tag and that's not worked.
Can you help? 🙁
manavecplanMemberQuestion: Why would I be enqueueing these fonts?
I have them stored in the fonts folder and I'm loading them from there by declaring the location via CSS.
That seems to work just fine for the Post titles which is displayed in "montserratbold" just not the post sub-headers and the post text. 🙁
P.S. I love the shortlink thing at the end of your post here. Nice animation touch!
manavecplanMemberHey Angie,
Was a caching issue!
Thanks for checking though... 🙂
manavecplanMemberHey Tony,
Thanks for looking at this! Much appreciated...like you said, it's almost sorted out now.
If you could show me how do do that email thing, that would be a neat trick!
manavecplanMemberAnd done... 🙂
Nothing like a little LMGTFY!
manavecplanMemberFigured out how to limit it to single posts:
//* Customize the entry meta in the entry header (requires HTML5 theme support) add_filter( 'genesis_post_info', 'sp_post_info_filter' ); function sp_post_info_filter($post_info) { if (is_single() ){ $post_info = '[post_date] / [post_author_posts_link] / [post_edit]'; return $post_info; } }
Still have the icons and output to deal with....
manavecplanMemberHey Len,
Thanks for chiming in...
Guess I'm gonna leave it at changing the separators though I will say that it's mighty strange that the home argument accepts dashicons/icon fonts but not an image!
Thanks again Len, Paul!
-
AuthorPosts