VFHwebdev
Forum Replies Created
-
Forum: Plugins
In reply to: Post Type Switcher Bug With Advanced Custom FieldsThanks marcosf that did the trick and it keeps me from having to edit the plugin files.
The only drawback is remembering to add that the functions.php file for any themes used on sites that use both plugins.
Many thanks!
Forum: Fixing WordPress
In reply to: Excerpt field missing from adminOn further inspection this seems to be related to the Advanced Custom Fields plugin. Disabling that plugin brings my excerpt field back. Re-enable the ACF plugin and they go away again.
It looks like somehow the excerpt option got unchecked on some of my custom field groups. There was an ACF update this morning. Perhaps it happened then.
Forum: Plugins
In reply to: Post Type Switcher Bug With Advanced Custom Fields“you can manipulate them here with the filter instead of hacking the plugin”.
Can you help me understand what you mean? I’d love a solution that doesn’t involve hacking either Post Type Switcher or Advanced Custom Fields.
Both plugins work as expected alone. But PTS seems to make ACF set the post_type of custom fields to ‘post’ rather than ‘acf’ as it supposed to.
This doesn’t happen when a custom field is first created, but when the field is edited.
If there’s a solution that doesn’t involve hacking Post Type Switcher please let us know. These are both very popular (and useful) plugins and it would be great if they could work together.
Forum: Plugins
In reply to: Post Type Switcher Bug With Advanced Custom FieldsIf you update to Post Type Switcher 1.1 this problem will come back. The piece of code that you need to edit has changed.
Take a look at line 58:
$args = (array) apply_filters( ‘pts_post_type_filter’, array(
‘public’ => true,
‘show_ui’ => true
) );and change this to:
$args = (array) apply_filters( ‘pts_post_type_filter’, array(
‘show_ui’ => true
) );That seems to work.
Forum: Plugins
In reply to: Post Type Switcher plugin post_type bugMany thanks for the fix! What about the issue with Post Type Switcher and Advanced Custom Fields?
http://wordpress.org/support/topic/post-type-switcher-bug-with-advanced-custom-fields?replies=5
Forum: Plugins
In reply to: Post Type Switcher Bug With Advanced Custom FieldsI did some more testing. The issue with revisions having their post_type set to post appears to be a bug with Post Type Switcher itself.
If doesn’t arise from a combination with ACF nor is it a result of the code modification suggested above.
I’ll start a new thread.
Forum: Plugins
In reply to: Post Type Switcher Bug With Advanced Custom FieldsI seem to be having a similar problem with revisions now. Revisions are getting set with a post type “post” instead of “revision”. This only seems to be happening on the blogs that have ACF and Post Type Switcher enabled.
Forum: Fixing WordPress
In reply to: password protected page redirects to admin loginDoh! Answered my own question.
My theme had a custom password form created via a filter in functions.php
That form had a hard-coded action that was using the address of the primary site.
I changed this to
<form action="'. get_site_url() .'/wp-pass.php" method="post">And all is good.
Forum: Plugins
In reply to: [Link to Post] [Plugin: Link to Post] Link2post to support Custom Post Type?I agree. Looks like a great plugin, but without custom post type support it won’t work at all for me.
Forum: Fixing WordPress
In reply to: Is it possible to get only the content after ?That worked perfectly! I thought about trying something like that, but when I viewed my code on my WP generated pages, the <!–more–> tag didn’t show up in the content so I figured it wasn’t being returned in the post_content. I guess it is! Sweet!
Many thanks.
Forum: Networking WordPress
In reply to: multisite issue with new subscribersThe experience this creates for subscribers is as if they’ve created an account on ebay.com and are then redirected to apple.com to reset their password. It doesn’t make any sense.
I can’t imagine I’m the only person this would be a problem for. Anyone using WP multisite with a required login on any of their sites would run into this.
I think all it would take is in the email that wp-login.php creates, rather then send a password reset link to the main site defined by the admin at installation, it sends a reset link to the users primary site.
Perhaps this can be done via a plugin, but it seems like the default WP behavior doesn’t really make sense and should be changed.
Forum: Networking WordPress
In reply to: multisite issue with new subscribersYikes! Thanks for letting me know, but that’s actually a real problem for me.
Users who subscribe to one of my sites have probably never even heard of the others. When they try to recover their password they get really confused because they’re directed to a site they know nothing about and don’t have any links to get them back to some place familiar.
If a user has a site defined as their “primary” site, is there any way to make that their default link for things like password recovery?
Forum: Fixing WordPress
In reply to: Enabling multi-site in 3.0 stuck in login loopClosed my browser, reopened and now I can log in.
Forum: Fixing WordPress
In reply to: upload/insert not working after 2.8 updateProblem plugin seems to be Podpress.
Forum: Fixing WordPress
In reply to: upload/insert not working after 2.8 updateYes. I deactivated all plugins before running tools->upgrade.
I’m beginning to suspect a plugin incompatibility. With all the plugins deactivated, the upload/insert functions properly.
Next I have to track down which plugin is the problem.