jugularbean
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Congrats on winning the pact : Best Social Networking CMS:WP is definitely a rocking CMS and I think a lot better than other Open Source systems out there. Congrats guys!! ??
Forum: Fixing WordPress
In reply to: Visual Rich Editor not working on Safari (Mac)Let me try this. Strangely even IE for Mac doesn’t seem to support the Visual Editor.
Forum: Fixing WordPress
In reply to: Widgets not workingI’m using WP 2.2
The enabled plugins are
Akismet 2.0.2
All in One SEO Pack 0.6.2.1
Angsuman’s Translator Plugin Pro 4.0.2
cforms 4.7
Feedburner Feed Replacement 2.2
Google Sitemaps 2.7.1
Most Commented 1.02
Recent Comments 1.18
Recent Posts 1.07
TLA InLinks 1.0.9
WordPress Database Backup 1.8
wp-cache 2.1
WP-Forum 1.7.4However, I doubt the plugins cause the problem, because I deactivated all of them and the widgets still didn’t work.
I’m using a customised theme for the site and the dynamic sidebar is called by the usual
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('SidebarLeft') ) : else : ?>
and the function.php has
if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'SidebarLeft', 'before_widget' => '<div class="Links">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>', ));
Similarly I have dynamic sidebars called SideBarRight and a FooterArea
Now when I go to Presentation->Widgets
I see the sidebars with the widgets in them, as well as the list of available widgets below. But I can’t drag and drop any widget around. If I click and drag it selects the text like a click drag would do on a normal page of text.
Forum: Fixing WordPress
In reply to: Visual Rich Editor not working on Safari (Mac)Do you happen to know which version of Safari would support the editor. Or are there any other solutions?
Forum: Plugins
In reply to: Search in attachmentsYes, I’m looking for a plugin like this as well. Anyone have any ideas.
I tried Search Everything, it has an option to search the attachments but it doesn’t seem to do so.
Forum: Themes and Templates
In reply to: CSS dropdown not working fine in IE6I even used Peter Nederlof’s Whatever:hover script to enable IE6 to handle the hover pseudoclass
Forum: Fixing WordPress
In reply to: Double sidebarare you sure you selected page template as Home Page Template for the page on which you want this template to work?
Forum: Fixing WordPress
In reply to: Showing all postsForum: Fixing WordPress
In reply to: Showing all postsEither use the <!–more–> tag in your posts or try a plugin like c2c customisable post listings (google it)
Forum: Fixing WordPress
In reply to: No Title on Static Home PageWell ideally a WP Page uses the page.php template, but if that doesn’t exist it’ll use the index.php template.
So if you don’t have a page.php then ideally any changes you make to the index.php will be applicable for pages as well.
If the code changes you made aren’t helping, I’m not really sure what the issue is.
@moshu – he’s using a static page for his front page and he’s trying to ensure that the title doesn’t display
Forum: Fixing WordPress
In reply to: I’m trying to display a random postNevermind, I’ve figured it out.
Forum: Fixing WordPress
In reply to: No Title on Static Home PageSo you don’t have any file title page.php in your template list?
Forum: Fixing WordPress
In reply to: No Title on Static Home Pageleftside.php and leftside_page.php???
are these templates you are using for your home page?
Forum: Fixing WordPress
In reply to: Double sidebarhmmm…could you link to the site please?
Forum: Fixing WordPress
In reply to: No Title on Static Home PageAre you using WP 2.2?
cause if you are not then you have to use
<?php if (!is_home()): ?>
<div class=”article_title”><?php the_title(); ?></div>
<?php endif; ?>