purlogik
Forum Replies Created
-
Update: I re-installed 0.9.9.0 and my visitors are being tracked again… Any ideas? Is this a known issue with 0.9.9.1?
Btw, I’m using Piwik 1.11.1
My apologies, I forgot about this thread… the new version does in fact work fine, thank you!
Figured it out…
In the Piwik Settings tab, I had entered the base URL without “http://”
It seems like I found a solution. Open the file wpi_ajax.php and delete line 308 as shown here:
$headers = "From: ".get_bloginfo()." <".get_bloginfo('admin_email').">\r\n";Then, replace with all of this:
global $wpi_settings; $name = stripslashes($wpi_settings['business_name']); $from = stripslashes($wpi_settings['email_address']); $headers = "From: {$name} <{$from}>\r\n";Let me know if that works for you.
I have the same problem, and it appears to be in the file wp-invoice/core/wpi_ajax.php on line 308:
$headers = “From: “.get_bloginfo(). <“.get_bloginfo(‘admin_email’).”>\r\n”;
I’m not sure how to change it so that it uses the info from the WP-Invoice settings page.
Forum: Plugins
In reply to: [Plugin: Sidebar Login] Log in form disappeared from home page after updateIf you have Super Cache (or a similar plugin) installed, you probably need to clear your cache.
Forum: Plugins
In reply to: [Plugin: Register Plus] Option For User to Change Passwordthanks for the suggestion. i did see that plugin, but i didnt like that subscribers would still see the wordpress-styled admin page.
actually, i found a solution that does work for my purposes. The Theme My Profile plugin allows access to profile info without loading the admin page. this means i can still use DDHideAdmin and redirect subscribers to my home page after they register. then, using the Sidebar Login plugin, i added a link to their themed profile so they can change their password, info, etc.