Forum Replies Created

Viewing 15 replies - 46 through 60 (of 215 total)
  • Theme Author Tim Nicholson

    (@timnicholson)

    I designed the theme to pull the title from the featured image. That’s definitely how I want it to work for pages. That way, instead of a page title you can put whatever you want. For consistency, posts with featured images work the same way. Would it be possible for you to just set the text on the featured image to what you want the page title to be?

    Theme Author Tim Nicholson

    (@timnicholson)

    Sorry for taking so long to reply. I’ve been absolutely slammed at work. If you still want me to push the current v1.6 to github, I’ll try to do it this weekend. Otherwise, you likely can safely download my custom Bootstrap config and override the one in v1.5. Just use the config.json file in the /bootstrap directory so that you have my custom colors, font sizes, etc.

    Theme Author Tim Nicholson

    (@timnicholson)

    Hmm. Adding anything to the page bottom widget area should remove the sample widget. If you want to go nuclear on it, you could edit sidebar-pagebottom.php. Or even easier, you can set this line in functions.php:
    'sample_widgets' => true,

    to this:
    'sample_widgets' => false,

    Theme Author Tim Nicholson

    (@timnicholson)

    It looks like you’ve changed your site since this post. Sorry for taking too long to reply. The breakpoints are set by Bootstrap and its generally easiest to alter the menu items or the spacing between menu items to get them to fit. Or for my website, I changed the size of the site title so it all works better on a tablet. Or you could change the font size of the menu items.

    I’ve not dug into how to alter Bootstrap’s breakpoints for the nav menu. That code is really, really complex and I’m using Bootstrap for compatibility with multiple browsers, so I don’t really want to alter it.

    Theme Author Tim Nicholson

    (@timnicholson)

    If you are OK with a “sticky” nav bar that remains at the top of the screen, you can use my Pratt theme instead. Its almost identical to Flat Bootstrap, but it places the site name in the left of the top nav bar.

    Theme Author Tim Nicholson

    (@timnicholson)

    Hi, the theme isn’t designed to allow for more than one post on a page. However, you can create a page that lists all of its subpages. Use the template “Page with Subpages”. For posts, I’m sure there is a plugin out there that will let you display multiple posts on a page.

    The theme also isn’t designed to display full posts. With so much mobile traffic these days the pages would be really, really long. However, I understand that for actual blogs as opposed to CMS sites, this would be desirable. I’ve toyed with the idea of making a theme option for that, but so far I’ve tried to stick with only the standard WordPress theme options (custom headers, etc.). You may be able to find a plugin to do it, though.

    Or you could edit the content.php file and change it there. Search for the section that handles the_excerpt and the_content.

    Theme Author Tim Nicholson

    (@timnicholson)

    Unfortunately, that is the way Bootstrap works and they aren’t going to change it. They say that with so much mobile traffic, they want users to have to click on the parent to open the menu. I have toyed with the idea of allowing for a way to use standard WordPress menus instead of Bootstrap’s menus, but my themes were all designed to be Bootstrap themes so most users are expecting them to work the way that they work now.

    What I do is make the first sub-item be a link to all items. E.g.

    WordPress
    All WordPress Themes
    Flat Bootstrap
    Pratt
    Spot
    Etc.

    Theme Author Tim Nicholson

    (@timnicholson)

    Take a look at the /flat-bootstrap-child/functions.php file. That child theme (that comes with Flat Bootstrap) has an example of how to do that. Your best bet is to copy that child theme up to the parent directory and active that child theme on your site. Then you can freely edit the copyright text there and it will remain changed even when I release the next version of Flat Bootstrap.

    Theme Author Tim Nicholson

    (@timnicholson)

    Sorry this took so long, but I’ve found the problem and believe I have it fixed. I’ll include it in the next version of Flat Bootstrap (v1.6). That will fix it there and also Spot and all my other child themes. Thanks for finding this bug!

    If you want to fix it yourself now, go into /flat-bootstrap/content-header.php and find this code:

    /*
    	 * IF TITLE THEN GET SUBTITLE, FIRST FROM THE TERM DESCRIPTION, THEN FROM OUR CUSTOM
    	 * PAGE TITLE
    	 */
    	if ( $title AND ! $subtitle ) {
    		$subtitle = term_description();
    		if ( ! $subtitle ) $subtitle = get_post_meta( get_the_ID(), '_subtitle', $single = true );
    	}

    and change it to this:

    /*
    	 * IF TITLE THEN GET SUBTITLE, FIRST FROM THE TERM DESCRIPTION, THEN FROM OUR CUSTOM
    	 * PAGE TITLE
    	 */
    	if ( $title AND ! $subtitle ) {
    		$subtitle = term_description();
    		if ( ! $subtitle AND !is_archive() ) $subtitle = get_post_meta( get_the_ID(), '_subtitle', $single = true );
    	}

    Notice the addition of the AND !is_archive() that I added.

    Theme Author Tim Nicholson

    (@timnicholson)

    The issue is that the Spot theme has a top-nav that is stuck to the top of the browser window. It is possible to place something above it, but it would require quite a bit of CSS. If you turn on the WordPress Admin bar, you can them look at the CSS to see how that works. It does what you are asking for in that it inserts itself above anything else generated by the theme.

    Theme Author Tim Nicholson

    (@timnicholson)

    Thanks for the kind words! What you need to do after each new “section” div is put the content in a container. So it should look like this:

    <div class="section color-white bg-darkmidnightblue">
    <div class="container">
    Your stuff here
    </div>
    </div>

    Theme Author Tim Nicholson

    (@timnicholson)

    I think the main issue is probably that the text being displayed is higher than 250px. You can force the image’s container to be 250px, but your text will get chopped off.
    .content-header-image { max-height: 250px; overflow: hidden; }

    Theme Author Tim Nicholson

    (@timnicholson)

    Try creating a custom menu in Appearance->Menus and assign it to the “Header Menu” location. Although the theme is supposed to display your pages if one is not set up. But try that anyway as it should fix your issue.

    Theme Author Tim Nicholson

    (@timnicholson)

    I’m hoping to add that feature at some point now that Jetpack has the ability to upload a site logo. It won’t be in the next version, though, which is already almost complete. I have responded to some posts in these forums and on my website about adding one manually.

    Probably the easiest way is to just go into the header.php file and change it from outputting the site name to inserting your logo image. Or you can use CSS to hide the text and add the logo to it instead. The CSS method is on our How to Use our WordPress Themes page.

    I’ll make this topic as resolved, but let me know if you need a little more guidance.

    Theme Author Tim Nicholson

    (@timnicholson)

    I updated the Bootstrap version in Flat Bootstrap v1.6. However, I ended up adding so much to v1.6 that it needs more testing so hasn’t been released yet. Specifically it has Bootstrap v3.3.2 in it.

    If you want to help test Flat Bootstrap v1.6, let me know. I could push the latest build of it to my github account for how to download from there. Its pretty stable. I’ve been running it on my production website for a while now.

    Also, as a side note, if you are a Bootstrap guru… you could take my specific Bootstrap config file and use that to download the latest version of Bootstrap. Of course it wouldn’t be tested with the theme, but in general they are mostly fixing bugs within the 3.x builds. Be sure not to just grab the “stock” Bootstrap, though, because I’ve made a LOT of changes to it so that I don’t have to have even more CSS overrides within the theme.

Viewing 15 replies - 46 through 60 (of 215 total)