labyrinthman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bootstrap 4 Nav Walker button shows on full widthI have fixed it. Now it’s working.
<div class="row"> <div class="col-md-12 col-sm-12"> <!-- Navigation --> <nav class="navbar navbar-default"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".bs-example-navbar-collapse-1" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <!-- Brand --> <a class="navbar-brand page-scroll sticky-logo" href="index.html"> <h1><span>e</span>Business</h1> <!-- Uncomment below if you prefer to use an image logo --> <!-- <img src="img/logo.png" alt="" title=""> --> </a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'container' => 'div', 'container_class' => 'collapse navbar-collapse main-menu bs-example-navbar-collapse-1 ml-auto', 'menu_class' => 'nav navbar-nav ml-auto', 'walker' => new WP_Bootstrap_Navwalker(), // This controls the display of the Bootstrap Navbar 'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback', // For menu fallback ) ); ?> <!-- navbar-collapse --> </nav> <!-- END: Navigation --> </div> </div>
Forum: Themes and Templates
In reply to: [NewsMag] Loop column positioning issueHello AddWeb Solution Pvt. Ltd.
Thank you for your response, it works.
Forum: Fixing WordPress
In reply to: Footer and sidebar not showing on my themeResolved.
Forum: Fixing WordPress
In reply to: Footer and sidebar not showing on my themeThat helped me a lot.
Thank you @sterndataForum: Fixing WordPress
In reply to: Footer and sidebar not showing on my themeThis is the code I used for single.php, I did called <?php wp_footer(); ?> function as well as <?php get_sidebar();?>
<?php get_header();?> <body> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-12"> <div class="well" style="overflow:auto;"> <h1 class="text-center text-uppercase fw-800 "> <?php echo get_the_title();?> </h1> </div> </div> </div> <div class="row"> <div class="well" style="overflow:auto;"> <div class="col-md-8 col-sm-12 col-xs-12"> <div class="blog-post"> <?php if(have_posts()){ while(have_posts()){ the_post(); ?> <!-- Post --> <article class="col-sm-12"> <header> <span class="tag"><?php the_category(','); ?></span> <span class="date"><?php the_time('d M Y G:i'); ?></span> </header> <p class="image featured text-center"> <?php if(has_post_thumbnail()){ the_post_thumbnail('medium_large'); } ?> </p> <?php the_content();?> <?php wp_link_pages();?> <?php the_tags();?> <?php comments_template();?> </article> <!-- Post --> <?php } } ?></div><!-- /.blog-post --> </div> <div class="col-md-4 col-sm-12 xs-hidden"> <?php get_sidebar();?> </div> </div> </div> </div> <!--/.container--> <?php get_footer();?>
Forum: Fixing WordPress
In reply to: Footer and sidebar not showing on my themeI have installed the plugin and I have noticed that on single page the admin bar on top is missing, it’s showing on all the other pages but only on single.php the admin bar is missing.
Forum: Fixing WordPress
In reply to: Footer and sidebar not showing on my themeDo you see it on single page such as this one ?
Forum: Fixing WordPress
In reply to: Sidebar not showing on single.phpHi @swansonphotos, and thanks for the reply.
Here is the link to my website and a link to a single page
https://www.kler-srbobran.rs/subvencija-klonska-selekciju/Forum: Developing with WordPress
In reply to: Post loop is unevenYeah I got it working, thanks for the reply though.
Forum: Fixing WordPress
In reply to: How to find home page in dark nature theme@mark Ratledge
Thanks for the reply but I have not bought that theme, I’m not the owner of the website I was talking about. The client asked me to make some custom changes. I have mention all that in the post above.
Thanks anyway.
Forum: Fixing WordPress
In reply to: How to find home page in dark nature themeHello and thanks for the reply.
The problem I’m experiencing with clients website is that I can not find the page from where the landing page is showing, I was doing some minor changes and the websites acts like nothing is changed.
I even have added one extra page but that page also is a no show.
Is it because the clients wordpress version is outdated or because the Dark Nature theme (https://www.wpexplorer.com/dark-nature-wordpress-theme/) is no longer supported ?Another thing:
I have noticed that there is no chance I can upload new theme, that option does not exist on my clients wordpress website.