Forum Replies Created
-
AuthorPosts
-
MarcoMember
What if you just use the youtube embed code like:
http://youtu.be/z3Ht0rU4NSg
instead of the full embed code?
MarcoMemberThis reply has been marked as private.January 29, 2013 at 2:24 pm in reply to: Balance Theme: display featured left & right widgets sitewide #16092MarcoMemberLooks like you're already using balance_include_text
add_action('genesis_after_post_content', 'balance_include_text', 1);
you cannot use the same name for the action if they do different things:
add_action('genesis_after_header', 'balance_include_text', 1);
Change one balance_include_text to something else.
January 29, 2013 at 9:14 am in reply to: Balance Theme: display featured left & right widgets sitewide #15969MarcoMemberI have just copied/pasted the code on http://pastie.org/5850228 at the very end of my functions.php file and it looks good.
Maybe there's something wrong somewhere else on the functions.php or on the front-page.php.
Could you paste the content of those files?
MarcoMemberDear Asoltys: http://sitecheck.sucuri.net/results/neatandplain.com/
Please be more specific when you write answer like the one above.
Cheers
Marco
MarcoMemberAs per http://blog.jqueryui.com/2011/03/tabs-api-redesign/ the
rotate
method has been removed so there's no easy way to accomplish this now.Here something you could look at: https://github.com/cmcculloh/jQuery-UI-Tabs-Rotate.
MarcoMemberHello, thanks.
@budskab – no cache plugin at the moment. Just some .htaccess tricks. ( thought it's on my VPS ).
MarcoMemberGreat tip! If I may add a slight modification (we all want a faster page loading, don't we? )
// Loading Isotope only on the Page Template
function my_isotope()
{
if (is_page_template( 'my_page_template.php' ) && !is_admin() ) {
wp_enqueue_script( 'isotope', CHILD_URL . '/lib/jquery.isotope.min.js', true ); // Enqueue it!
wp_enqueue_script( 'parameters', CHILD_URL . '/lib/isotope-parameters.js', true ); // Enqueue it!
}
}
add_action('wp_head', 'my_isotope');
-
AuthorPosts