Forum Replies Created
-
AuthorPosts
-
webcami
ParticipantOne final note: I then adjusted all references to the search-bar in the style.css file so it adjusted properly on mobile.
Media Queries
.home .search-bar {
padding-top: 30px;
}February 27, 2014 at 8:45 am in reply to: Winning Agent Pro Search Bar to show only on homepage? #92672webcami
ParticipantI just did this!
// Add search widget below header.
add_action( 'genesis_after_header', 'wap_search_bar' );
function wap_search_bar() {
genesis_widget_area( 'search-bar', array(
'before'=> '<div class="search-bar"><div class="wrap">',
'after' => '</div></div>',
) );
}Remove this code from the functions.php and place it in the front-page.php. I didn't just do this alone, though. See the other changes I made here:
webcami
ParticipantHere's what I did. I added to front-page.php:
// Add nav below header
remove_action( 'genesis_before_header', 'genesis_do_nav' );
add_action( 'genesis_after_header', 'genesis_do_nav' );Then I move my photo to the SEARCH WIDGET and removed the WELCOME WIDGET CODE from front-page.php:
// Add welcome widget below header
add_action( 'genesis_after_header', 'wap_welcome_bar', 5 );
function wap_welcome_bar() {genesis_widget_area( 'home-welcome', array(
'before'=> '<div class="home-welcome"><div class="wrap">',
'after' => '</div></div>',
) );}
Finally, I moved the following code out of functions.php and into front-page.php to only have the search widget area on the homepage:
// Add search widget below header.
add_action( 'genesis_after_header', 'wap_search_bar' );
function wap_search_bar() {
genesis_widget_area( 'search-bar', array(
'before'=> '<div class="search-bar"><div class="wrap">',
'after' => '</div></div>',
) );
}So, for anyone needed help, this removed the welcome widget area, move the nav below the header and placed the search widget area on the homepage only! And all before 7am! 🙂 Brad, thanks again for your help! You got me going in the right direction!
February 27, 2014 at 8:22 am in reply to: StudioPress PROSE replaced with PROSE by CS THEMES? #92661webcami
ParticipantSummer, thanks for posting. I didn't get a chance to respond yesterday.
http://profiles.wordpress.org/webcami/webcami
ParticipantThank you. When I add the code above, the navigation appears ABOVE the header.
IF I REVERSE THE ACTION, IT APPEARS BELOW THE WELCOME WIDGET AREA- as it did initially:
// Add nav below header
remove_action( 'genesis_before_header', 'genesis_do_nav' );
add_action( 'genesis_after_header', 'genesis_do_nav' );THIS BIT OF CODE IS IN THE front-page.php file - COULD IT BE SOMETHING to adjust there? Thanks again!
// Add welcome widget below header
add_action( 'genesis_after_header', 'wap_welcome_bar', 5 );
function wap_welcome_bar() {genesis_widget_area( 'home-welcome', array(
'before'=> '<div class="home-welcome"><div class="wrap">',
'after' => '</div></div>',
) );}
webcami
ParticipantI do think this occurs in CHROME without ANY content - just the theme installed. Would love to know a fix soon. I have sites to design with your great theme! 🙂
webcami
ParticipantOkay, more trouble shooting done.
I installed the theme on a fresh location, WordPress 3.81 - Genesis 2.02 and NewsPro.
http://westseattlewordpress.com/sammamishmont/
Sidebar lines up correctly in IE, Safari, and Firefox.
Sidebar is below content area in CHROME.
Does anyone have any idea how to correct this since most people use CHROME these days?
webcami
ParticipantThis just started happening to me on several sites with NEWSPRO. Was this resolved?
February 26, 2014 at 11:45 am in reply to: StudioPress PROSE replaced with PROSE by CS THEMES? #92492webcami
ParticipantI've posted to WP.org - others have as well. Hopefully, they will get it straightened out. I'm nervous for all the clients I have using that theme!
webcami
ParticipantTHANK YOU SO MUCH. Worked like a charm!
http://www.funding-quest.com/February 21, 2014 at 10:37 am in reply to: Education theme homepage blog – would like ONLY one CATEGORY, one post to show #91675webcami
ParticipantGreat. Thanks for sharing it!
February 20, 2014 at 9:14 pm in reply to: Education theme homepage blog – would like ONLY one CATEGORY, one post to show #91539webcami
ParticipantI'm sorry I didn't see this sooner. What if you make ONE category to use for all three, such as 'mainposts' and set the code up exactly as is for that one category. I'm sure it's the three mentions of categories that are causing it not to work. It could be a work around for you.
February 20, 2014 at 4:54 pm in reply to: StudioPress PROSE replaced with PROSE by CS THEMES? #91507webcami
ParticipantI found this on WordPress.org
http://wordpress.org/support/view/theme-reviews/proseAnd here is their WHOIS:
http://www.whois.com/whois/csthemes.comFebruary 20, 2014 at 3:15 pm in reply to: StudioPress PROSE replaced with PROSE by CS THEMES? #91489webcami
ParticipantI've already installed Lifestyle on the client site but I'll create a screenshot of the theme page...
http://alkiartfair.org/wp-content/uploads/2014/02/Capturethemechange.jpgThere's what PROSE looks like in my dashboard. This is what it links to: http://csthemes.com/theme/prose
And it rendered my site unusable and rewrote over all my PROSE theme files from your theme.
webcami
ParticipantHey, thanks! That did the trick (although I adjusted it to 95%)
I REALLY appreciate the response! 🙂
webcami
ParticipantThanks. That doesn't seem to have worked:
http://westseattlewordpress.com/sonja/wp-content/themes/quattro/style.css?ver=2.0.2
Any other ideas?
webcami
ParticipantIS anyone out there? Still looking for help and wondering if anyone has any idea how to fix this. Sure miss the old forum format. I feel like this one just doesn't work as well for a community support/collaboration/outreach.
webcami
ParticipantI have a client that has PROSE on Bluhost and when she updated to 3.8, it overwrote PROSE with a different one. Is the a bluhost only problem? I had the company revert the theme files back to the ORIGINAL prose, but the theme won't work on 3.8. Any updates about this?
webcami
ParticipantThis happened to me as well. It's a NIGHTMARE!
webcami
ParticipantThanks.
-
AuthorPosts