Title: Methodos's Replies | WordPress.org

---

# Methodos

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

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

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Indent Lists Button] Can´t Indent first row even after enabling Indent Lists Button – plugin](https://wordpress.org/support/topic/cant-indent-first-row-even-after-enabling-indent-lists-button-plugin/)
 *  Plugin Author [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/cant-indent-first-row-even-after-enabling-indent-lists-button-plugin/#post-11141462)
 * Hey,
    Sorry for the late reply!
 * I am afraid I cannot find a solution as I cannot reproduce the problem. On a 
   clean install of WordPress 5.0.2 with only the Indent Lists Button installed,
   the editor (in a classic block) behaves as before Gutenberg was introduced. The
   whole list is indented.
 * Would you have an exmple url so I can see what the problem actually is?
 * Thanks in advance,
    Methodos
    -  This reply was modified 7 years, 4 months ago by [Methodos](https://wordpress.org/support/users/methodos/).
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Indent Lists Button] Doesn’t work with Catalyst/Dynamik](https://wordpress.org/support/topic/doesnt-work-with-catalyst-dynamik/)
 *  Plugin Author [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/doesnt-work-with-catalyst-dynamik/#post-10001721)
 * Hey,
    It clearly states in the description that this plugin works with themes
   Twenty Fifteen and Twenty Sixteen. Nowhere is Catalyst/Dynamik mentioned as compatible
   theme/framework. If you had pm’d me, and suplied a non-working example, I could
   have helped you out. Instead, you have placed a negative review about something
   this plugin never claimed to be able to do…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Bullet points and indentation problem](https://wordpress.org/support/topic/bullet-points-and-indentation-problem/)
 *  [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/bullet-points-and-indentation-problem/#post-8713957)
 * Another, and very easy, option would be to use the Indent Lists Plugin (I am 
   the author and developed it for a client):
    [https://wordpress.org/plugins/indent-lists-button/](https://wordpress.org/plugins/indent-lists-button/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] customize flags](https://wordpress.org/support/topic/customize-flags/)
 *  Thread Starter [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/customize-flags/#post-7251408)
 * Yes. Did that. Did the trick! Where is the code in the plugin that steers this
   behavior?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Rambo] Indenting a bullet list?](https://wordpress.org/support/topic/indenting-a-bullet-list/)
 *  [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/indenting-a-bullet-list/#post-7115234)
 * style.css line 2473: change list style so the bullet point will appear before(“
   outside”) the text blocks:
    .blog_single_post ul li, .blog_section2 ul li { list-
   style: disc outside none; /*list-style-position: inside;*/ font-family: ‘RobotoRegular’;}
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [formatting text and bullet points in WP](https://wordpress.org/support/topic/formatting-text-and-bullet-points-in-wp/)
 *  [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/formatting-text-and-bullet-points-in-wp/#post-6852582)
 * Sample page is not there anymore, so you probably solved this long ago, but if
   not, you could try my Indent Lists Button plugin. In case that doesn’t help, 
   update the page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] custom fields overwritten](https://wordpress.org/support/topic/custom-fields-overwritten/)
 *  Thread Starter [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/custom-fields-overwritten/#post-6743133)
 * Adding this to functions.php did the trick:
 *     ```
       function unset_important_metadata($metakeys)
       {
       	$unique_language_keys = array("certain_inputvalue", "another_inputvalue");
       	foreach($metakeys as $key => $value)
       	{
       		if(in_array($value, $unique_language_keys, true))
       		{
       			unset($metakeys[$key]);
       		}
       	}
       	return $metakeys;
       }
       add_filter('pll_copy_post_metas', 'unset_important_metadata',1,1);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] custom fields overwritten](https://wordpress.org/support/topic/custom-fields-overwritten/)
 *  Thread Starter [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/custom-fields-overwritten/#post-6742936)
 * I don’t want to disable that. I only need to disable it for one or two fields.
   
   So, I have this:
 *     ```
       function save_meta_box($post_id) {
       	if($post_id == THEMAINPOSTID)
       	{
       		update_post_meta("","");
       	}
       }
       add_action ( 'save_post', 'save_meta_box' );
       ```
   
 * And I need to have THEMAINPOSTID substituted by a real function/variable.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CKEditor for WordPress] enable ckeditor in Ninja Forms plugin](https://wordpress.org/support/topic/enable-ckeditor-in-ninja-forms-plugin/)
 *  Thread Starter [Methodos](https://wordpress.org/support/users/methodos/)
 * (@methodos)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/enable-ckeditor-in-ninja-forms-plugin/#post-6712553)
 * It look s like a good forum. Unfortunately I have never had any answer here and
   I have seen so many go unanswered…, so the looks are deceiving. Probably better
   to post somewhere else if you want answers.

Viewing 9 replies - 1 through 9 (of 9 total)