Title: Andrei Zhitkov's Replies | WordPress.org

---

# Andrei Zhitkov

  [  ](https://wordpress.org/support/users/abtop/)

 *   [Profile](https://wordpress.org/support/users/abtop/)
 *   [Topics Started](https://wordpress.org/support/users/abtop/topics/)
 *   [Replies Created](https://wordpress.org/support/users/abtop/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/abtop/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/abtop/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/abtop/engagements/)
 *   [Favorites](https://wordpress.org/support/users/abtop/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 35 total)

1 [2](https://wordpress.org/support/users/abtop/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/abtop/replies/page/3/?output_format=md) 
[→](https://wordpress.org/support/users/abtop/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AddToAny Share Buttons] Publisher name on Facebook](https://wordpress.org/support/topic/publisher-name-on-facebook/)
 *  [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/publisher-name-on-facebook/#post-9744680)
 * Thank you for the clarification.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AddToAny Share Buttons] Publisher name on Facebook](https://wordpress.org/support/topic/publisher-name-on-facebook/)
 *  [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/publisher-name-on-facebook/#post-9744608)
 * I second this question.
    Why are you messing with the referral? Why is this not
   entered in the change log?
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Too many letters for gettext](https://wordpress.org/support/topic/too-many-letters-for-gettext/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/too-many-letters-for-gettext/#post-9233655)
 * “best to provide online multi-lingual help through your own site”
    That’s what
   Joomla is doing for their core and this keeps it up-to-date for all installations.
   However it may be too taxing for an individual casual developer to maintain such
   a site. It would make sense to let end-users customize or add to the help info
   as they may see fit which makes an argument for a distributed help files. I looked
   into the admin help screen. There may not be enough room (I have pictures) and
   localization is still an issue. I am starting to lean toward self-contained help
   files with the path being switched depending on the users locale.
 * “So do you need to create a whole web site in just one language”
    No, this is
   not about creating a site, this is about making a plugin, or a theme, and figuring
   out the best way to internationalize its help pages.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Related Posts by Taxonomy] How to move related output from content to after post](https://wordpress.org/support/topic/how-to-move-related-output-from-content-to-after-post/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/how-to-move-related-output-from-content-to-after-post/#post-9144801)
 * related.php line 64
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Related Posts by Taxonomy] How to move related output from content to after post](https://wordpress.org/support/topic/how-to-move-related-output-from-content-to-after-post/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/how-to-move-related-output-from-content-to-after-post/#post-9143190)
 * The official advice doesn’t work, for it doesn’t remove the initial connection
   into the_content hook. I was getting duplicate insertions — one original, still
   working perfectly well and the second later displaying as shortcode. I was not
   able to get rid of the original insertion point until I used
    `remove_filter('
   the_content', array($related, 'related_content_filter') );` to counter your
 *     ```
       // Add the related posts to the content, if set in options
       add_filter( 'the_content', array($this, 'related_content_filter') );
       ```
   
 * per another piece of [official documentation](https://developer.wordpress.org/reference/functions/remove_filter/#comment-613):
 *     ```
       If a filter has been added from within a class, for example by a plugin, removing it will require accessing the class variable.
       global $my_class;
       remove_filter( 'the_content', array($my_class, 'class_filter_function') );
       ```
   
 * You are right about `post_content_after`. Apparently this was custom for my theme
   and will not be available just for anybody. I should have double-checked it. 
   Oops about it.
 * Generally plugins developers should not make concessions to lazy theme designers.
   Themes should support the fullest range of hooks, and those which do do not, 
   should not be used.
 * At the end of the day, you would do well if you offered alternative hook to insert
   the Related links.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [term_taxonomy_id vs term_id](https://wordpress.org/support/topic/term_taxonomy_id-vs-term_id/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/term_taxonomy_id-vs-term_id/#post-9067447)
 * I see. wp_term_taxonomy is a joint table to resolve multiple-to-multiple relations,
   right?
    [https://codex.wordpress.org/images/2/25/WP4.4.2-ERD.png](https://codex.wordpress.org/images/2/25/WP4.4.2-ERD.png)⌊
   null⌉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz Tool Lite] Huge number of unfinished attempts](https://wordpress.org/support/topic/huge-number-of-unfinished-attempts/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/huge-number-of-unfinished-attempts/#post-8983176)
 * [https://wordpress.org/support/topic/shortcode-fires-from-the-editor-creates-db-entries/#post-8983175](https://wordpress.org/support/topic/shortcode-fires-from-the-editor-creates-db-entries/#post-8983175)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [shortcode fires from the editor, creates DB entries](https://wordpress.org/support/topic/shortcode-fires-from-the-editor-creates-db-entries/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/shortcode-fires-from-the-editor-creates-db-entries/#post-8983175)
 * Well, you are exactly right.
    It’s Yoast SEO. Thank you for the hint.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [shortcode fires from the editor, creates DB entries](https://wordpress.org/support/topic/shortcode-fires-from-the-editor-creates-db-entries/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/shortcode-fires-from-the-editor-creates-db-entries/#post-8981243)
 * [This is the plugin.](https://wordpress.org/plugins/quiz-tool-lite/)
    All the
   shortcodes from it give me this problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz Tool Lite] Reflective question in Quiz](https://wordpress.org/support/topic/reflective-question-in-quiz/)
 *  [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/reflective-question-in-quiz/#post-8924314)
 * Indeed, I wouldn’t have have been bothering you if the features fit the bill.
   🙂
    I have been working and I got a new qType going — textArea, which is pretty
   much identical to reflectionText, but I can display it inside quiz reports without
   being graded or marked as such. Now I have to figure out how to save those answers
   when they are in a quiz list. I don’t know how to deal with the necessity to 
   write answers and read responses at the same time. 🙂
 * On the general note, I looked at lots of different quiz solutions and they all
   shy away from free text entries for quizzes, for all quizzes are usually intended
   for automated evaluation and to match an unpredictable strings is tricky to say
   the least. I can emphasize with that. However there is a lot of value in giving
   a human evaluator the ability to include any type of question in a quiz and look
   at the results as one compiled list.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast Duplicate Post] Duplicate from one custom post type to another](https://wordpress.org/support/topic/duplicate-from-one-custom-post-type-to-another/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/duplicate-from-one-custom-post-type-to-another/#post-8902725)
 * Unfortunately it’s not an option. The source type is not authorized for creation
   or editing by the duplicator so it needs to be done in one step.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz Tool Lite] Reflective question in Quiz](https://wordpress.org/support/topic/reflective-question-in-quiz/)
 *  [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/reflective-question-in-quiz/#post-8896683)
 * Alex,
    if you just include reflexive questions into $questionRS = qtl_queries::
   getQuestionsInPot($potID, true, “random”, $qCount); then getQuestionsInPot will
   try to get question options, but they are not set since we are not intending 
   to evaluate (mark) questions. This leads to a whole bunch of warnings but, most
   importantly, the answer being marked as incorrect.
 * The problem is not in to joining the reflectives in a pot, they need to be saved
   by default, but not marked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] Solution for Warning: sprintf() [function.sprintf]: Too few arguments](https://wordpress.org/support/topic/solution-for-warning-sprintf-function-sprintf-too-few-arguments/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/solution-for-warning-sprintf-function-sprintf-too-few-arguments/#post-8886980)
 * –> vs. ->
    – vs. –
 * Do you see any difference?
    And if you don’t, in the words of a popular commercial,“
   Why code more?” You don’t have to explain to me what this code for. What you 
   have to do once in a while is ask yourself if there is a simple, better way.
 * Regards.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] Solution for Warning: sprintf() [function.sprintf]: Too few arguments](https://wordpress.org/support/topic/solution-for-warning-sprintf-function-sprintf-too-few-arguments/)
 *  Thread Starter [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/solution-for-warning-sprintf-function-sprintf-too-few-arguments/#post-8886245)
 * This is way too much code (i.e. trouble) to output simple simulated arrow, if
   you ask me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] 6.0.15 breaks internal (navigation) links](https://wordpress.org/support/topic/6-0-15-breaks-internal-navigation-links/)
 *  [Andrei Zhitkov](https://wordpress.org/support/users/abtop/)
 * (@abtop)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/6-0-15-breaks-internal-navigation-links/page/2/#post-8886219)
 * This seems to be a feature, not a bug. 🙂
    Links fail if your browser is set 
   to allow tracking. If you block tracking in the browser settings, AS YOU SHOULD,
   I might add, then links are working just fine. The browser blocks tracking and
   the problem with it.
 * This is kinda funny.
    -  This reply was modified 9 years, 5 months ago by [Andrei Zhitkov](https://wordpress.org/support/users/abtop/).

Viewing 15 replies - 1 through 15 (of 35 total)

1 [2](https://wordpress.org/support/users/abtop/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/abtop/replies/page/3/?output_format=md) 
[→](https://wordpress.org/support/users/abtop/replies/page/2/?output_format=md)