nadimtheadmin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tag and Category pages not loading any contentHey!
I’m having the exact same issue. It’s slightly reassuring to know that I’m not the only one but I REALLY have no clue how to fix this. It just doesn’t seem to make sense…
Have you managed to fix it somehow?
Best,
Nadim.
Forum: Fixing WordPress
In reply to: Force Widget to Appear at Bottom of Page in Sidebar.anyone?
Forum: Fixing WordPress
In reply to: Force Widget to Appear at Bottom of Page in Sidebar.Yeah, it’s nice but I need it to be on the side of the page. We’re talking about the search field plus a text widget (that displays a logo).
Is it impossible to get that “flexible gap” between these two widgets and the one’s above?
Beautiful theme though.
Thanks!
Forum: Plugins
In reply to: Hide the date of all posts in a specific category.If its impossible I would like to know as well 🙂
Forum: Plugins
In reply to: Help Needed for Plugin DevelopmentFound it!
I just added
<p><h3> -<?php single_cat_title(); ?></h3></p>before The Loop in my theme’s index.php.Thanks.
Forum: Plugins
In reply to: Help Needed for Plugin DevelopmentOK, no prob I’ll explain again. I’m using this them called Contempt. The theme used to display the name of the category first thing in the sidebar when you were in a category page. When I widgetized the theme, the new sidebar didn’t have this function. So I thought that the quickest way to add it would be by creating a widget and place it at the top of the sidebar.
Maybe there’s a better way?
Forum: Plugins
In reply to: Help Needed for Plugin Development@root
hey i didn’t write this! This is how it came! (After the widgetizing)
This works perfectly but I really need to have the Title of the category either first thing on the page or in the sidebar (as it was before). I’m a complete newbie when it comes to php and I somehow managed to get a few things done but this is over my head…@mrmist
Thanks, removed the comma but I dont think it was doing anything wrong. It was just unnecessary.Forum: Plugins
In reply to: Help Needed for Plugin Developmentok this is the theme’s functions.php:
`<?php
if ( function_exists(‘register_sidebar’) )
register_sidebar(array(
‘before_widget’ => ‘<li id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘
‘,
‘before_title’ => ”,
‘after_title’ => ”,
));?>
`Can you help me edit it? (I don’t really know what to do :))
Thanks a million.
Forum: Plugins
In reply to: Help Needed for Plugin DevelopmentThe thing is that when I widgetised my Contempt theme it stopped displaying the name of the category pages on the top of the sidebar.
When I looked into the theme’s old sidebar.php file I found part of the code you see above and tried to implement it into a widget for my new customisable sidebar. But I just cant seem to get it right without any help.