Forum Replies Created
-
AuthorPosts
-
manavecplan
Member*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...
manavecplan
MemberThanks Victor!
That worked perfectly! Much appreciated... 🙂
manavecplan
MemberSo, 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' ); }
manavecplan
MemberTom, 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...
manavecplan
MemberHey 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... 🙁
manavecplan
MemberAnyone have any kind of luck with this?
manavecplan
MemberDoes 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 );
manavecplan
MemberFair point, will mark this as closed.
manavecplan
MemberFeel 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...
manavecplan
MemberAnyone wanna chime in?
Also, what about creating a page called "blog" and using that to host the main page of the blog from?
manavecplan
MemberIt 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....
manavecplan
MemberDid that too...still no go. 🙁
Check out the latest on: http://traffictrain.in/benefits-of-email-marketing/
manavecplan
MemberAlmost 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.
manavecplan
MemberHey 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? 🙁
manavecplan
MemberQuestion: 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!
manavecplan
MemberHey Angie,
Was a caching issue!
Thanks for checking though... 🙂
manavecplan
MemberHey 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!
manavecplan
MemberAnd done... 🙂
Nothing like a little LMGTFY!
manavecplan
MemberFigured 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....
manavecplan
MemberHey 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