I like this clean theme but would prefere Title tagline and menus centered,
Could you please help me with css?
Hi,
I want to adapt the existing WordPress post formats for my theme (standard, aside, link, etc.). I have already adapted the standard and aside types successfully (some time ago).
However, when I try to adapt a new format (e.g. link), the changes I make in content-link.php are not visible in the post. Even though I selected “Link” as the post format in the admin dashboard, it is displaying the post as a standard post. I know that because when I make changes in content-single.php (for the standard posts), it is visible in the post that is supposed to have a link format.
What could be wrong here?
My functions.php
add_theme_support( 'post-formats', array( 'aside', 'link', 'quote', 'standard' ) );
add_action( 'after_setup_theme', 'childtheme_formats', 11 );
function childtheme_formats(){
add_theme_support( 'post-formats', array( 'aside', 'link', 'quote' ) );
}
The only two formats where my changes in the php files have an effect, are for standard and aside.
// EDIT
I can answer my own question: I forgot to adjust single.php in my childtheme, where I have the following now in order to add the link format (I can edit content-link.php now):
<?php
/**
* The single post.<br>
* This file works as display full post content page and its comments.
*
* @package bootstrap-basic4
*/
if ( get_post_format( get_the_ID() ) == 'aside' ) {
get_template_part( 'content', 'aside');
}
elseif ( get_post_format( get_the_ID() ) == 'link' ) {
get_template_part( 'content', 'link');
}
else {
get_template_part( 'content', 'single');
}
// begins template. -------------------------------------------------------------------------
?>
]]>
Hello,
I use this nice theme on a website.
When you visit the site using a mobile, the menus show first, followed by the right sidebar, followed by the content area.
How can I make the content area show first before the sidebar?
The post page do not show featured image.
How can I make post page to show featured image?
Thanks.
]]>Please ask your question on GitHub. ( https://github.com/Rundiz-WP/bootstrap-basic4/issues ).
]]>Hi
in this site I am building the user want to add sub items to a sum item in the main nav. In the admin panel this is possible, but they do not show up in the frontend.
What can I do?
Regards
Janco
There should be 3 items under ‘Praktische informatie’->’Info over Gouda’->
sorry, it? all in dutch
Hi,
I completed the full translation of the theme into Turkish.
Whom should I talk to get the language pack approved?
Thank you.
]]>hi there:
l noticed that all style files in method public function enqueueScriptsAndStyles in path bootstrap-basic4/inc/classes/BootstrapBasic4.php ,l can’t change the stylesheet order whose style.css after bootstrap.min.css unless l overwrite the function enqueueScriptsAndStyles in BootstrapBasic4.php, could you please tell me how to write the code in child theme’s function.php?
Thanks for this theme!
I have come across a strange bug and would love your help identifying the solution.
The theme is setting iframe width to 1px via inline css.
You can see it in action here:
https://nonprofitwebsiteschool.com/checkout/
I have disabled all other plugins except for the two needed to recreate the issue (WooCommerce and WooCommerce Stripe).
The issue doesn’t appear using a default theme. It only appears when using the Bootstrap Basic4 theme (or a child theme).
Can you help me figure out what the solution is?
]]>Hi there, I’m using your great theme as a parent theme and I’ve created a child theme based on it.
I’ve noticed in the last two updates that I’m getting an error on my pages as the code is looking for main.js in a subfolder (assets/js/) of my child theme when I think it should be looking for the file in the main theme folder.
I think the issue relates to the bootstrapbasic4.php class, line 78. On that line the js is being enqueued using get_stylesheet_directory_uri()
which might be a child theme path. I’m not sure but should it be using get_template_directory_uri()
instead?
Thanks for your support
Andrew
]]>Hi!
First of all, just want to say great theme – I’ve used it on a few projects now and definitely my favourite starter theme using Bootstrap 4!
One thing I noticed recently is the “no-js” class that is on the HTML tag in header.php:
<html class="no-js" <?php language_attributes(); ?>>
On the previous Bootstrap Basic (using 3) I notice this switches between “js” and “no-js” depending if javascript is disabled in the browser, but on this theme, Bootstrap Basic4, I just noticed it always shows the “no-js” class, even when javascript is enabled.
I just noticed it because it caused an issue with a carousel I’m using that uses a “no-js” class in its styles so messed with my layout.
Is this a bug?
Thanks, Alex
]]>Hi,
I could not find change main color blue to orange ? Can anyone share with me any information, i tired all css files which is color code #007bff change to #fd7e14 but nothing worked ??
Thanks from now
]]>Can you tell me if there are any special functions I need to include with a child theme? I would like to create a child theme but am not so sure what to put in the functions.php file to enqueue the styles sheet… I see you are using an advanced class autoloader to get all the theme components. Do you have a child theme template or even a simple gist that we can see to figure out if making a child theme is easy.
]]>Hello,
When my website goes in to mobile view on IOS the nav becomes a faint grey line instead of the hamburger menu it displays on android.
Any help would be great
]]>Hello,
I have set up a nav with a sub menu item however when I’m on the website the dropdown only appears when I click on the parent item instead of on hover, because of this it does not let me click on the services parent menu item.
https://s671682722.websitehome.co.uk
Any help would be great thank you
]]>Due to Bootstrap Basic4 is using Bootstrap 4 which is still not release the full version. (2017-02-05 is still in alpha test version).
It can be change many things such as class name.
I suggest that do not use in production website.
]]>