NighthawkCH
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP Opulus] Front page banner not functioningAs I described in the thread Front page image missing latest update.
Without rolling back to a earlier version, for me was the solution to edit the header.php.
I changed line 30 fromget_template_part('parts/banner');toget_template_part('parts/header', 'banner');Forum: Themes and Templates
In reply to: [WP Opulus] Front page – Fatal Error messageI had the same error. It was a problem with WP Opulus and the plugin NextGen Gallery. When I deactivated the plugin all works fine. But deactivating the plugin can’t be the solution.
After a few tests I figured out that the problem are this lines in the featured.php:
$original_query = $wp_query; $wp_query = null; $wp_query = new WP_Query(array('page_id' => $left_featured, 'posts_per_page' => 1));This codeblock is 3 times in the file for left, center and right post.
I found 2 solutions but I don’t know why it works (I’m new in WP), I only know “It works for me for the moment”.
Solution 1: Comment out
$wp_query = null;
Solution 2: Change$wp_query = new WP_Query(arr... ' => 1));to$wp_query = new WP_Query()and after this line add$wp_query->query('page_id='.$left_featured.'&posts_per_page=1');. Don’t forget to change the variable (left, center, right).I hope it will help.
Forum: Themes and Templates
In reply to: [WP Opulus] Leave a post formatting1. The help text is in the comments.php in line 72. It looks like
'comment_notes_after' => '<p class="form_allowed_tags">' ... '</p>',. To remove the text you must change the line to'comment_notes_after' => '',.2. I think this wouldn’t be show because you’re logged in.
3. I have found a option in the nimbus Panel under Typography, but only for Members.
In the free version the button style (for the entire theme) is in the style.css in line 156 (class.editable button, .editable input[type=submit]).
If you would only change the button of the comment form, the button has a own id in line 324 (id#submit).Forum: Themes and Templates
In reply to: [WP Opulus] Front page image missing latest updateWithout rolling back to a earlier version, for me was the solution to edit the header.php.
I changed line 30 fromget_template_part('parts/banner');toget_template_part('parts/header', 'banner');