domsdey
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Themes and Templates
In reply to: Removing right sidebarHi
I wanted to say I modified
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
to
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(0) ) : ?>
So what should I do?Forum: Themes and Templates
In reply to: Removing right sidebarDamn shit fuck.
Both sidebars are in one file, sidebar.php
I found that in it:
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
So I changed it to:
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>but no effect.
that’s functions.php:<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'Sidebar Left', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h3>', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'Sidebar Right', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h3>', 'after_title' => '</h3>', )); ?>I modified it to:
<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'Sidebar Left', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h3>', 'after_title' => '</h3>', )); ?>But still no effect…
Any other ideas?Forum: Themes and Templates
In reply to: Removing right sidebarUhm… THe field for posts should be larger?
Forum: Themes and Templates
In reply to: Removing right sidebarCan’t anyone help?
Forum: Fixing WordPress
In reply to: Editing text color – widgetsThank you for the reply :).
It was from style.css
I can’t believe I hadn’t thought of that, eh… 😛
Best wishes,
Valentin
Viewing 5 replies - 1 through 5 (of 5 total)