Elle
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Accessible] Creating Default Values for New SitesI second this suggestion! It would be nice if Genesis came accessible and someday that may happen. I find myself using multisite more and more and would like to have these features built-in. Once upon a time, Genesis went ‘responsive’, so they may be looking at accessibility now.
Thanks for your service to all of humanity.
It’s not active. Deleted before I noticed the problem. I also had ‘Downloads as Services’ in there but that is not active, either. I just resaved the permalinks and nothing.
I did not change that knowingly. My first post here mentions the slug for the image and title going to /purchases/etc instead of the link for the actual product at /downloads/etc
I had tried the add-on EDD Downloads Labels but it did not work correctly so I deleted it. Perhaps that plugin left some things behind. Where would I revert back to downloads?
Pip, no resolution to this yet. Have disabled all plugins, recreated cart products and still have the hinky urls. Had Debug on and saw 2 messages:
“Notice: wpdb::escape is deprecated since version 3.6! Use wpdb::prepare() or esc_sql() instead. in /home/xxxxxx/public_html/wp-includes/functions.php on line 3083”“Notice: get_current_site_name is deprecated since version 3.9 with no alternative available. in /home/xxxxxx/public_html/wp-includes/functions.php on line 3085”
Site is seattle iyengar yoga dot com
Let me know if I can provide any more information.### Begin System Info ###
— Site Info
Site URL: https://xxxxx.com/sea……oga
Home URL: https://xxxxxx.com
Multisite: Yes— User Browser
Platform: Windows
Browser Name: Firefox
Browser Version: 31.0
User Agent String: Mozilla/5.0 (Windows NT 6.1; WOW
64; rv:31.0) Gecko/20100101 Fire
fox/31.0— WordPress Configuration
Version: 3.9.2
Language: en_US
Permalink Structure: /%postname%/
Active Theme: Dynamik-Gen 1.6.1
Show On Front: posts
Remote Post: wp_remote_post() works
Table Prefix: Length: 6 Status: Acceptable
WP_DEBUG: Disabled
Memory Limit: 64M
Registered Post Stati: publish, future, draft, pending, private, trash, auto-draft, inherit, refunded, failed, revoked, abandoned, active, inactive— EDD Configuration
Version: 2.0.4
Upgraded From: 2.0
Test Mode: Disabled
Ajax: Enabled
Guest Checkout: Enabled
Symlinks: Disabled
Download Method: Direct— EDD Page Configuration
Checkout: Valid
Checkout Page: https://xxxxxx.com/register-class-workshops/checkout-2/
Success Page: https://xxxxxx.com/register-class-workshops/checkout-2/purchase-confirmation/
Failure Page: https://xxxxxx.com/register-class-workshops/checkout-2/transaction-failed/
Downloads Slug: /downloads— EDD Gateway Configuration
Enabled Gateways: PayPal Standard
Default Gateway: PayPal Standard— EDD Tax Configuration
Taxes: Disabled
Taxes Applied: Before Discounts
Tax Rate: 0
Display On Checkout: Not Displayed
Prices Include Tax: No
Taxes After Discounts: No— WordPress Active Plugins
Easy Digital Downloads: 2.0.4
— WordPress Inactive Plugins
Ajax Event Calendar: 1.0.4
Akismet: 3.0.1
Contact Form DB: 2.8.8
Domain Mapping plugin: 3.2.4.1
Easy Digital Downloads – Downloads As Services: 1.0.4
Easy Digital Downloads – Email Templates: 1.0.4
Easy Digital Downloads – Mail Chimp: 2.2.1
Easy Modal: 2.0.7
Events Manager: 5.5.3.1
Fast Secure Contact Form: 4.0.23
Genesis eNews Extended: 1.4.1
Genesis Simple Edits: 1.7.1
Genesis Simple Sidebars: 2.0.1
Imsanity: 2.2.6
Meteor Slides: 1.5.1
Plugins Enabler: 2.0
Scribe: 4.0.15
Simple Social Icons: 1.0.6
WordPress Importer: 0.6.1
WordPress SEO: 1.5.4.2
WP Help: 1.3— Network Active Plugins
Domain Mapping plugin: 3.2.4.1
Genesis Simple Edits: 1.7.1
Genesis Simple Sidebars: 2.0.1
Meteor Slides: 1.5.1
Plugins Enabler: 2.0
Fast Secure Contact Form: 4.0.23
Simple Social Icons: 1.0.6
WordPress Importer: 0.6.1
WP Help: 1.3— Webserver Configuration
PHP Version: 5.3.28
MySQL Version: 5.1.67
Webserver Info: Apache— PHP Configuration
Safe Mode: Disabled
Memory Limit: 256M
Upload Max Size: 128M
Post Max Size: 128M
Upload Max Filesize: 128M
Time Limit: 60
Max Input Vars: 1000
Display Errors: On (1)— PHP Extensions
cURL: Supported
fsockopen: Supported
SOAP Client: Installed
Suhosin: Not Installed— Session Configuration
EDD Use Sessions: Disabled
Session: Disabled### End System Info ###
Sorry, no, already tried that.
This came up in the error log. It is not showing on the site.
Full text:
[28-Jul-2013 23:57:17] PHP Catchable fatal error: Object of class stdClass could not be converted to string in /home/xxxxxxx/public_html/wp-content/plugins/wp-slimstat/wp-slimstat.php on line 1007Line 1007 says:
‘ip_lookup_service’ => ‘https://www.infosniper.net/?ip_address=’,In the settings panel, the IP lookup address is the same.
Thanks for your help with this. Been receiving the same error since July 7.
Hi, Camu,
Using 3.2.5 and WP 3.5.2. Still receive this error. Any other ideas?Forum: Plugins
In reply to: [Event Calendar] Short Code Does not Always Display the Next Couple of EventsHi, Chris,
Thanks so much for posting here! I can’t tell you how appreciative I am that you took the time to not only post the bug, but to provide a solution for it.I added this at line 793:
$limit = $limit *7; // temp bugfix add this to increase limit here $events = $this->db_query_events($start, $end, $categories, $excluded, $limit); $limit = intval($limit/7); // temp bugfix add this to restore limit
Adding that code didn’t do the trick but I noticed that the second line of your code was repeated below it. So I deleted the second instance of this:
‘$events = $this->db_query_events($start, $end, $categories, $excluded, $limit);’So for those like me who are not schooled in php, this is the way the code changes given by you should look:
Line 793: $limit = $limit *4; // temp bugfix add this to increase limit here
Line 794: $events = $this->db_query_events($start, $end, $categories, $excluded, $limit);
Line 795: $limit = intval($limit/4); // temp bugfix add this to restore limit
Line 796: $events = $this->process_events($events, $start, $end, true);
and on….This is the shortcode used:
[eventlist limit=7 whitelabel="true" categories="1,2,3,4"]
Note that I changed the code to $limit *7 because I was using 7 events – I’m not sure if that matters. This fix you posted did not affect any other eventlist instance used on the site.
Again, thanks so much! You’re a genius!
Forum: Plugins
In reply to: [Event Calendar] Short Code Does not Always Display the Next Couple of EventsI see you have resolved this somehow. I am having the same problem when I use more than one category to draw from. A list of classes – first two are yesterday, next occurrences show next week instead of starting with today and listing from there.
This is the shortcode I tried:
[eventlist limit=7 whitelabel="true" categories="1,2,4" end="+2 Days"]
Actually I tried every variation of start and end, categories, etc. The only one functioning properly is
[eventlist limit=7 whitelabel="true" categories="1"]
I have not tried disabling plugins yet to find any conflicts. Did you?
Having the same issue and just after updating to the latest version. Dropbox has apparently issued a new version which BackWPUp is seemingly not compatible with. Change occurred March 4th. Please fix. Dropbox is so much better than saving a huge backup file to the site host. Plus this plugin does such a great job cleaning up the database!
Hi, David,
I found the problem. I am trying to use the SP icons. When I checked the plugin image folder, the images are empty. The file names are in there, but there are no pngs for the icons.I have actually created new icons to color match the site I’m building, but thought you might want to know this.
User @hoppy4 issue could be resolved! (was a folder named uppercase…)
I’m using Prose also – can you elaborate on the folder issue?
Thanks for a very nice plugin, by the way!
Forum: Plugins
In reply to: [SlimStat Analytics] [Plugin: WP SlimStat] Visual Chart Stopped WorkingHeat maps? Hey, are you going to be able to track our movements across the planet?
I agree with you Mr Eddy. SlimStats are the supreme reporter. More information than I can even understand so it’s become a learning tool for me, too.
Forum: Plugins
In reply to: [SlimStat Analytics] [Plugin: WP SlimStat] Visual Chart Stopped WorkingCamu, thanks for the quick response. The dashboard widget does not appear to be functioning correctly – the only box recording information is the Summary for the Month. All other boxes are empty although visits are being recorded in the main panels. I’ve disabled all other plugins and it did not change the dashboard widget results.