neefje
Forum Replies Created
-
Hi Tom,
Thanks for the fix. Got it to work again:
/** * Return the Javascript to kick off the slider. Code is wrapped in a timer * to allow for themes that load jQuery at the bottom of the page. * * @return string javascript */ private function get_inline_javascript($type, $identifier) { $retVal = "\n<script type='text/javascript'>"; $retVal .= "\n var " . $identifier . " = function($) {"; $retVal .= "\n $('#" . $identifier . "')." . $type . "({ "; $retVal .= "\n " . $this->get_params(); $retVal .= "\n });"; $retVal .= "\n };"; $retVal .= "\n var timer_" . $identifier . " = function() {"; $retVal .= "\n if (window.jQuery) {"; $retVal .= "\n if (jQuery.isReady) {"; $retVal .= "\n " . $identifier . "(window.jQuery);"; $retVal .= "\n } else {"; $retVal .= "\n window.setTimeout(timer_" . $identifier . ", 100);"; $retVal .= "\n }"; $retVal .= "\n };"; $retVal .= "\n }"; $retVal .= "\n timer_" . $identifier . "();"; $retVal .= "\n</script>"; return $retVal; }
Hi Tom,
Thanks. I haven’t edited anything. Updated some plugins today, but removed them to test if any of them were causing the problem.
Only the first & is converted, not the second. Really strange. It just started tonight …
I’m having the same problem. In the root of my website a directory is made called: BP_AVATAR_UPLOAD_PATH
When I rightclick my avatars when I upload the avatars the location is: https://mysite.com/wp-content/uploadsBP_AVATAR_UPLOAD_PATH
Anyone know where I can change the directory location of the avatars in Buddypress Links?
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size of … bytes exhausted – help?Same problem here. It started when I updated to version 3.3. I also have buddypress installed and the GD star rating plugin. Maybe my shared hosting isn’t sufficient enough with only 64MB memory?