Closed GoogleCodeExporter closed 9 years ago
Thanks for letting us know. This sounds like something that would be better
dealt with on their end. Did you notified them?
Original comment by eugene.m...@gmail.com
on 17 Jan 2012 at 9:22
naturally I notified them, but they did not commit to fixing it, at least not
in the way I suggested, so I reported it here as a service to anyone having the
same problem
Original comment by yitw...@gmail.com
on 17 Jan 2012 at 9:44
If you can provide a link to the thread where you posted over there. I'll join
the discussion.
Original comment by eugene.m...@gmail.com
on 17 Jan 2012 at 10:11
http://code.google.com/p/wp-e-commerce/issues/detail?id=564#c11
but you could have found it by googling--i did. And thanks, but have to warn
you, it's an old discussion i haven't kept up with since my clients tend to use
Shopp rather than e-commerce.
Original comment by yitw...@gmail.com
on 17 Jan 2012 at 11:01
Thanks! I appreciate the report and the link.
Original comment by eugene.m...@gmail.com
on 18 Jan 2012 at 2:37
[deleted comment]
This is really good to know. There have been several threads in the forum with
people wondering where the sidebars went.
The solution is simple. Remove the action and add it back again with a lower
priority. Easily done in a child theme like so:
function switch_ecommerce_actions() {
remove_action('template_redirect', 'wpsc_all_products_on_page');
add_action('template_redirect', 'wpsc_all_products_on_page', 15);
}
add_action('init','switch_ecommerce_actions');
Original comment by invistr...@gmail.com
on 26 Jan 2012 at 9:07
Originally we had the widgetized areas assign action hooks during widgets_init.
The result was conditional tags didn't work to un/re-hook. We then introduced
thematic_connect_functions() and hooked it to template_redirect; but that was
not the best choice noting the case in point.
wp_head is a more appropriate hook for thematic to be using for this.
This bug should now be fixed in r832
Original comment by eugene.m...@gmail.com
on 6 Feb 2012 at 10:53
Original issue reported on code.google.com by
yitw...@gmail.com
on 26 Aug 2011 at 7:55