Title: Levente24's Replies | WordPress.org

---

# Levente24

  [  ](https://wordpress.org/support/users/levente24/)

 *   [Profile](https://wordpress.org/support/users/levente24/)
 *   [Topics Started](https://wordpress.org/support/users/levente24/topics/)
 *   [Replies Created](https://wordpress.org/support/users/levente24/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/levente24/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/levente24/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/levente24/engagements/)
 *   [Favorites](https://wordpress.org/support/users/levente24/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Image editor error on admin panel](https://wordpress.org/support/topic/image-editor-error-on-admin-panel/)
 *  Thread Starter [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/image-editor-error-on-admin-panel/#post-2113757)
 * yes i did, and it was the same problem
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Image editor from visual editor not working](https://wordpress.org/support/topic/image-editor-from-html-editor-not-working/)
 *  [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/image-editor-from-html-editor-not-working/#post-1545564)
 * [@mixtlupus](https://wordpress.org/support/users/mixtlupus/)
 * could you post that htaccess? or show the codes?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Please help hide custom field](https://wordpress.org/support/topic/please-help-hide-custom-field/)
 *  Thread Starter [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/please-help-hide-custom-field/#post-2027367)
 * here is the code
 *  <?php if(is_category(7) || is_page(11) && get_post_meta($post->ID, ‘m_slider’,
   true) == ‘true’ || 11 == $post->post_parent && get_post_meta($post->ID, ‘m_slider’,
   true) == ‘true’) {?>
    <div id=’slider_bg’> </div><!– slider_bg –> <div id=’slider_img’
   > <div class=”slider” > <img src='<?php bloginfo(‘template_url’); ?>/slider/<?
   php echo get_post_meta($post->ID, ‘main_folder’, true); ?>/1.jpg’> <img src='
   <?php bloginfo(‘template_url’); ?>/slider/<?php echo get_post_meta($post->ID,‘
   main_folder’, true); ?>/2.jpg’> <img src='<?php bloginfo(‘template_url’); ?>/
   slider/<?php echo get_post_meta($post->ID, ‘main_folder’, true); ?>/3.jpg’> <
   img src='<?php bloginfo(‘template_url’); ?>/slider/<?php echo get_post_meta($
   post->ID, ‘main_folder’, true); ?>/4.jpg’>
 *  </div>
    </div> <?php } ?>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Please help hide custom field](https://wordpress.org/support/topic/please-help-hide-custom-field/)
 *  Thread Starter [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/please-help-hide-custom-field/#post-2027145)
 * thank you for your reply but this doesnt work either
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [the_content() doesn't work on single and page.php](https://wordpress.org/support/topic/the_content-doesnt-work-on-single-and-pagephp/)
 *  [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/the_content-doesnt-work-on-single-and-pagephp/#post-1986531)
 * or maybe a plugin is causing this, have you checked that?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [the_content() doesn't work on single and page.php](https://wordpress.org/support/topic/the_content-doesnt-work-on-single-and-pagephp/)
 *  [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/the_content-doesnt-work-on-single-and-pagephp/#post-1986519)
 * because you need a loop
 * on the single page or page place
 *     ```
       <?php if (have_posts()) : ?>
       <?php while (have_posts()) : the_post(); ?>
       <?php the_content(); ?>
       <?php endwhile; ?>
       <?php endif; ?>
       ```
   
 * and ready to go
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to set different logo in header for main blog & for user blog](https://wordpress.org/support/topic/how-to-set-different-header-for-main-blog-amp-for-user-blog/)
 *  [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-set-different-header-for-main-blog-amp-for-user-blog/#post-1564885)
 * for example you can do this with id’s
 * go to your header php
 * and
 * get your index php (home.php) id you can check that out in the admin.
 * now in your header php you have the index php id
 * and write
 *     ```
       if(is_page('the id here')) {
        the logo div here..
       }
       ```
   
 * and there your index header is different to add different logos to your other
   pages just use an else if with their id’s
 * hope i was able to help
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [How can i put sidebar in single.php](https://wordpress.org/support/topic/how-can-i-put-sidebar-in-singlephp/)
 *  Thread Starter [Levente24](https://wordpress.org/support/users/levente24/)
 * (@levente24)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-can-i-put-sidebar-in-singlephp/#post-1950005)
 * i was able to write a function for it [SOLVED]

Viewing 8 replies - 1 through 8 (of 8 total)