working-together
Forum Replies Created
-
Forum: Plugins
In reply to: [SearchAutocomplete] Changing to alphabetical order…..This is what I ended up doing per the link above.
I added sort($newResults); return $newResults; to the filter.
Forum: Fixing WordPress
In reply to: Compare strings with meta_queryI had the idea to try to use explode() to make my string into an array of values and then use the IN operator. It doesn’t seem to work at all and I wonder if it is because the array has keys.
$city_state_zip = explode(” “, $city_state_zip);
‘meta_query’ => array(
array(
‘key’ => ‘My_key’,
‘value’ => $city_state_zip, //not sure if this would excepts this sort of array.
‘compare’ => ‘IN’
)Not sure if this sort of thing is possible.
Forum: Fixing WordPress
In reply to: hyphen instead of underscore for post typeThanks. From the themes I have looked at they seem to use the underscore more than the hyphen. I use the hyphen mainly because it saves me doing the rewrite setting for the slug, which I want it to be a hyphen.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Placeholder for IE suggestion..Sweet. I think you implemented it better than I have with the conditional.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Name split…Great. Thanks for the follow-up!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Name split…I believe it happened from the last version to the latest version. Maybe it was a fluke. I just wanted to give you a heads up just in case someone else says something similar. It took me awhile to realize the little check box was gone and something was up.
The site isn’t public yet, but below is the source code output. Everything looks normal.
<!-- Form by MailChimp for WordPress plugin v1.4.2 - https://dannyvankooten.com/mailchimp-for-wordpress/ --> <form method="post" action="#mc4wp-form-1" id="mc4wp-form-1" class="mc4wp-form form "><div class="controls controls-row"> <input class="span6" name="NAME" placeholder="Name" type="text"> <input class="span6" required="required" placeholder="Your Email" name="EMAIL" type="email"> <p><input value="Send" type="submit"></p> </div><textarea name="mc4wp_required_but_not_really" style="display: none;"></textarea><input type="hidden" name="mc4wp_form_submit" value="1" /><input type="hidden" name="mc4wp_form_instance" value="1" /><input type="hidden" name="mc4wp_form_nonce" value="9aab2a77a8" /></form> <!-- / MailChimp for WP Plugin -->
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Name split…Yeah. The email goes through but FNAME and LNAME are left blank. Maybe I will cheat and just use FNAME and label it Name on my form.
BTW,not sure this is a bug or it is just me, but I noticed that when I upgraded your plugin, the check box for adding a Mailchimp list disappeared. Then the message appeared under my form that I needed to add a list. I had to unintsall and reinstall the plugin to get the check box to come back.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Placeholder for IE suggestion..Hey, I just used this one and it worked well.
LOL. The height thing worked for me. I did read that awhile back on a forum and was like, it can’t be that simple. So, was too focused on looking for some other issue. Thanks!!
Tested on latest version on WordPress and works for me. If it doesn’t show-up at all, most likely Jquery is not being called correctly in the header, or possibly loading two versions at the same time.
I use this in my header: <?php wp_enqueue_script(‘jquery’); ?> .
Yeah. Let me know if you find anything. Haven’t been able to fix it for IE8 and below yet. Although, I have tried all the header stuff that is pretty much commented on all over the place.
May just try and code Nivo Slider manually into the theme. Maybe that will be better. I do like the plugin as it is pretty straight forward if I could get it to work for IE.
Forum: Localhost Installs
In reply to: Theme corruption?Ah. I got it. It looks like the commenting on the top of the header.php was screwy so it was pulling into the top before the doctype and messing stuff up.
Interesting that the screwiness only showed up as it did.
Forum: Localhost Installs
In reply to: Theme corruption?Yes.
It is worth noting that I have a local install of the theme at home that looks fine. When I make dev changes I upload the new stylesheet etc. to the server.
The weirdness happens if I download the theme from the server and try to use it on a new local installation.
If I transfer the theme from my man local install (which should be the same as the one on the server) on a USB stick and then transfer it to a new computer with a xampp installation it works fine.
Something seems to be happening when I try to download the theme from Filezilla. It’s strange to me.
I’m testing on new installations trying both the Twenty Ten and Twenty Eleven themes there are no other plug-ins.
As of yesterday, I actually tested the search on the Denali Theme Demo that is on your website. However, that didn’t seem to work either. It always pulled up ALL the properties no matter what you searched for.
It seems this may be an issue.
I have tried to sign-up on your forum, but never receive the activation mail.
Forum: Themes and Templates
In reply to: Wrapper, Container, Divs question..Yeah. I normally just use the Body tag for background and things. However, I can see how having the extra wrapper gives you more flexibility. Seeing that I am making a basic framework that is flexible to skin with graphics, maybe I will add it to give it flexbility.
Strange with width differences I am seeing. I’ll firebug it more.
Thanks.
Forum: Plugins
In reply to: [Easing Slider] [Plugin: Easing Slider] JQuery question…Man, that was it! Indeed the Jquery call was falling below the Easing Slider call.
For me, I decided to set the Easing Slider call for Jquery to false and then simply repositioned the jquery.1.4.2.js toward the very top.
It may have just been the way the theme I bought was developed. However, I am betting this little tidbit will help other also.
Thanks!!