oshin99
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Blog title is appearing on top of featured imageI want to remove it from the whole site and I want the title to appear normal like In every blog Above the content @ejcabquina
Forum: Themes and Templates
In reply to: [GeneratePress] Blog title is appearing on top of featured image@leohsiang
By clicking on this link – https://digitaloshin.com/time-is-an-illusion/
you will see my blog title is appearing above the featured image. So I want help with thisForum: Themes and Templates
In reply to: [GeneratePress] Blog title is appearing on top of featured image@leohsiang can you check now?
Forum: Themes and Templates
In reply to: [GeneratePress] Blog title is appearing on top of featured image@diggeddy
here is the link –
https://digitaloshin.com
please click on blog page and you will see there.Forum: Developing with WordPress
In reply to: Fix this css code pleasehey, I solved the problem. Thanks, everybody @bcworkz @prabhatrai
Forum: Developing with WordPress
In reply to: Fix this css code please@bcworkz here is the link if you can access it. Open it on the desktop. You can see there is a primary nav on the left side and I checked it up in the widget area, but it’s not there. My theme has a separate PHP file for this. Do you know how can I disable it?
And thanks for your help!
link – https://digitaloshin.com/blog/Forum: Developing with WordPress
In reply to: Fix this css code please@prabhatrai , My website is still running offline mode. I haven’t made it visible in google search engine.
My theme is having a sidebar left.php file, due to which it is showcasing primary navigation as sidebar navigation on the entire website except the homepage. So I want to disable it and display primary navigation in the header only.
Forum: Fixing WordPress
In reply to: disable php@sterndata My theme is having a sidebar left.php file, due to which it is showcasing primary navigation as sidebar navigation on the entire website except the homepage. So I want to disable it and display primary navigation in the header only.
Forum: Themes and Templates
In reply to: [GeneratePress] Generate pressyes I have premimum plugin but the problem I am encountering is I got my website build from a freelancer and now i am trying to reach him. So I am troubled as generatepress login is not taking my login
Forum: Fixing WordPress
In reply to: debug erooromg! That’s such a trivial blunder. Thanks a lot. its been solved @emmtoor
Forum: Fixing WordPress
In reply to: debug eroor<?php /** * The template for displaying all single posts * * @link https://developer.www.ads-software.com/themes/basics/template-hierarchy/#single-post * * @package Moderne */ $singlelayout = get_theme_mod( 'moderne_single_layout', 'single1' ); get_header(); ?> <?php // single with featured image above title if ( $singlelayout == 'single4') : ?> <div id="primary" class="content-area col-lg-12"> <main id="main" class="site-main <?php echo esc_attr($singlelayout); ?>"><?php get_template_part( 'template-parts/post/content', 'single2' ); ?></main> </div> <?php // single no sidebars and featured image below title elseif ( $singlelayout == 'single3') : ?> <?php <div id="primary" class="content-area col-lg-12"> <main id="main" class="site-main <?php echo esc_attr($singlelayout); ?>"><?php get_template_part( 'template-parts/post/content', 'single' ); ?></main> </div> <?php // single left sidebar and featured image below title elseif ( $singlelayout == 'single2') : ?> <div id="primary" class="content-area col-lg-8 order-lg-2"> <main id="main" class="site-main <?php echo esc_attr($singlelayout); ?>"><?php get_template_part( 'template-parts/post/content', 'single' ); ?></main> </div> <div class="col-lg-4 order-3 order-lg-1"> <?php get_template_part( 'template-parts/sidebars/sidebar', 'left' ); ?> </div> <?php // single right sidebar and featured image below title else : ?> <div id="primary" class="content-area col-lg-8"> <main id="main" class="site-main <?php echo esc_attr($singlelayout); ?>"> <?php get_template_part( 'template-parts/post/content', 'single' ); ?></main> </div> <div class="col-lg-4"> <?php get_template_part( 'template-parts/sidebars/sidebar', 'right' ); ?> </div> <?php endif; ?> <?php get_footer();
- This reply was modified 4 years, 6 months ago by Yui.
Forum: Fixing WordPress
In reply to: debug eroor