danielchopkins
Forum Replies Created
-
So I had Phillip run through that FAQ awhile ago because I saw you post it in another thread.
He sent this email:
OK, I’m in my Facebook account, go to settings, apps, apps others use, then I click on the box next to “Posts on my timeline” and then “save.”
If I then refresh the page (or even not) and then click again on “Apps Others Us” the box is now unchecked for “posts to my timeline”.
Any thoughts on that one? Seems odd to me.
Forum: Fixing WordPress
In reply to: Remove Featured Image link not workingI agree that it is strange. The one that is hidden works, but the visible one does not. Everything is up to date and compatible. I need to keep digging into this.
Forum: Fixing WordPress
In reply to: Remove Featured Image link not working@borko, I can’t switch. This is in production, and it’s not happening with my local copy.
Forum: Fixing WordPress
In reply to: Remove Featured Image link not workingForum: Fixing WordPress
In reply to: Remove Featured Image link not workingThis is core WordPress for a blog post.
From the developer of the Google Apps plugin:
“The Login plugin hooks into the ‘authenticate’ filter, and correctly returns a WPError object in the case where the user is not in the correct domain. I haven’t had a chance to look into too much detail at WP All In One Security, but it would appear that the plugin is disregarding our WPError object when it should be returning it higher up the chain to WordPress.”
Looks like it’s just generating a new
WP_ERROR
. I also emailed the Google Apps plugin developer about this as well.Hopefully, I can find out more info.
Forum: Plugins
In reply to: [Simple Post Expiration] Change post status after post expiresThat’s what I ended up doing.
add_action( 'update_job_status', 'job_status_function' ); function my_activation() { if (!wp_next_scheduled('update_job_status')) { wp_schedule_event( time(), 'daily', 'update_job_status' ); } } add_action('wp', 'my_activation'); function job_status_function() { global $post; $args = array('post_type' => 'job', 'posts_per_page' => -1, 'orderby' => 'menu_order', 'order' => 'ASC'); $jobs = new WP_Query($args); if ($jobs->have_posts() ) { while ($jobs->have_posts()) { $jobs->the_post(); if ( get_post_meta( $post->ID, 'pw_spe_expiration', true ) ) { $post = array( 'ID' => $post->ID, 'post_status' => 'draft' ); wp_update_post($post); echo "hello"; } } } }
Forum: Plugins
In reply to: [Contact Form 7] Send multiple emails with slightly modified email bodiesWhat would that look like?
add_filter('wpcf7_additional_mail', 'my_wpcf7_additional_mail'); function my_wpcf7_additional_mail { if ( ( $mail_3 = $contact_form->prop( 'mail_3' ) ) && $mail_3['active'] ) { $additional_mail['mail_3'] = $mail_3; } }
But that can’t be right because this wouldn’t add a meta box to a form or save the data of that meta box.
Forum: Plugins
In reply to: [Contact Form 7] Send multiple emails with slightly modified email bodiesIs there a way to hook into
wpcf7_save_contact_form
?I figured out what I need to do in order for this to work.
Basically, I need to duplicate all of the mail(2) functionality and make a mail(3).
Forum: Plugins
In reply to: [Contact Form 7] Send multiple emails with slightly modified email bodiesI don’t think that’s what I’m looking for.
I need to send one form, but have three different emails sent. For instance:
email one to recipient one:
Different first line for email one.
[all-fields]
email two to recipient two:
Different first line for email two.
[all-fields]
Etc.
Does that make sense?
Make sure to clear your cache after you delete the plugin. That should cause your feed to work again.
Forum: Plugins
In reply to: [Twitter Embed] Twitter Embeds – doesn't working with WordPress 3.8Same issue as OP. Youtube embeds work, and Twitter embeds worked until recently. Nothing else has changed. What’s the deal.
Here’s my blog with a post that uses embedded tweets. This worked before.