Maria Juan
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] IE 9Can you give an example of how you are wrapping the div around the form? I am having the same issues in IE.
Forum: Plugins
In reply to: [Norman YouTube Plugin] [Plugin: Norman YouTube Plugin] Plugin Not WorkingSolved. They wanted to begin using a vimeo so I downloaded the plugin. THanks guys!
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsthanks!
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsActually putting it in the Functions file worked! I see it now in my widgets!
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsno. Still only two.
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsI customized it:
function sdttheme_register_sidebars() { register_sidebar(array( 'name' => 'custom', 'description' => 'Widgets in this area will be shown on the right-hand side.', 'before_title' => '', 'after_title' => '' )); } add_action( 'widgets_init', 'sdttheme_register_sidebars' );
Is this correct? What would be my next step from here/
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsIm sorry. Looking and cant find the widgets_init hook. Where would I find it?
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsSo then where will I see my new sidebar. RIght now it is still pulling the old one even though I have named it ‘custom’ in my index file.
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsThis is what I added in the widgets.php file:
register_sidebar(array( 'name' => 'custom', 'description' => 'Widgets in this area will be shown on the right-hand side.', 'before_title' => '', 'after_title' => '' )); <?php if ( function_exists ('register_sidebar')) { register_sidebar ('custom'); } ?>
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsThat is the only code that I have put in thus far. I stopped at this instruction because i did not see my sidebar listed under my widgets. I am unsure what my next step would be.
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsThis is in my widgets.php file
[Code moderated as per Forum Rules – please use the Pastebin]
Forum: Themes and Templates
In reply to: Adding a Sidebar to a theme with two other sidebarsWhat part of the code do you need to see?