hulku
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Manipulate top level admin menuI got it working just by adding the menu item i wanted to the $menu array with a function
Thanks i’ll check the plugin out though since I do things like this fairly often
Forum: Fixing WordPress
In reply to: Get Category Feed URLForum: Themes and Templates
In reply to: Change twenty ten columns from one to twoHey John, Its frustrating when no-one answers questions i don’t know if I can help 100% but if i understand you right, it sounds like you could solve most of that just with CSS to juke the layout.
What level are your CSS skills at?
Forum: Themes and Templates
In reply to: WordPress and Internet ExlporerRugby, Do you have a link the site where the problem is?
Forum: Fixing WordPress
In reply to: How can I assign a post to a parent page using WP 3 Menus?Regarding the navigation theres a custom links option in the new menu system, you could just add the posts you want to feature under work as custom links?
Sorry if i’m not understanding your question properly
Forum: Themes and Templates
In reply to: twentyeleven page size adjustment@esmi not everyone uses child themes, i just don’t see the point myself since I never upgrade themes when new version are released. If i want a new clean twenty eleven theme I just dl a new one
The important thing is which styles needed to be changed, which he couldn’t find, i just pointed him to the rules that were determining the width.
But your right!
Forum: Themes and Templates
In reply to: twentyeleven page size adjustmentYou can basically delete the style declarations below, in style.css to give you 100% width.
All other widths in the default style sheet seem to be in relative units so everything should just stretch to fit, but right at the bottom of the stylesheet there are some max-widths defined specifically for IE7 so you might want to have a look at those if you need to
body {
padding: 0 2em;
}
#page {
margin: 2em auto;
max-width: 1000px;
}Forum: Themes and Templates
In reply to: Add links to edit all pages in Admin BarThis probably isn’t the most efficient way to do it but I kind of got it working with:
function customize_menu() {
global $wp_admin_bar, $post;
$pages = get_pages(array(“post_type” => “page”, “parent” => 0));$wp_admin_bar->add_menu(array(
“id” => “allpages”,
“title” => “All Pages”,
“meta” => array(“target” => ‘blank’)
));if($pages){
foreach($pages as $p){
$wp_admin_bar->add_menu(array(
“parent” => “allpages”,
“title” => $p->post_title,
“href” => “http://localhost:8888/wp-admin/post.php?post=” . $p->ID . “&action=edit”
));
}
}
}Except now I want a second level dropdown menu, with links to each pages child pages
Forum: Themes and Templates
In reply to: Styling the loop chronologicallyThanks alchymyth, that looks interesting i’ll play with it. I couldn’t post much information about the theme i’m using it for because at the moment its still in my head.
Forum: Plugins
In reply to: Google Analytics for AdminNo its not just for seeing who logs in, but i’ve worked with a few custom cms’s in the past that reported metrics from the admin side and there is a fair bit of optimization you can do from the content creation side when you have access to the data.
Sometimes its just gaining a bit of insight into where the workflow is getting broken (i.e. exit pages) or if and why content creators are getting bogged down on certain pages etc. Sometimes it might just be changing the label on a field, but its hard to know