donnytree
Forum Replies Created
-
Forum: Plugins
In reply to: [Instant Articles for WP] Advanced Settings not showing up after updateSame problem here, WP 4.6.1. Thanks!
Hey Grant,
Updating to 3.1.3 removed this error for me. Looks like there’s another update now too, hopefully this doesn’t break it again!
Thanks,
DonnaForum: Plugins
In reply to: [User Role Editor] add/remove Categories and TagsHi Vladimir,
Thanks so much for this. However, users are still not able to see or edit Categories and Tags when they make a revision to a published post. In the instructions/recipe you sent it still says: “You should remove ‘publish_posts’ capability from your users, otherwise user can to publish pending post himself again.” This seems to be the key to the problem. If they can publish, then in a revision they can see the Category and Tag boxes, if they cannot publish, then they cannot, even though in the “Screen Options” the boxes are checked off.
Right now, without the published_to_pending function, my editors (Contributor level) cannot publish, they always have to submit for revision. However, once they’ve created a post, they lose the ability to make subsequent changes to the Categories and Tags. I’m not sure I am explaining it well.
Any help is greatly appreciated, thank you so much!
DOnnaSame issue as above, WP 4.6 and updated to 3.1.2. Thanks!
Forum: Plugins
In reply to: [The Events Calendar] $has_venue_address not working on home pageI meant to add, that the “Working” code is from /tribe-events/single-event.php. Thank you!
Thanks niccigilland, I was hoping to not have to do that, but it looks like it might be the only way. Thank you!
Hello,
I am having the same issue after updating from 0.5.8 to 0.6.0, I am on the most current version of WP.
After the update this code:
<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?> <?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'in [entry-terms taxonomy="category" before=""] [entry-edit-link before=" · "]', 'origin' ) . '</div>' ); ?>no longer works and it just shows:
[entry-title]
in [entry-terms taxonomy=”category” before=””] [entry-edit-link before=” · “]I have many many custom pages in my child theme, will this be fixed in an update?
Thank you!
DonnaForum: Plugins
In reply to: [User Role Editor] Editing Scheduled PostsI am also looking for a way to allow the Contributor role to edit future dated (scheduled) posts. We future date our events and I make these visible to the public in an upcoming events feed. But adding the edit_published_posts capability does not allow them to edit scheduled posts.
Thank you in advance and thank you for the awesome plugin!
Forum: Plugins
In reply to: [WP Posts Carousel] change category to custom field?Perfect, thanks so much!
Forum: Plugins
In reply to: [WP Posts Carousel] change category to custom field?Would the idea be to use this in the functions.php file to overwrite?
No fuss really, it just broke my entire site because of the negative interaction between the other plugin I was using for this purpose. Disabling the other plugin didn’t make the new functionality offered by Yoast SEO magically work, so I had to do a lot of troubleshooting before I was able to determine what was going on.
I think people should choose whatever works best for them, I just thought the plugin authors (and others) might like to know.
Forum: Plugins
In reply to: [WP Category Permalink] primary category not working and showing in redAwesome, thanks so much for all!
Forum: Plugins
In reply to: [WP Category Permalink] primary category not working and showing in redOne other note, I have to go back in and re-set all of the primary category links, but now things seem to be functioning again.
This new functionality also interacts badly with WP Category Permalink plugin. I disabled the Make Primary and now the plugin seems to be working, but I have to go back in and re-set all of the primary links. Anyway, just something that the plugin authors might want to take into consideration. Thanks!
Forum: Plugins
In reply to: [WP Category Permalink] primary category not working and showing in redHi Jordy,
I just figured it out, it’s the new Yoast SEO plugin “Make Primary” functionality that is interacting with your plugin. I added the following to the functions.php file:
/** * Disable the WPSEO v3.1+ Primary Category feature. */ add_filter( 'wpseo_primary_term_taxonomies', '__return_empty_array' );And now it seems to be working again.