Malcolm Streeton
Forum Replies Created
-
OK I just realised what happened. They had moved the secondary widget area at the side to the main one at the bottom and that styles them very differently. The different tyle is actually normal for 2013 and did not come from the 2021 theme.
Sorry I mean the widget area, I didn’t realise the sidebar was something different.
I didn’t remove or change any widgets. They are still there and working after switching back to 2013, just they have moved from the side to the bottom and they have the styling from 2021 them.Thanks, but not that.
I did not do anything other that change theme, have a look at it and change back. I did not add any plugins or change any setting.
Forum: Fixing WordPress
In reply to: Passing URL arg with permalinksMarius
Thanks that solved the problem.Forum: Plugins
In reply to: [GNU-Mailman Integration] User Profile edit brokenWould not pick up current subscription
It was not picking up current list subscriptions. After some investigation I found that it was not getting a match in the function:
_mailman_get_subscription()
in the statement:
if (preg_match(‘/INPUT .*name=”‘ . $str_email . ‘_unsub”/i’, $httpreq->data))
Changing $str_email to be the email address without reformatting made it work. i.e I replaced:
$str_email = preg_quote(urlencode($this->_emailAddress));
with:
$str_email = $this->_emailAddress;Any idea why this would be the case?
Obviously this worked for other people.The mailman server is version 2.1.2.
Forum: Hacks
In reply to: Reset password cookie from PluginThanks. However if I read it correct the load_page hook only relates to admin pages.
I have the user profile on a normal page as I want to hide the wordpress admin area from the user.