bhenselmann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: sort_column=>post_name not workingthanks for your attention Rev.Voodoo!
I tested both – with the same result ??Forum: Themes and Templates
In reply to: How do I remove dead space below header?try editing the header.php and / or style.css
Forum: Themes and Templates
In reply to: Quick tool bar not appearing when I am logged into my siteif it works in some templates better follow Rev.Voodoo!
Forum: Themes and Templates
In reply to: Unable to add new templateI guess, you are speaking about a “theme”, not a “template”.
Are you logged in as network-admin?
Then go to
…/wp-admin/network/themes.php?theme_status=all
Is the theme listed?
If not, the theme might be not ok.
Or the folder / file properties are set wrong by ftp-ing?
Try not to ftp it but to install it directly at
…/wp-admin/network/theme-install.phpForum: Themes and Templates
In reply to: Quick tool bar not appearing when I am logged into my siteyou checked allready the checkbox in your profile?
Forum: Fixing WordPress
In reply to: include costum post types in wp_page_menu()thanks for this hint! wp_page_menu(‘post_type=mycostumposttype’) is working as well – so I′ll have to find a way to include more than only one post type.
Forum: Fixing WordPress
In reply to: include costum post types in wp_page_menu()I′m wondering, if wp_page_menu() could be manupulated through a filter in function.php?
Forum: Fixing WordPress
In reply to: include costum post types in wp_page_menu()Thanks for answering!
Because wp_nav_menu() displays a navigation menu created in the Appearance → Menus panel. And this is not dynamic – or at least I don′t know how to make it dynamic.Forum: Plugins
In reply to: [Custom Content Type Manager] Costum content type pages in nav menu?thanks a lot for this long answer!! understanding the problem better now. I′ll give sumarize-posts-plugin a try.
Forum: Plugins
In reply to: [Custom Content Type Manager] Costum content type pages in nav menu?Thanks for the fast reply, fireproofsocks. Unfortunately this is not very confortable, because I have to edit the menu each time, when I′m adding a new page of the custom content type (in my case it should be a subpage of a standard page and I′ld like to use the hierarchical menu of the theme). Is there a WP-function, with wich custom type content could be included in the nav?
Forum: Plugins
In reply to: [Custom Content Type Manager] Error in version 0.9.3 with WP 3.1.4Hi fireproofsocks, yesterday I reinstalled the version 0.9.0 and everything was fine then. Just now I installed the newest version 0.9.3.1 and it seems that the problem is gone!
Thanks for your work!
BenrhardForum: Plugins
In reply to: [Hide Widget Title] Doe's not hide titleI′m using “hide widget title”-plugin in a multisite with WP 3.1.2. If it works as expected in one blog but than not in a second one. If I “un”-hide – save – hide – save ONE widget in the second blog, it′s hiding ALL “hided” widget-titels in this blog, but showing the “hided” widget-titles in the first blog.
I really liked this plugin, before I updatet to WP 3.1.2!
Maybe any body can help?Forum: Themes and Templates
In reply to: [Sliding Door] sliding door with post thumbnailOK – this is the modified code I′m using for the adjustable width (but not with the mentioned costum field, which is not ready yet) :
[please use the ‘code’ button to mark the code; also, in future, please use the pastebin when posting code longer than 10 lines.]
function slider_menuparse($pages, $postID){
$output = “”;
$count = count($pages);
$menuwidth = 133*7; /* the imageMenu-width in px */
if (get_post_type( $postID ) == ‘post’) $postID=get_option(‘page_for_posts’); /* this is to include the css-class current_page_item when a page for posts is defined in WP options */
foreach ($pages as $page){
$cp = “”; /* for css-class of current_page_item */
$thumbnail_url = wp_get_attachment_image_src(get_post_thumbnail_id($page->ID), ‘full’);
if ($page->ID == $postID) $cp= ” current_page_item “;
$output .= ‘<li class=”page-item page-item-‘ . $page->ID . $cp . ‘”>ID) . ‘” title=”‘ . htmlentities($page->post_title) . ‘” style=”background: url(‘ . $thumbnail_url[0] . ‘) no-repeat; width:’ . $menuwidth/$count . ‘px;”>’ . $page->post_title . ‘‘;
}
echo $output;
}I used tis in the websites
https://www.art-room9.de/
and
https://www.art-gegenwart.com/
but maybe you have to adjust it?
Greetings
BernhardForum: Themes and Templates
In reply to: [Sliding Door] sliding door with post thumbnailFine! I′ll try it out. In the meantime I made some additional changes to the code to use more or less than 7 pages in the sliding menu with calculating the width of the sliders. And I′m thinking on including a custom field to tell the theme which page has to be used in the sliding menu and which not.
If you′re interested I′ll send the code.
Greetings
BernhardForum: Plugins
In reply to: [Flattr] flattr-plugin slow down whole WPHi Michael,
it seems, that there was a problem with the connection to my webproviders servers, and the flatter plugin was not able to make the connection to flattr-Website. I will have a look on that and will report if I can find anything else.