Title: DediData's Replies | WordPress.org

---

# DediData

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/dedidata/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/dedidata/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/dedidata/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/dedidata/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/dedidata/replies/page/9/?output_format=md)
[→](https://wordpress.org/support/users/dedidata/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Problem sending form when Reply-To is set](https://wordpress.org/support/topic/problem-sending-form-when-reply-to-is-set/)
 *  Thread Starter [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/problem-sending-form-when-reply-to-is-set/#post-14936301)
 * There was a problem with Apache SpamAssassin™
    I disabled it and everythings 
   is ok
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Add From Server] Please approve some of the translations!](https://wordpress.org/support/topic/please-approve-some-of-the-translations/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/please-approve-some-of-the-translations/#post-14242248)
 * Hi [@gwynethllewelyn](https://wordpress.org/support/users/gwynethllewelyn/),
   
   Persian translations approved Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Loco Translate] Persian Translation](https://wordpress.org/support/topic/persian-translation-10/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/persian-translation-10/#post-13661752)
 * [@mo0orteza](https://wordpress.org/support/users/mo0orteza/)
    Hi Morteza, I added
   you as plugin PTE, Now you can approve your translations and maintain this plugin
   translation
 * Regards
 * [@timwhitlock](https://wordpress.org/support/users/timwhitlock/)
    Thank you
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Remove specific button(s) from frontend editor](https://wordpress.org/support/topic/remove-specific-buttons-from-frontend-editor/)
 *  Thread Starter [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/remove-specific-buttons-from-frontend-editor/#post-13606905)
 * I resolved this issue using these codes:
 *     ```
       add_filter( 'tiny_mce_before_init', 'fb_change_mce_options' );
       add_filter( 'wp_editor_settings', 'my_editor_settings');
       	}
   
       function fb_change_mce_options($initArray) {
               $initArray['relative_urls'] = false;
               $initArray['plugins'] = str_replace(',media','',$initArray['plugins']);
               $initArray['plugins'] = str_replace(',wpeditimage','',$initArray['plugins']);
               $initArray['plugins'] = str_replace(',wpgallery','',$initArray['plugins']);
               $initArray['plugins'] = str_replace(',wplink','',$initArray['plugins']);
               $initArray['plugins'] = str_replace(',image','',$initArray['plugins']);
               $initArray['toolbar1'] = str_replace(',link','',$initArray['toolbar1']);
   
               return $initArray;
       }
   
       function my_editor_settings($settings) {
               if ( ! current_user_can('administrator') ) {
                   $settings['quicktags'] = false;
                   return $settings;
               } else {
                   $settings['quicktags'] = true;
                   return $settings;
               }
       }
       ```
   
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [add multiple titles in header images](https://wordpress.org/support/topic/add-multiple-titles-in-header-images/)
 *  Thread Starter [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/add-multiple-titles-in-header-images/#post-13490094)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/)
    Do you think that is
   possible to add dynamic number of fields in Customizer based on number of added
   header images ? Because I currently used Customizer header images for such purpose
   and also this feature is need to be a standard, because I need to publish the
   theme on WP
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [add multiple titles in header images](https://wordpress.org/support/topic/add-multiple-titles-in-header-images/)
 *  Thread Starter [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/add-multiple-titles-in-header-images/#post-13488293)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/)
    I know about using 
   customizer, But my question is about the BEST METHOD to add such data by user
   Because the user can add multiple header images and it is hard to add some fixed
   fields to add multiple titles values for each header image I need to allow user
   to add 3 titles for each header image, So think if he want to add 5 header images
   and each header image has 3 titles, (5 x 3 = 15 fields) Also we can’t force user
   to have a fixed number of header images So what you think about this? What the
   best method to add such titles?
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [add multiple titles in header images](https://wordpress.org/support/topic/add-multiple-titles-in-header-images/)
 *  Thread Starter [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/add-multiple-titles-in-header-images/#post-13486338)
 * [@t-p](https://wordpress.org/support/users/t-p/)
    I am developing this theme,
   not using
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Astra] Translator editor](https://wordpress.org/support/topic/translator-editor/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/translator-editor/#post-12082608)
 * [@longman2020](https://wordpress.org/support/users/longman2020/)
    Hi,
 * I added you as an editor for the Persian language
    Regards
    -  This reply was modified 6 years, 6 months ago by [DediData](https://wordpress.org/support/users/dedidata/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bitcoin Payments - Blockonomics] new translate with poedit](https://wordpress.org/support/topic/new-translate-with-poedit/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/new-translate-with-poedit/#post-11664235)
 * Wait for few hours and then check for updates on your wordpress dashboard
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bitcoin Payments - Blockonomics] new translate with poedit](https://wordpress.org/support/topic/new-translate-with-poedit/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/new-translate-with-poedit/#post-11664066)
 * [@smm1378](https://wordpress.org/support/users/smm1378/)
    I added you as an editor
   for this plugin, You can approve translations yourself Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bitcoin Payments - Blockonomics] new translate with poedit](https://wordpress.org/support/topic/new-translate-with-poedit/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/new-translate-with-poedit/#post-11664017)
 * [@smm1378](https://wordpress.org/support/users/smm1378/)
    It will update on your
   WordPress when I reached about 90% of the whole translation So you can translate
   the rest of “untranslated phrases” here: [https://translate.wordpress.org/projects/wp-plugins/blockonomics-bitcoin-payments/dev/fa/default/?filters%5Bstatus%5D=untranslated&sort%5Bby%5D=priority&sort%5Bhow%5D=desc](https://translate.wordpress.org/projects/wp-plugins/blockonomics-bitcoin-payments/dev/fa/default/?filters%5Bstatus%5D=untranslated&sort%5Bby%5D=priority&sort%5Bhow%5D=desc)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bitcoin Payments - Blockonomics] new translate with poedit](https://wordpress.org/support/topic/new-translate-with-poedit/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/new-translate-with-poedit/#post-11664001)
 * Hi,
    You can translate directly via this link: [https://translate.wordpress.org/locale/fa/default/wp-plugins/blockonomics-bitcoin-payments/](https://translate.wordpress.org/locale/fa/default/wp-plugins/blockonomics-bitcoin-payments/)
 * You can import your current translations too
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [access WP REST API from remote site](https://wordpress.org/support/topic/access-wp-rest-api-from-remote-site/)
 *  [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/access-wp-rest-api-from-remote-site/#post-11067526)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/)
    I wrote the code using
   cURL, But I have problem with uploading files and also authentication, Could 
   you please give me a proper sample for that? is it need to install a plugin for
   authentication or it can be done without any plugin? I worked with XML-RPC before
   and it works without any plugin for authentication Also I checked this library:
   [https://github.com/WP-API/client-php](https://github.com/WP-API/client-php) 
   It seems that it written by API team but there isn’t any documentation about 
   how to use and methods
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Theme preview doesn’t display my menu](https://wordpress.org/support/topic/theme-preview-doesnt-display-my-menu/)
 *  Thread Starter [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/theme-preview-doesnt-display-my-menu/#post-10710272)
 * [@joyously](https://wordpress.org/support/users/joyously/), [@jcastaneda](https://wordpress.org/support/users/jcastaneda/)
   
   I don’t like to trick a thing which my theme doesn’t support My theme supports
   4 menu positions, and if those positions has any menu assigned, So their container
   will be display in there and it display menu too But in WordPress.org preview,
   none of them display, I put `is_customize_preview` in my code too, But it seems
   it doesn’t work too in WP.org preview What should I do ? I need to show the users
   those menus in preview
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Theme preview doesn’t display my menu](https://wordpress.org/support/topic/theme-preview-doesnt-display-my-menu/)
 *  Thread Starter [DediData](https://wordpress.org/support/users/dedidata/)
 * (@dedidata)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/theme-preview-doesnt-display-my-menu/#post-10690917)
 * [@jcastaneda](https://wordpress.org/support/users/jcastaneda/)
    Why? using is_customize_preview
   is prohibited?

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

1 [2](https://wordpress.org/support/users/dedidata/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/dedidata/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/dedidata/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/dedidata/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/dedidata/replies/page/9/?output_format=md)
[→](https://wordpress.org/support/users/dedidata/replies/page/2/?output_format=md)