New answers tagged genesis-theme-framework
1
Use the 'genesis_search_title_text' filter:
add_filter( 'genesis_search_title_text', 'wpse_101947_search_title_text' );
function wpse_101947_search_title_text() {
return 'Translated text';
}
Replace Translated text with your translated text.
0
Genesis does not provide a method to replace the normal loop structure. You're stuck with the old standard in genesis_standard_loop():
if ( have_posts() ) : while ( have_posts() ) : the_post();
or new query in genesis_custom_loop() (with call back to genesis_standard_loop()):
$wp_query = new WP_Query( $args );
/** Only set $more to 0 if we're on an ...
0
Eleven40 does not contain these styles in the style sheet. Paste all the styles listed on the tutorial page just above this line (in the child theme style.css file):
/* Inner
------------------------------------------------------------ */
Follow the other steps specified in the tutorial and you are set.
Top 50 recent answers are included