Title: ewroman's Replies | WordPress.org

---

# ewroman

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [hide taxonomy fields in QuickEdit menu](https://wordpress.org/support/topic/hide-taxonomy-fields-in-quickedit-menu/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/hide-taxonomy-fields-in-quickedit-menu/#post-5757299)
 * I have posted the answer on stackoverflow site and pasting the same here;
 * Try doing by javascript. (I use jquery).
 *  ` jQuery(document).ready(function($){‘use strict’;
 *  if ($(‘.post-type-customposttype’).length) { //if we are on custom type page
   change the customposttype with yours slug
    $(‘.taxonomy-checklist’).prev().prev().
   hide(); // to hide title. taxonomy is the your custom taxonomy’s slug. $(‘.taxonomy-
   checklist’).hide(); //to hide box } });`
 * add this code to a js file (lets say *customadmin.js* and assume its in the *
   js* folder that is in the *theme folder*) and enqueue the file on admin side:
 *  `if(!function_exists(‘addstyle_to_admin’)):
    function addstyle_to_admin() { 
   if(is_admin()){ wp_enqueue_script(‘myadminpanelscript’,get_template_directory_uri().‘/
   js/customadmin.js’,array(‘jquery’),false,false); } } add_action(‘admin_enqueue_scripts’,’
   addstyle_to_admin’); endif;`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Admin UI Customize] woocommerce awaiting order number disappeared](https://wordpress.org/support/topic/woocommerce-awaiting-order-number-disappeared/)
 *  Thread Starter [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/woocommerce-awaiting-order-number-disappeared/#post-5455179)
 * Thank you very much. That has solved the problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Turkish Lira Currency Sign Not Shown ( Türk Lirası Simgesi )](https://wordpress.org/support/topic/turkish-lira-currency-sign-not-shown-turk-lirasi-simgesi/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/turkish-lira-currency-sign-not-shown-turk-lirasi-simgesi/#post-5310117)
 * if you add this snippet to your functions file you will get TL back. (Bu kodu
   eklerseniz TL olarak tekrar görünür olur. Eğer simgeyi kullanmak istiyorsanız
   arkadaşın dediği eklentiyi kurun).
 *     ```
       add_filter('woocommerce_currency_symbol', 'tlyi_geri_getir', 10, 2);
   
       function tlyi_geri_getir( $currency_symbol, $currency ) {
            switch( $currency ) {
                 case 'TRY': $currency_symbol = 'TL'; break;
            }
            return $currency_symbol;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Discounts Per Payment Method on WooCommerce] throwing error when trying to pay for pending or failed order](https://wordpress.org/support/topic/throwing-error-when-trying-to-pay-for-pending-or-failed-order/)
 *  Thread Starter [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years ago](https://wordpress.org/support/topic/throwing-error-when-trying-to-pay-for-pending-or-failed-order/#post-5195436)
 * when I delete content of `assets/js/update-checkout.min.js` or dequeue this file
   there occurs no error. May this help.
 * But discount doesnt apply 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Password confirmation in woocommerce 2.1.x release](https://wordpress.org/support/topic/password-confirmation-in-woocommerce-21x-release/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/password-confirmation-in-woocommerce-21x-release/#post-4613561)
 * after adding second password field with this code;
 *     ```
       add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
   
       // Our hooked in function - $fields is passed via the filter!
       function custom_override_checkout_fields( $fields ) {
       	$fields['account']['account_password-2'] = array(
               'label'     	=> __('Confirm Password', 'woocommerce'),
       		'placeholder'   => _x('Confirm Password', 'placeholder', 'woocommerce'),
       		'required'  	=> true,
       		'class'     	=> array('form-row, form-row-wide'),
       		'clear'     	=> true,
       		'type'     	=> 'password',
            );
   
            return $fields;
       }
       ```
   
 * then add this code to your functions.php
 *     ```
       // Check the password and confirm password fields match before allow checkout to proceed.
       add_action( 'woocommerce_after_checkout_validation', 'wc_check_confirm_password_matches_checkout', 10, 2 );
       function wc_check_confirm_password_matches_checkout( $posted ) {
       	$checkout = WC()->checkout;
       	if ( ! is_user_logged_in() && ( $checkout->must_create_account || ! empty( $posted['createaccount'] ) ) ) {
       		if ( strcmp( $posted['account_password'], $posted['account_password-2'] ) !== 0 ) {
       			wc_add_notice( __( 'Passwords not match.', 'woocommerce' ), 'error' );
       		}
       	}
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[qTranslate] qtranslate is not compatible with wp version 3.8 or 3.8.1](https://wordpress.org/support/topic/qtranslate-is-not-compatible-with-wp-version-38-or-381/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/qtranslate-is-not-compatible-with-wp-version-38-or-381/#post-4939041)
 * wordpress auto updates (minor updates) from 3.8.1 to .3.8.3, so when you install
   wp 3.8.1 it will auto update itself to 3.8.3. qtranslate looks for 3.8.1 but 
   sees 3.8.3 so it gives error.
    make change into qranslate.php at line 90 where`
   define('QT_SUPPORTED_WP_VERSION', '3.8.1');` to `define('QT_SUPPORTED_WP_VERSION','
   3.8.3');`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Magic Fields 2] Visual Editor and MF2 Problem in multiline field and also Leave This page error](https://wordpress.org/support/topic/visual-editor-and-mf2-problem-in-multiline-field-and-also-leave-this-page-error/)
 *  Thread Starter [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/visual-editor-and-mf2-problem-in-multiline-field-and-also-leave-this-page-error/#post-4855485)
 * with New version of magic field 2.2.2.1 and wordpress 3.9.1, this bug isn’t seen
   anymore. It’s fixed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Magic Fields 2] Visual Editor and MF2 Problem in multiline field and also Leave This page error](https://wordpress.org/support/topic/visual-editor-and-mf2-problem-in-multiline-field-and-also-leave-this-page-error/)
 *  Thread Starter [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/visual-editor-and-mf2-problem-in-multiline-field-and-also-leave-this-page-error/#post-4855224)
 * Magic field team has published fixed version of plugin. This is worked for me.
 * [https://github.com/magic-fields-team/Magic-Fields-2](https://github.com/magic-fields-team/Magic-Fields-2)
 * get all files here and replace all files with your `plugins/magic-fields-2` folder.
 * Or just wait for automatic update. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Infinite-Scroll] CSS Selectors HELP!](https://wordpress.org/support/topic/css-selectors-help-1/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/css-selectors-help-1/#post-4370393)
 * Kishore004
    as I see there is no next selector in your code, just links of page
   numbers exist. control your page navigation code to add next (or older post) 
   page link. And your other selectors are;
 * Content Selector is
    .post-entry-inner
 * Navigation Selector
    #post-navigator
 * Next Selector
    ??
 * Item Selector
    .post
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Infinite-Scroll] selectors issue, still can not find them](https://wordpress.org/support/topic/selectors-issue-still-can-not-find-them/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/selectors-issue-still-can-not-find-them/#post-4760776)
 * Content Selector is
    `#main-column`
 * Navigation Selector
    `#paginate-index`
 * Next Selector
    `#paginate-index .right a`
 * Item Selector
    `.post`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Slider Plugin] can we use shortcode with name of slider not the id?](https://wordpress.org/support/topic/can-we-use-shortcode-with-name-of-slider-not-the-id/)
 *  Thread Starter [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/can-we-use-shortcode-with-name-of-slider-not-the-id/#post-4540673)
 * And another question (also a suggestion), can you add an option to slider meta
   something like “show_on_home”.
 * With this option we can show slider on home page without assigning id in that
   muneeb_ssp_slider function.
 * This what I thought:
 *     ```
       if ($show_on_home) {
               muneeb_ssp_slider();
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Powie's WHOIS Domain Check] This does not give respond.](https://wordpress.org/support/topic/this-does-not-give-respond/)
 *  Thread Starter [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/this-does-not-give-respond/#post-4496046)
 * Sorry, it now works 🙂
 * I think I have forgotten to make settings on Settings Page.
 * When I made the settings and tried again It shows the results.
 * By the way this is what I exactly wanted just shows custom string 😉
 * Also I want to ask what do you mean that invalid domain?
 * Thank you again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Manual Control for Jetpack] Disable ALL Jetpack features on first activation](https://wordpress.org/support/topic/disable-all-jetpack-features-on-first-activation/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/disable-all-jetpack-features-on-first-activation/#post-3744228)
 * with jetpack 2.7 you can disable modules (functionalities)
 * look here (the jetpack plugin author’s website)
 * [http://jeremyherve.com/2013/11/19/customize-the-list-of-modules-available-in-jetpack/](http://jeremyherve.com/2013/11/19/customize-the-list-of-modules-available-in-jetpack/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Font Manager] Multisite plugin?](https://wordpress.org/support/topic/multisite-plugin-2/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/multisite-plugin-2/#post-4463386)
 * Hi Thomas,
    Thank you for this great plugin.
 * My question is also about multisite network. When we get api key for multisite
   has it to be verified for sub sites? I tried and saw that I have to verify api
   key for all subsites seperately.
 * What I want to do is verify api key only on multisite, and sub sites use this
   plugin without verification. Is this possible?
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Widget Options Saved, But Not Displaying On Site](https://wordpress.org/support/topic/widget-options-saved-but-not-displaying-on-site/)
 *  [ewroman](https://wordpress.org/support/users/ewroman/)
 * (@ewroman)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/widget-options-saved-but-not-displaying-on-site/#post-3407479)
 * sorry I have found a mistake there is an underscore after that shouldnt be there(**
   odai_author_widget_ **)
 * change to this
 *     ```
       add_action( 'widgets_init', 'odai_author_widget_register' );
   
       function odai_author_widget_register() {
       	return register_widget( 'WP_Widget_Odai_Author_Widget' );
       	}
   
       class WP_Widget_Odai_Author_Widget extends WP_Widget {
   
       	function __construct() {
       		parent::__construct('odai_author_widget', 'Odai Author Widget', array('description' => __( "Displays post author's Gravatar photo and biographical info", 'text_domain' ),) );
       	}
       ```
   

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

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