Tagged Questions
0
votes
1answer
21 views
Listing current pages subp page in list items in the sidebar
I'm wanting to list my current page's child pages as list items in the sidebar of my wordpress site.
So far I've been referencing the http://codex.wordpress.org/Function_Reference/wp_list_pages
I'm ...
0
votes
0answers
36 views
Theme doesn't show sidebar
A strange thing has happened. I've uploaded my theme (that worked perfectly before and still works prefect on my local server) and there are some issues. First it couldn't load prettyPhoto files and I ...
2
votes
0answers
100 views
Registering Sidebars and Sidebar Widgets. Sidebar Widgets Not Displaying
I am registering sidebars and sidebar widgets.
The theme currently supports two sidebars. Primary and Secondary.
add_action('widgets_init', array($this, 'add_sidebars'), 10, 2);
public function ...
0
votes
1answer
32 views
Recommended sidebar / content widths
I'm developing my own theme. Does WordPress recommend or require a minimum or maximum when it comes to the width of the content or sidebar elements of an post, page or archive page? If not, are there ...
-1
votes
2answers
2k views
Incorrect sidebar showing on WooCommerce Store page
I am developing a refresh of my site on a new VPS plan and on of the main changes is switching from the dreaded wp e-commerce to WooCommerce.
The URL to the WooCommerce store page is ...
0
votes
2answers
385 views
Conditional tags issue for multiple is_page() conditions in sidebar.php
I've been pulling my hair out today trying to get this right. Basically I have a sidebar, which makes requests to individual files (such as sidebar-home.php, sidebar-residential.php) and different ...
2
votes
1answer
356 views
Best practices: Custom theme sidebar menu - hardcode or widget?
Is it best to hardcode a sidebar menu using functions.php or sidebar.php OR use the custom menu widget? Are there times when each is appropriate?
0
votes
2answers
46 views
Sidebar doesnt get updated?
I was trying to edit a theme by updating the style.css of it. But I also needed to add some manual html to the sidebar like ul li's . I maintained the order and updated the html od sidebar within the ...
1
vote
2answers
1k views
How to wrap the widget content with a div or get the widget title outside?
Is there a way to get the widget title outside of the widget area like this:
<ul>
<li>
<h2 class="widgettitle">The title here</h2>
<div class=""widget>
...
0
votes
2answers
362 views
How can I hard code my sidebar?
I am building a child theme based on Thematic.
Rather than use widgets, I would like to hard code my sidebar but I can't figure out how to do this.
Any help appreciated!
Thanks
2
votes
2answers
424 views
how can I remove the sidebar from my wp homepage [closed]
What's the best practice when it comes to removing the sidebar on the wordpress homepage? I'm using wp Version 3.2.1 and Skeleton Child Theme 1.6
0
votes
2answers
480 views
How to exclude categories from a sidebar with active widgets in it?
Is there a way to exclude certain categories from a widgetised sidebar? I've got categories that are associated with custom post types and ones associated with my blog - I don't want to display the ...
0
votes
1answer
237 views
Hide/disable sidebar using shortcode?
The question is pretty simple, but it's complex in fact.
I have implemented custom sidebars for each post/page function in my blog.
It looks like:
<div id="<?php echo ...
1
vote
1answer
406 views
Toggle Sidebar Display
I'm developing a WordPress theme that allows users to toggle the visibility of the sidebars using Javascript in the same way that wikis allow users to show or hide a table of contents.
When a user ...
0
votes
1answer
188 views
How to setup sidebar modules to use jQuery Accordian
To use jQuery UI accordion, I need markup like
<h3>Module 1</h3>
<div>
<!-- module content here -->
</div>
<h3>Module 2</h3>
<div>
<!-- ...
-2
votes
1answer
105 views
Replacing static code in a template file with a sidebar and widgets?
I am new to WordPress and need help. I am currently working on the site http://ecentriconline.com/surferbeachfront.
On this page, I want to display the left hand side as a widget. Right now, the left ...