Wish Web Geek
Forum Replies Created
-
Forum: Plugins
In reply to: Relative URL for HTTPSI’m not sure what that means can you explain further?
Forum: Plugins
In reply to: Relative URL for HTTPSHere’s the example:
Forum: Fixing WordPress
In reply to: Changing the link structure for my wordpress siteI had to turn the blog off, since it is not supposed to be live yet and I don’t want it to get crawled.
Forum: Fixing WordPress
In reply to: sidebar.php if, else if, else phpThanks!
Forum: Fixing WordPress
In reply to: sidebar.php if, else if, else phpI’m sorry I am not adept with php. Can you tell me what/where I do with this: “!function_exists(‘dynamic_sidebar’) ||”
Forum: Fixing WordPress
In reply to: Blog Stopped workingThis was an issue in the functions page. I looked it up online but came with the 3.5 or 3.5.1 wordpress upgrade.
Forum: Fixing WordPress
In reply to: sidebar.php if, else if, else phpThanks. I figured it out, but would like to use the syntax as you do.
So do I need to proceed it with:
<?php
What dotnordic showed in your post
and end with
: ?>Here’s How I fixed it. I was missing the end if statements
<div id="sidebar1" class="fluid-sidebar sidebar span4" role="complementary"> <?php if ( is_page('Blog') ) : ?> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar1') ) : ?><?php endif ; ?> <?php elseif (is_page()) : ?> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('othersidebar') ) : ?> <?php endif ; ?> <?php else : ?> <!-- This content shows up if there are no widgets defined in the backend. --> <div class="alert alert-message"> <p><?php _e("Please activate some Widgets","bonestheme"); ?>.</p> </div> <?php endif; ?> </div>
The problem I am still having is that the sidebar is getting the fluid sidebar css that is making it 30% width, but them it is doing it again for the widgets.
resolved
I have tried to copy the functions.php file to my child theme, change the references like library/plugins.php to wp-content/themes/wordpress-bootstrap/library/bones.php…for example.
and I am getting this error:
Fatal error: Cannot redeclare bones_custom_admin_footer() (previously declared in /home/blog8992/public_html/wp-content/themes/wpbootstrap-child/functions.php:27) in /home/blog8992/public_html/wp-content/themes/wordpress-bootstrap/functions.php on line 28Is there a way to move the functions.php file so I can add widgets?
That’s fine. I don’t expect you to do that. Thanks.
Can you answer my question about being able to click on the top level drop down?
Thanks for your help.
Also, I would like the pages that lead to drop down menus to be clickable. On https://blog.rvinsurancepro.com, if I click on “Service Center” in top main menu, I want the content for Service Center to show up AND the drop down menu to show up. I’ve looked around and can’t seem to find how to do this.
Thank you!
Here is my css heirarchy. So the css I create should over-ride what you’ve created for the site. But it seems like your site loads first and then it loads my css. And then not all my css when I’m on IE or Chrome. Any ideas?
<link rel=’stylesheet’ id=’bootstrap-css’ href=’https://blog.rvinsurancepro.com/wp-content/themes/wordpress-bootstrap/library/css/bootstrap.css?ver=1.0′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’bootstrap-responsive-css’ href=’https://blog.rvinsurancepro.com/wp-content/themes/wordpress-bootstrap/library/css/responsive.css?ver=1.0′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’wp-bootstrap-css’ href=’https://blog.rvinsurancepro.com/wp-content/themes/wordpress-bootstrap/style.css?ver=1.0′ type=’text/css’ media=’all’ /><style type=”text/css”>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<style type=”text/css” id=”custom-background-css”>
body.custom-background { background-color: #b1c2d0; background-image: url(‘https://blog.rvinsurancepro.com/wp-content/uploads/2013/01/bgslice.gif’); background-repeat: repeat-x; background-position: top center; background-attachment: scroll; }
</style>
<!– end of wordpress head –>
<link rel=”stylesheet” href=”https://blog.rvinsurancepro.com/wp-content/themes/wpbootstrap-child/style.css” type=”text/css” media=”screen” title=”no title” charset=”utf-8″><!– theme options from options panel –>
<style>
#main article {
border-bottom: none;
}
</style>I’ll try to figure it out and if I can’t I’ll try that. thank you.
I would like to add a carosel that does not get the images from the blog. I’ve done this on the home page:
<!– Carousel items –>
<div class=”carousel-inner”>
<div class=”active item”>
<img src=”https://blog.rvinsurancepro.com/wp-content/uploads/2013/01/Fotolia_7008950_M2.jpg” alt=”RV Insurance Image” title=”RV Insurance Image” width=”970″ height=”389″ align=”middle”/>
</div>
<div class=”item”><img src=”https://blog.rvinsurancepro.com/wp-content/uploads/2013/01/Fotolia_4132850_S1.jpg” alt=”Travel Trailer Insurance Image” title=”Travel Trailer Insurance Image” width=”970″ height=”389″ align=”middle”/></div>
</div>
</div>
<?php $post = $tmp_post; ?>
<div class=”carousel-caption”>
<div class=”active item”>
<h4>Get your RV Insurance Today</h4>
<p>There are many reasons for RV Insurance but one is — your RV is not a vehicle or a house, but needs covered by aspects of each.</p>
</div>
<div class=”item”>
<h4>Get your RV Insurance Today</h4>
<p>There are many reasons for RV Insurance but one is — your RV is not a vehicle or a house, but needs covered by aspects of each.</p>
</div>on https://blog.insurancepro.com home page, but it’s not quite working correctly with the carousel. Do you have any advice? Thank you.
Yes I’m using firebug. I’ve gotten it to change for Firfox but not for Chrome or IE.
I would like to change the background color of the entire top bar that holds the navigation. I have tried changing: #inner-header, .navbar, .navbar-fixed-top, .navbar-inner … I can’t seem to get the entire bar to change colors. Any ideas? Thank you.