foxeye
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Translation not working (All events ; next events)Same here. Weird issue, translated some phrases few weeks ago which still show on front end, but when uploading a new language .mo file I do not see any changes. My questions is – where does the old translation come from? It only reads the lang files doesn’t it? Puzzeled.
Forum: Fixing WordPress
In reply to: Show me the current WP version runningthank you, just found it. For me hidden underneath the logo…
simple as that, can’t believe I overlooked the network settings for NG. You helped me out. Thanks!
Typing in file name seems to work(as filter) but leaves me with a blank field once selecting the found file name. Also a spinning proces wheel appears. When just closing the window clicking ‘OK’ it seems to have auto saved the choosen option and works out OK out front. Feels buggy but yes, works now. thanks.
Another desperate call for same issue….
Forum: Hacks
In reply to: page of posts sort by custom fieldfound the answer in Codex:
Displaying Posts Using a Custom Select QueryForum: Fixing WordPress
In reply to: sort post by excerptI see. I’ll try to use a custom field instead.
Forum: Plugins
In reply to: [Adminimize] Adminimize 1.7.12 Does not work with wordpress 3.1same here. buggy with WP3.1. Need this tool so more than happy with working update.
Today I tested this plugin(v1.1) but appears to be not working with WP 3.1 Admin side config window remains blank.
Suppose the full version is no different? I could use this tool. Will this be fixed anytime soon? Update maybe?Forum: Fixing WordPress
In reply to: margin-top added to html and body tags after upgrade to 3.1!?!mmm, can we call this a bug? Will this be fixed in future updates?
Don’t think I understand the footer part of this thread. I removed/commanded out the css code in the admin-bar.php to get rid of the margin in logged in mode.Forum: Fixing WordPress
In reply to: no dashboard access – blank pageThat’s very helpful, thanks. Renaming the theme dir did open the admin panel again. So this must be a theme issue than. mmmm. This problem might show up again as it did before but at least now I have a ‘work around’. Thanks anyway for helping me out here James.
Forum: Fixing WordPress
In reply to: Adding a Second Header.php fileLet me answer this. It just works this way. Easy enough.
Forum: Themes and Templates
In reply to: CSS custom field helpveeeery happy. Thanks!
Forum: Fixing WordPress
In reply to: Change sortorder posts for one pagecan’t get it to work still. What piece of the template do i need to alter? this is the code:
<?php // page id 21 will get category ID 12 posts, page 16 will get category 32 posts, page 28 will get category 17 posts if (is_page('111') ) { $cat = array(1); } elseif ( is_page('54') ) { $cat = array(6); } elseif ( is_page('28') ) { $cat = array(17); } else { $cat = ''; } $showposts = -1; // -1 shows all posts $do_not_show_stickies = 1; // 0 to show stickies $args=array( 'category__in' => $cat, 'showposts' => $showposts, 'caller_get_posts' => $do_not_show_stickies ); $my_query = new WP_Query($args); ?> <h1><?php the_title(); ?></h1> <div class="clearfix"></div> <?php if( $my_query->have_posts() ) : ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <?php //necessary to show the tags global $wp_query; $wp_query->in_the_loop = true; ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('Read the rest of this entry ?'); ?> </div>
Forum: Plugins
In reply to: Installed Forum-server but it didn’t show upsame thing here. What’s the code to make it show on the frontend? Does not say in the WP plugin installation info. Plugin site vasthtml.com is messy and doesn’t give answers. Anyone? Should be simple enough…