ipadsoft 0 Report post Posted May 27, 2010 Hi, Yesterday i bought this template and i love it. I have a few problems i can't resolve and maybe i can get some help. 1: I have the Accordion Sidebar activated and i have some ads placed on my site. It just does not look right, can anyone tell me what to do? The Flow Sidebar is just fine but i don't want the Meta into that sidebar. If anyone can tell me how to lose that Meta this problem is solved. 2:On my Homepage (blog) i have pictures next to my post, just the way i like it. But when i see under categories i don't see those pics and text, how come? 3: I don't now, will find one soon i guess. http://ipadsoft.nl/ Share this post Link to post Share on other sites
ipadsoft 0 Report post Posted May 27, 2010 See, i new i forgot something. In the top search-box it says search, don't now why but i would like to change it to my own language. Where do i find that text in the code? Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 27, 2010 1: I have the Accordion Sidebar activated and i have some ads placed on my site. It just does not look right, can anyone tell me what to do? The Flow Sidebar is just fine but i don't want the Meta into that sidebar. If anyone can tell me how to lose that Meta this problem is solved. It looks good to me. If you want to remove the Meta, you should be able to just remove the widget or we can hide it with CSS, but again the accordion looked like it should. What is the problem? 2:On my Homepage (blog) i have pictures next to my post, just the way i like it. But when i see under categories i don't see those pics and text, how come? I just tested this on my localversion of the theme and it works, do you have any plug-ins installed that modify categories other WP tags? See, i new i forgot something. In the top search-box it says search, don't now why but i would like to change it to my own language. Where do i find that text in the code? This search form is localized and should change depending on the language, but if you want to manually edit it you can do so in the _searchform.php file Share this post Link to post Share on other sites
Jackey 29 Report post Posted May 27, 2010 @cmunns 2:On my Homepage (blog) i have pictures next to my post, just the way i like it. But when i see under categories i don't see those pics and text, how come? I just tested this on my localversion of the theme and it works, do you have any plug-ins installed that modify categories other WP tags? My blog acts the same... are you positive the thumbs should show when displaying categories. My version is 4.0.6. It has done this from day one. @ipadsoft It looks as if your dutch language file is not installed. Please check if the language folder in the iblogPro folder is named `language` and not `languages`. Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 27, 2010 Weird I even checked the live demo and it looked fine. Jackey, you mind sending me the code you have on the _posts.php page? Share this post Link to post Share on other sites
Jackey 29 Report post Posted May 28, 2010 Sure! ` <?php if (!is_404() && have_posts()) : while (have_posts()) : the_post(); ?> <?php if(is_single()):?> <?php previous_post_link('%link') ?> <?php next_post_link('%link') ?> <?php endif;?> <?php if(!is_page()):?> <?php if(pl_show_thumb($post->ID)): ?> <?php the_post_thumbnail('thumbnail');?> <?php elseif (get_post_meta($post->ID, 'thumb', true)): ?> <?php $postimageurl = get_post_meta($post->ID, 'thumb', true); ?> <?php endif; ?> <?php the_title(); ?> <?php _e('On',TDOMAIN);?> <?php the_time(get_option('date_format')); ?>, <?php _e('in',TDOMAIN);?> <?php the_category(', ') ?>, <?php _e('by',TDOMAIN);?> <?php the_author(); ?> <?php edit_post_link(__('(Edit Post)', TDOMAIN), ' ', ' ');?> <?php if(pl_show_excerpt($post->ID)):?> <?php the_excerpt(); ?> <?php endif; ?> <?php endif;?> <?php if(pl_show_content($post->ID)):?> <?php if(pagelines('pagetitles') && is_page() || is_page_template('page-feature-blog.php')):?> <?php the_title(); ?> <?php endif;?> <?php the_content(__('Continue reading ?»',TDOMAIN)); ?> <?php link_pages(__('Pages:', TDOMAIN), '', __('number', TDOMAIN)); ?> <?php edit_post_link(__('Edit',TDOMAIN), '', ''); ?> <?php if(pagelines('authorinfo') && is_single()):?> <?php include(THEME_LIB.'/_authorinfo.php');?> <?php endif;?> <?php endif;?> <?php if(!is_page()) include(THEME_LIB.'/_post_footer.php');?> <?php if(!is_page()):?> <?php the_tags(__('Tagged with: ', TDOMAIN),' ??? ',''); ?>? <?php endif;?> <?php if(is_single() || is_page()):?> <?php include(THEME_LIB."/_contentsidebar.php");?> <?php if(!is_page() || (is_page() && pagelines('pagecomments', $post->ID))) include(THEME_LIB.'/_commentsform.php');?> <?php endif; endwhile; ?> <?php include(THEME_LIB.'/_pagination.php');?> <?php else : ?> <?php if(is_404()):?> <?php _e('Error 404 - Page Not Found',TDOMAIN);?> <?php else:?> <?php _e('Nothing Found',TDOMAIN);?> <?php endif;?> <?php _e('Sorry, what you are looking for isn't here.', TDOMAIN);?> <?php get_search_form(); ?> <?php endif; ?> ` I'm off to Ireland for a week, so there can be some latency in my response. Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted May 28, 2010 Okay, should have an answer from a more PHP minded mod this morning. Thanks, Bryan Share this post Link to post Share on other sites
sponzertgmailcom 0 Report post Posted June 6, 2010 Great, thanks everyone. I have no clue how to activate that Dutch language file. Another thing i can't get working, the ico file wont show up. I have placed an .ico file in the root and set it in the options but no ico. Any idea? Share this post Link to post Share on other sites
Andrew 207 Report post Posted June 7, 2010 is it a .png file type that you converted to .ico? Share this post Link to post Share on other sites