I had the same problem. If you’re able to get into your hosted files, removing the unexpected bracket from the listed file DOES fix the issue. I brought my website back up immediately with the change.
Hope the theme developers send an update out that fixes this!
This is the code:
/* If the current page is a paged page. */
if ( ( ( $page = get_query_var( 'paged' ) ) || ( $page = get_query_var( 'page' ) ) ) && $page > 1 ) {
$paged = number_format_i18n( absint( $page ) );
> $loop_title_suffix = ' <span class="loop-title-suffix">' . sprintf( __( '(Page %s)', 'responsive-brix' ), $paged ) . '</span>';
$loop_title_suffix = apply_filters( 'hoot_loop_title_suffix', $loop_title_suffix, $paged );
}
Which bracket needs to be removed?
Thank you, jim
Same thing here. White Death Screen.
Removed responsive brix from web server and everything was fine. Reloaded brix and white screen again. needs software fix, of course. I hope they do it soon also.
Nevermind. I found it.
Thanks.
Of course, after removing it from the server, I no longer have the website look I like, or even a website – without changing the theme. Will removing the bracket leave me with the brix theme as it was before the update?
Yes, if you remove the bracket from the start of line 248 in /wp-content/themes/responsive-brix/hoot/includes/template-general.php then responsive brix comes back with all of your settings and whatever updates they made…
This is the code line. Remove the bracket in front of $loop_title_suffix
> $loop_title_suffix = ' <span class="loop-title-suffix">' . sprintf( __( '(Page %s)', 'responsive-brix' ), $paged ) . '</span>';
-
This reply was modified 8 years, 11 months ago by
siriomi. Reason: Added offensive line of code