Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
362 views
in Q2A Core by
Hi,

i add Tag Clud on my Sidebar i cant see the Tag Cloud in GreenTheme Layout !!

 

Classic i see my tag widgets

Please help to fix the GreenTheme bug
Q2A version: 1.6 Final

1 Answer

0 votes
by

fix:

in GreenTheme/qa-theme.php you replace the entire function sidepanel() with:

function sidepanel() { 
    $this->output('<DIV CLASS="content-flow"><DIV CLASS="content-top"></DIV><DIV CLASS="content-wrapper"><DIV CLASS="qa-sidepanel">'); 
    $this->widgets('side', 'top'); 
    $this->sidebar(); 
    $this->widgets('side', 'high'); 
    $this->nav('cat', 1); 
    $this->widgets('side', 'low'); 
    $this->output_raw(@$this->content['sidepanel']); 
    $this->feed(); 
    $this->widgets('side', 'bottom'); 
    $this->output('</DIV>', ''); 

 

...