kimaniidaniel
Forum Replies Created
-
Forum: Plugins
In reply to: [JSON API] Submit_Comment does not work!Found the problem. It was the WP-SpamFree plugin, causing this. Thanks to this thread: http://wordpress.org/support/topic/error-posting-comments?replies=10
Forum: Plugins
In reply to: [JSON API] Submit_Comment does not work!Does the submit_comment only work when the user is logged in?
Forum: Plugins
In reply to: [JSON API] get_recent_posts no longer working.After some tracing and debugging the plugin seems to be breaking here
SON_API_Introspector->get_posts
particularly on the line “$new_post = new JSON_API_Post($post);”. It doesn’t get past that line.Any ideas?
Forum: Plugins
In reply to: [JSON API] get_recent_posts no longer working.Since this was working yesterday and stopped working today, I decided it’s possible because of a specific post so I decided to pull each post from yesterday to today via json api to see if it would work, and I found a post that returns a blank page, not sure why that is: http://stlucianewsonline.com/api/get_post/?post_id=41978. I think something about that post is probably causing an issue with the plugin.
Forum: Plugins
In reply to: [eShop] Email confirmation on purchaseWhich leads me be believe that something is setup wrong, because I got no email (apart from paypal confirming the purchase) and had to manually move the sale to Active. Any ideas why this would happen?
Forum: Plugins
In reply to: [eShop] Email confirmation on purchaseOoohh.. I thought it was automatic, so someone has to manually move the sale to Active for the customer to get an email confirmation? Can this be automated? And how does Paypal contact eShop?
Forum: Plugins
In reply to: [eShop] Get product informationThanks, this worked!
Forum: Plugins
In reply to: [CampTix Event Ticketing] Link to a specific ticketSo there’s no work around? So this plug was designed for one event with multiple types of tickets?
Thanks for your quick reply, but i think I may have stated the problem wrong. I want the popup to occur on post pages ONLY, NOT on the front page.
Forum: Plugins
In reply to: [Search & Filter] Search selections not showing after searchYou’re correct, a normal select should only have one set as default, I was confused for awhile too. I guess its one of those really strange anomalies.
No prob… thanks for an AWESOME plugin!
Forum: Plugins
In reply to: [Search & Filter] Search selections not showing after searchAfter debugging your code i solved the problem, let me explain what i found:
This was all done in search-filter.php
In the function set_defaults() you’re building an array variable ($tags[]) of options selected found in $wp_query->query which is fine. Where this goes bad I’m not too sure but it seems that for some of the selections it’s not resetting this array variable, instead its adding to it. So the selections from prior selections are getting mixed with the current one its processing. (Note: I can’t figure out why this is happening, its just what I observed). So to fix this I turned to the part of the code that actually determine which default option to SELECT on the dropdowns which is the function dropdowns – generate_wp_dropdown. In that function you have this snippet of codeif (is_array($defaults)) { if (count($defaults) == 1) { $args['selected'] = $defaults[0]; } }The problem is it does not handle any arrays with count > 1 (which is the problem generated by set_defaults() above) So I added an else clause to set $args[‘selected’] to the last item in the array, and this solved the problem.
if (is_array($defaults)) { if (count($defaults) == 1) { $args['selected'] = $defaults[0]; } else { $args['selected'] = end($defaults); } }Maybe you can dig deeper and figure out where the real issue/bug is.
Forum: Plugins
In reply to: [Search & Filter] Search selections not showing after searchOk scratch what i just said concerning the Genders only in my last post. I played around with the search some more.
I noticed the following:
If i choose one category it retains the selection when the form reloads
If i choose two categories it retains one category selection
If i choose two categories and a search term it retains the search term and one category selection.
It NEVER retains the last category selection unless its the ONLY one chosen
On every search I see the correct selections in the URL and the search yields the correct results, I think the issue is how you’re processing the data to rebuild the search form.It is VERY important to show the customer their current selection.
Can you have a look at the search again. ThanksForum: Plugins
In reply to: [Search & Filter] Search selections not showing after searchOk so when I removed the “$this->set_defaults();” and add “add_action(‘wp’, array($this,’set_defaults’));” to the __contruct, none of the selections are retained except the search term. I played around with the search a few times and it seems that the original issue (before I made your change) is ONLY on the “Genders” select box, which is really strange.
Any more ideas?
I SO LOVE THIS PLUGIN, but can you add the following?
1. A date picker (pop-up calender)
2. Capcha