zookie_333
Forum Replies Created
-
Forum: Plugins
In reply to: [Import any XML or CSV File to WordPress] import problems. only one node?If i copy the first 1000 rows and create a new importfile the import works fine and all nodes are found.
what can it be?
Forum: Themes and Templates
In reply to: [One Page Express] Disable sidebarlook nice but the triange between header and content seems to be missing…
Forum: Themes and Templates
In reply to: [One Page Express] Disable sidebarits also gray behind the header.
https://brabyggfirma.se/bra-byggfirma-i-overkalix/Forum: Themes and Templates
In reply to: [One Page Express] Disable sidebartnx again.
Its a small border/shadow around the content. possible to remove that to?Forum: Themes and Templates
In reply to: [One Page Express] Disable sidebarbackground-color: white;
something like that?
or like this?
`body .format-standard .entry-wrap {
background:#fff !important;
}Forum: Themes and Templates
In reply to: [One Page Express] Disable sidebarWorks like a charm. Tnx.
Next problem… the background is gray and a small border/shadow round the image.
I dont want any border and want the background to be white.
Cant find any option i customizer.https://brabyggfirma.se/bra-byggfirma-i-overkalix/
m.
Forum: Themes and Templates
In reply to: [One Page Express] Disable sidebarhttps://brabyggfirma.se/hur-fungerar-det/
this is a page.
page without sidebar.
posts with sidebar. I want to make it look the same,Forum: Themes and Templates
In reply to: [One Page Express] Disable sidebarhttps://brabyggfirma.se/bra-byggfirma-i-overkalix/
thats a post
- This reply was modified 4 years ago by zookie_333.
Forum: Plugins
In reply to: Disable sidebar single.phpi understand i have to remove
<?php get_sidebar('post') ?>
in single.php but i cant change the size of the container in the css. plz help.Forum: Fixing WordPress
In reply to: add page to singe.phpThanks, but i cant get it….
<?php get_header(); ?> <div id="single_page_wrap" class="clearfix"> <div class="container"> <div class="row"> <?php while (have_posts()) : the_post();?> <div class="col-md-8 col-sm-8 single_page_content"> <div class="single_title_image clearfix"> <h1><?php the_title(); ?></h1> <?php the_post_thumbnail('full'); ?> </div> <!--single_title_image clearfix--> <div class="single_content_text clearfix"> <?php the_content(); ?> //start stern data add_filter( 'the_content', 'featured_image_before_content' ); function featured_image_before_content( $content ) { $post_to_get = 6461; // change to your target post if ( get_the_ID() == $post_to_get ) { return $content; } if ( is_singular('post') { $add_post = get_post( $post_to_get ); $addl_content = $addl_post->post_content; $addl_content = apply_filters( 'the_content', $addl_content ); $thumbnail = get_the_post_thumbnail( $addl_post); $content = $thumbnail . $addl_content; } return $content; } // end of stern data </div> <!--clearfix--> </div> <!--col-md-8 single_page_content--> <?php endwhile; ?> <?php wp_reset_query(); ?> <div class="col-md-4 col-sm-4 single_wid_wrap"> <?php get_sidebar('post') ?> </div> <!--col-md-4 single_wid_wrap--> </div> <!--row--> </div> <!--container--> </div><!--single_page_wrap--> <?php get_footer(); ?>
Cant see post 6461 under my post. The code shows as text inside the content. I attach single.php for input,
Forum: Fixing WordPress
In reply to: add page to singe.phpso what can that string look like? I′m not so good in php…..
add_filter( 'the_content', 'featured_image_before_content' ); function featured_image_before_content( $content ) { if ( is_singular('post') && has_post_thumbnail()) { $thumbnail = get_the_post_thumbnail(); $content = $thumbnail . $content; } return $content; }
i want to narrow it down do one specific post. How to do that?
Forum: Plugins
In reply to: show page under posts (single.php)have 500 posts with small seo content and i want to show my productpage under each post. I can ofcourse copy my produktspage and make a post of it. It must be a commando get_post…id123 i can cut in in single.php
Forum: Fixing WordPress
In reply to: add page to singe.phphave 500 posts with small seo content and i want to show my productpage under each post. I can ofcourse copy my produktspage and make a post of it. It must be a commando get_post…id123 i can cut in in single.php
Forum: Fixing WordPress
In reply to: Error HTTP_X_FORWARDEDI made change it in the plugin file (payment gateway). Now it works perfect!
Thanks!
Forum: Fixing WordPress
In reply to: Error HTTP_X_FORWARDEDTnx. Now it works!