Forum Replies Created
-
AuthorPosts
-
jjc710
MemberThank you much!
jjc710
MemberHow does one do this exactly?
jjc710
MemberLet me be a bit more clearer sorry. I did not set up a child theme without a functions.php having content. I am using the Dynamik website builder which itself is a child theme, and contains the core functions etc in a seperately functions file, however the only thing in my custom-functions.php file are those above.
jjc710
MemberIt's simply a widget with a conditional statement.
Condtion:
is_category(1057) || is_tag('the-vampire-diaries')Hook:
<?php /** Remove the standard loop */ remove_action( 'genesis_loop', 'genesis_do_loop' ); /** Add the widget area */ add_action( 'genesis_loop', 'tvd_catsingletag_widget' ); function tvd_catsingletag_widget() { ?>[tvdcatsingletag]<?php; } ?>Then simply plop the GFWA widget, into that widget area. '
I've emailed Nick, no reply. As I said, this is kinda something I need to figure out ASAP, which is why I've asked, and as I stated above, I've tried all solutions already posted on wp.org, with no luck, and was directed to ask here by others.
jjc710
MemberIts a widget area. The page is constructed using hooks, and conditional tags.
-
AuthorPosts