Giter Site home page Giter Site logo

rundiz-wp / bootstrap-basic Goto Github PK

View Code? Open in Web Editor NEW
22.0 7.0 4.0 5.8 MB

Bootstrap 3 css framework theme for wordpress. For theme developer can start build their theme very fast. To download for use with your project, please go to wordpress.org themes page in the link.

Home Page: https://wordpress.org/themes/bootstrap-basic

License: MIT License

PHP 92.21% CSS 7.67% JavaScript 0.12%
bootstrap3 wordpress-theme wordpress-starter-theme

bootstrap-basic's Introduction

=== Bootstrap Basic ===
Contributors: okvee, christianoliff
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-menu, featured-images, post-formats, threaded-comments, translation-ready
Tested up to: 6.5
Requires at least: 4.0
Requires PHP: 5.4
Stable Tag: 1.2.5
License: MIT
License URI: https://opensource.org/licenses/MIT

Bootstrap Basic WordPress theme, Copyright (C) Rundiz.com
Bootstrap Basic WordPress theme is licensed under the MIT.

Bootstrap Basic Uses Bootstrap https://getbootstrap.com/ licensed under Apache 2.0.
Bootstrap Basic Uses Font Awesome https://fontawesome.com/ licensed under MIT.
Bootstrap Basic Uses Font Awesome (font files) https://fontawesome.com/ licensed under SIL OFL 1.1.
Bootstrap Basic Uses html5shiv https://github.com/afarkas/html5shiv licensed under MIT.
Bootstrap Basic Uses Modernizr https://modernizr.com licensed under MIT.
Bootstrap Basic Uses Respond https://github.com/scottjehl/Respond licensed under MIT.

Bootstrap Basic is based on the _s (Underscores) starter theme by Automattic Inc., licensed under GPL.

== Description ==

Bootstrap v.3 basic theme for developers to build their new theme very fast and easy. 
To follow what was changed, please look for commits ( https://github.com/Rundiz-WP/bootstrap-basic ) of this theme at Github or changelog.md file that come with the theme.

== More feature ==

WordPress Menu
To display menu correctly, please create at least 1 menu and set as primary and save.

Bootstrap features
This theme can use all Bootstrap 3 classes, elements and styles.

Responsive image
For responsive image please add img-responsive class to img element.

Responsive video
Cloak video element (video element or embeded video) with <div class="flexvideo">...</div>.

bootstrap-basic's People

Contributors

coliff avatar mik-laj avatar ve3 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

bootstrap-basic's Issues

limit 1170px change

How can i make it wider than 1170px?

more and more people look on higher resolute

Edit post link

Hi my friends.

Please look at:
https://github.com/OkveeNet/bootstrap-basic/blob/master/inc/template-tags.php#L148

Please consider use a filter for change class instead create use "after" and "before" parameter, because you create ugly schemantic code.

Your code:

<span class="edit-post-link btn btn-default btn-xs" title="Edytuj">
    <a class="post-edit-link" href="http://watchdogforum.org/wp-admin/post.php?post=275&amp;action=edit">
        <b class="edit-post-icon glyphicon glyphicon-pencil" title="Edytuj"></b>
    </a>
</span>

Sugestion:

<a class="btn btn-default btn-xs post-edit-link" href="http://watchdogforum.org/wp-admin/post.php?post=258&amp;action=edit">
    <i class="glyphicon glyphicon-pencil"></i> Edytuj
</a>

My code of filter:

....
    function bootstrapBasicEditPostLink()
    {
        return edit_post_link();
    }// bootstrapBasicEditPostLink
....
add_filter('edit_post_link', function($link, $id, $text){
    $link = str_replace('class="post-edit-link"', 'class="btn btn-default btn-xs post-edit-link"', $link);
    // When text is default, append icon.
    if($text == __( 'Edit This' )){
        $link = str_replace($text, '<i class="glyphicon glyphicon-pencil"></i> '.$text, $link);
    }else if($text == null){
        $text = __( 'Edit This' );
        $link = str_replace(__( 'Edit This' ), '<i class="glyphicon glyphicon-pencil"></i> '.__( 'Edit This' ), $link);
    }
    return $link;
});

I create a issue instead send pull request, because you have to think about it.

Hi and thanks to Vee

Please tell me if there will be a long support and update of bootstrap-basic? Your theme is good and meets all the requirements, sure not only for me but also for many people. Thanks.

Support for Localisation

Some strings in the theme are hard-coded in English,for example on the search.php page 'Search Results for: ' always displays in English even if WordPress is set to French for example.

It would be good to support localisation, though I don't know the exact steps to do that but If you could enable that I can help with providing translated strings for it (if needed). (I found the strings for this page at: https://translate.wordpress.org/projects/wp/dev/fr/default?filters%5Bterm%5D=Search+results+for+&filters%5Buser_login%5D=&filters%5Bstatus%5D=current_or_waiting_or_fuzzy_or_untranslated&filter=Filter&sort%5Bby%5D=priority&sort%5Bhow%5D=desc by the way).

Pagination for WP Query / multiple categories

I've created a custom query to grab posts from multiple categories, but pagination doesn't work when I do so.

Pagination works on other pages I've created that do not use multiple categories, but it fails with WP Query.

Any fixes / ideas?

$args = array(
'category_name' => 'raid,raid-homework,player-performance'
);
$q = new WP_Query($args);
if ( $q->have_posts() ) {
while ( $q->have_posts() ) {
$q->the_post();
get_template_part('content-raid', get_post_format());
// your loop
}
bootstrapBasicPagination();
}
?>

To be clear, the page shows the proper number of posts, just no pagination for it.

Display Excerpt code

I am looking at the code in content.php I want the posts to appear as excerpts with a link. It does it with search but not otherwise.

Please can you explain how to make this without having to search. I don't want to use the read more tag in the editor (Shift+Alt+T).

Thank you.

Changing Template Name

Hey,

i encoutered the problem that whenever i change the templates folder name, the navigation bar doesnt show properly. The links on the navigation bar dont show at all. I tried to fix it, but i could.
The rest of works pretty neat.

Remove Borders

There's a white border around my sidebar widgets, pages, and content that I need to get rid of. When customizing this theme, how do you remove or change the ugly white reference borders around these items?

I have tried looking up the classes and IDs used for the elements and setting them to border: 0px in the custom css field but it does not seem to work. I feel like I am missing something obvious.

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.