Alkorr
Forum Replies Created
-
Forum: Plugins
In reply to: [Secondary Title] Can't search posts when plugin is activatedYes, my search works fine when I deactivate Secondary Title.
Did you make a search within the posts from the Admin page?
Weird indeed…
Forum: Plugins
In reply to: [Secondary Title] Hide Secondary Title Description ColumnHi thaikolja! The Author Column is back, great, thank you! 🙂
Forum: Plugins
In reply to: [Secondary Title] Hide Secondary Title Description ColumnBy the way, I just realized since the Secondary Title Column is showing, the Author Column is not anymore… Did you notice it too on your side?
Forum: Plugins
In reply to: Changing name value on Image DetailsI checked the translation file in case I could change it, but if I want to be sure it won’t change back to the original translated word, it would be best if the change is made through the functions.php file.
I’m afraid I can’t find another way, any help is welcome!
Forum: Plugins
In reply to: [Secondary Title] Hide Secondary Title Description ColumnRight, in fact I don’t like modifying files, either WP Core Files or the ones from a plugin. The only files I usually modify are the ones from the theme.
I’ll try the solution you suggested, and if the new filter hook is added to the new version, them it will be the perfect plugin to me.
Thank you very much for your quick replies! 🙂
Forum: Plugins
In reply to: [Secondary Title] Hide Secondary Title Description ColumnHi thaikolja, thanks for your help! I’m not comfortable in modifying WP Core Files, so I tried to modify a function I already used to hide the Comments Column and changing the Comments Column ID with the one of your plugin, but it doesn’t seem to work…
function remove_secondary_title_column( $columns ) { if ( array_key_exists( 'secondary_title', $columns ) ) unset( $columns['secondary_title'] ); return $columns; } add_filter( 'manage_posts_columns', 'remove_secondary_title_column' );Sorry if I’m being tedious, I’m not a coder but I’m trying 😉
Awesome! So it works perfectly, I’ll prolly buy the Pro Version later because I’m also interested in delaying the tweet.
Thanks a lot for this great plugin Joe!
Forum: Plugins
In reply to: [Secondary Title] Hide Secondary Title Description ColumnHi thaikolja, this is the basic option indeed, unfortunately, I manage all the Screen Options from the functions.php (Screen Options Panel is not available from my Admin). Hence my question about a hook via the functions.php to hide it.
Thanks for your quick reply!
Forum: Plugins
In reply to: [WP Twitter Auto Publish] Possible to add text at end of auto publishHi, that’s a good question! Would it be possible to add a specific hashtag manually depending on post, only when needed?
Thanks for this plugin!
Forum: Fixing WordPress
In reply to: Show user registration dateHi Evan, thanks for your reply! But it’s not what I’m looking for. I would like to show the user registration date on the author profile page, I’m not looking for a new, sortable, column to the users lists, which is what this plugin does.
Forum: Plugins
In reply to: [Testimonial Basics] Input Form FunctionHi Kevin, thank you very much, it works wonderfully!
Your plugin is really awesome 🙂
Forum: Plugins
In reply to: [Testimonial Basics] Input Form FunctionHi Kevin, I of course checked the documentation, I’ve found great information about your plugin.
Unfortunately, I didn’t find anything about the input form… You mention ‘Advanced Function’ but it’s only to show testimonials:
<div> <?php echo katb_testimonial_basics_display_in_code( 'group', 'number', 'by', 'id', 'rotate' ); ?> </div>There is no info in ‘Visitor Input Form’ about how to add the form on my template page using a function, the same way I do to show the testimonials.
You mention the shortcode:
[katb_input_testimonials group="All"]And the Widget form (I don’t use Widgets) but nothing on a function to show the input form. I tried to modify the shortcode into a function:
<?php echo katb_input_testimonials (); ?>But it doesn’t work… Thanks for your help!
Forum: Fixing WordPress
In reply to: User email link on imageDouble post, sorry…
Forum: Fixing WordPress
In reply to: User email link on imageHi, thank you very much, didn’t think of that, perfect! 🙂
Forum: Plugins
In reply to: [Testimonial Basics] How to manage Groups?Thanks, I made it work, eventually! 🙂