Alkorr
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast Duplicate Post] How to allow a specific user to duplicate?I’ll do that, thank you very much for your help, and for this great plugin 🙂
Forum: Plugins
In reply to: [Yoast Duplicate Post] How to allow a specific user to duplicate?Thanks a lot! But I wish I could only create a capability for your plugin without having to create a whole new role… Do you think Members would allow to create a capability for your plugin?
Forum: Fixing WordPress
In reply to: Query Posts WITHOUT Featured ImageHi Shobhit, thank you, it works but there is a downside to this code: not all my posts have a featured image, so I have a first loop in which I show 2 posts containing a featured image. It works fine. Now when I use your code to show 2 other posts with no featured image, I have to query 4 posts to get 2 showing… I guess it’s because your code ‘skips’ the posts with the featured image to only show the ones without it. If I query 2 posts, only one is showing. And since I’m not a coder, I have no idea how to make the query work properly.
Thanks again for your help 😉
Forum: Plugins
In reply to: [Yoast Duplicate Post] How to allow a specific user to duplicate?Hi Lopo, thanks for your quick reply. I’m using Role Manager not Members, do you know how I could do that?
- This reply was modified 9 years, 7 months ago by Alkorr.
Again, thank you very much for being so attentive to the requests regarding your -already- great plugin! 🙂
Forum: Plugins
In reply to: [Rotating Tweets (Twitter widget and shortcode)] How to show Lists Members?Thank you for considering it! 🙂
Forum: Plugins
In reply to: [WP-PostRatings] Add ratings/review note in commentsOk, it’s still a great plugin anyway 😉
Forum: Plugins
In reply to: [Secondary Title] Secondary Title no longer shows in editorThat’s very nice of you thaikolja but I found a way to do it via Adminimize. I’ll keep your code for my other blog since it also works great. Thanks again for your great work on this plugin! 🙂
Forum: Plugins
In reply to: [Adminimize] How to hide/remove Yoast Meta Box for non-Admin Users?Hi Frank, thanks a lot, it works perfectly! And I just realized I tried (and succeeded) to do it for All in One SEO Pack a while ago… Thanks again for this great plugin and your quick reply!
Well, I checked again and besides messy code snippets to add to the functions.php file, the only solution to do that would be to install a plugin which will remove all Yoast-things… This is not what I want to do but if there is no way to hide/remove the Yoast meta box on Post Edit Page for non-Admin users, then I’ll do that…
Any alternate solution is more than welcome!
Forum: Plugins
In reply to: [Secondary Title] Secondary Title no longer shows in editorHi thaikolja, me again. It works fine except that now, the Visual Editor doesn’t show the content anymore for non Admin Users… Do you know why this code does that? Geez, it’s like the matryoshka nesting dolls, you just resolved a problem but another one comes up <:)
Forum: Plugins
In reply to: [Secondary Title] Secondary Title no longer shows in editorI modified the function using echo to make it work and now it does exactly what it was supposed to do, thanks to you! Thank you for taking the time to reply so quickly and so effectively, much appreciated! 🙂
Forum: Plugins
In reply to: [Secondary Title] Secondary Title no longer shows in editorThanks a lot thaikolja, this new function sounds great but it broke my site, I got an all white page… Maybe it has something to do with the <script> tag inside the PHP code?
The easier way would indeed be to use the Screen Options but it would be a ‘by user’ rule and I’d like it to be by default for every user.
Forum: Plugins
In reply to: [Secondary Title] Secondary Title no longer shows in editorYou’re welcome, here’s the whole function:
if ( !current_user_can('update_core') ) { function so_remove_wp_seo_meta_box() { remove_meta_box( 'wpseo_meta', 'post', 'normal' ); } add_action( 'add_meta_boxes', 'so_remove_wp_seo_meta_box', 100000 ); add_filter( 'wpseo_use_page_analysis', '__return_false' ); }Forum: Plugins
In reply to: [Secondary Title] Secondary Title no longer shows in editorAlright, I find out what caused Secondary Title field not showing anymore: it’s a code I added in my functions.php to hide Yoast meta box:
function so_remove_wp_seo_meta_box()I don’t know why it was the problem (I don’t code at all) but I removed it and now Secondary Title works perfectly again.
Sorry for the bother, your plugin is truly awesome and I appreciate a lot your quick reply! Thanks again 🙂