EFindlicher
Forum Replies Created
-
Jason-
It was initially on trying to send, and then upon trying to re-authenticate. Just ran connectivity test, and you’re correct, it looks like it can’t connect on port 443. Must have been a change in the hosting configuration, I’ve reached out to them for assistance.
Thanks for the help!
Jason-
From my initial post:
“I tried re-verifying one of them through the developer interface, and it also timed out” – that’s referring to trying to grant OAuth permission. It times out when attempting to do that, so it’s not possible to complete authorization.OS: Linux cloud.klenhost.com 2.6.32-531.29.2.lve1.3.11.1.el6.x86_64 #1 SMP Thu Dec 18 06:49:17 EST 2014 x86_64
HTTP User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.61 Safari/537.36
Platform: PHP Linux 5.4.40 / WordPress 4.2.2 en_US
PHP Dependencies: iconv=Yes, spl_autoload=Yes, openssl=Yes, sockets=Yes, allow_url_fopen=Yes, mcrypt=Yes
WordPress Plugins: Disable Comments, Duplicator, Email Log, Exclude Pages from Navigation, Gravity Forms, New RoyalSlider, Postman SMTP, Quick Page/Post Redirect Plugin, Really Simple CAPTCHA, Regenerate Thumbnails, Search & Replace, Shadowbox JS, Slickr Flickr, Wordfence Security, WordPress SEO, WP-PageNavi, WP Super Cache
WordPress Theme: Portopia
Postman Version: 1.6.22
Postman Sender Domain: gmail.com
Postman Transport URI|Force Email|Name: smtp:tls:oauth2://smtp.gmail.com:587|No|No
Postman Transport Status (Configured|Ready|Connected): Yes|No|Yes
Postman Deliveries (Success|Fail): 121|8
Postman Bind (Success|Fail|Path): No|No|/home/gofun/public_html/wp-includes/pluggable.php
Postman TCP Timeout (Connection|Read): 60|60
Postman Email Log (Enabled|Limit|Transcript Size): Yes|10|128
Postman Run Mode: production
Postman PHP LogLevel: 40000
Postman Stealth Mode: No
Postman File Locking (Enabled|Temp Dir): Yes | /tmpClaude-
Thank you for your prompt response. Does this go for updates from a business as well? In other words, if I were to purchase your LinkedIn for Business plugin, owuld I be able to display updates from a business page?
Thanks!
Forum: Plugins
In reply to: [Jigoshop] State tax calculation issuesOlaf-
Has there been any progress on this issue?
Thanks!
MichaelForum: Plugins
In reply to: [Jigoshop] State tax calculation issuesOlaf-
I pulled the cart customization code from functions.php in the theme, which removed the “update shopping cart” button.
Am I correct that this was just solving the update shopping cart issue, and not the tax problem?
Thanks!
Forum: Plugins
In reply to: [Jigoshop] State tax calculation issuesDone. Same password.
Thanks!
Forum: Plugins
In reply to: [Jigoshop CSV Importer] price import don't workThe problem is that the plugin is using outdated field values.
If you’re feeling daring, in the Jigoshop-CSV-Importer.php file, remove the initial underscores in the update_post_meta block (e.g. “_visibility” becomes “visibility”) – doing that to all those lines will at least get the price and the SKU working properly. I’m not managing inventory on my site, so I also added:
update_post_meta( $post_id, 'stock_status', 'instock' ); update_post_meta( $post_id, 'manage_stock', '' );
Which makes them display as in stock by default.
This is such a simple fix, I wish the plugin author would take care of it.
Forum: Plugins
In reply to: [Jigoshop CSV Importer] SKU and stock wont' importI discovered the same thing. In the Jigoshop-CSV-Importer.php file, removing the initial underscores in the update_post_meta block at least got the price and the SKU working properly. I’m not managing inventory on my site either, so I also added:
update_post_meta( $post_id, 'stock_status', 'instock' ); update_post_meta( $post_id, 'manage_stock', '' );
Which makes them display as in stock by default.
This is such a simple fix, I wish the plugin creator would take care of it.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] {14} and {16} in listings post-updateI haven’t touched the site since posting yesterday, but it looks fine now. Magic!
Forum: Hacks
In reply to: Expand search to include post ID?Found a way to do the ID search before the rest of of the results are displayed, using this:
$s = $_GET[s]; if(is_numeric($s) ) { //echo ("we've got a numeric string!<br />"); $id = $s; if($id) { $rel_post = get_posts('p='.$id.'&post_type=cardealer') ; if($rel_post) : ?> <!-- we've got an id! --> [display the data for that trailer] <?php endif; ?> }
Still, if anyone knows how to include that along with the rest of the search results, it would be great for future reference!