• 23-12-2014, 21:53:24
    #1
    Arkadaşlar Wordpress'te başlıklarda,kategorilerde veya menülerde türkçe karakter kullanamıyorum. Kullandığım zaman o karakter gözükmüyor yayınladığımda. Ama düz yazı içerisinde bu sorun yok. Orda istediğim herhangibir karakteri kullanabiliyorum. Mesela TÜRKÇE yazdığımda TRKE çıkıyor. TURKCE yazınca sorun yok. Buda ister istemez görüntüyü kaliteyi bozuyor. Bu konuda yardımlarınızı bekliyorum. ŞĞİÜÖÇ gibi karakterleri kullanamıyorum.

    Problemi yaşadığım Site Adresi : Ceviz Fidanı
  • 23-12-2014, 23:31:06
    #2
    Temanızın " HEADER.php" dosyasını açın,

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
    Kısmını

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    şeklinde degiştirin, yine düzelmezse notepad++ ile kodlama türünü UTF-8 Bomsuz olarak kaydedin.
  • 24-12-2014, 09:14:36
    #3
    Crazy adlı üyeden alıntı: mesajı görüntüle
    Temanızın " HEADER.php" dosyasını açın,

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
    Kısmını

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    şeklinde degiştirin, yine düzelmezse notepad++ ile kodlama türünü UTF-8 Bomsuz olarak kaydedin.
    Hocam iki seçeneğide denedim ama sorun devam etmekte.
  • 24-12-2014, 09:25:44
    #4
    Üyeliği durduruldu
    Buyur hocam incele http://www.bityavrusu.com/wordpress-...nu-cozumu.html
  • 24-12-2014, 23:52:02
    #5
    Bityavrusu adlı üyeden alıntı: mesajı görüntüle
    Hocam functions.php dosyasına yapıştırınca hata veriyor.
    Hata kodu: Parse error: syntax error, unexpected 'function' (T_FUNCTION), expecting ')' in /home/

    Functions.php dosyası

    <?php
    
    /*-----------------------------------------------------------------------------------*/
    /* Options Framework Functions
    /*-----------------------------------------------------------------------------------*/
    
    /* Set the file path based on whether the Options Framework is in a parent theme or child theme */
    
    
    if ( STYLESHEETPATH == TEMPLATEPATH ) {
    	define('OF_FILEPATH', TEMPLATEPATH);
    	define('OF_DIRECTORY', get_template_directory_uri());
    } else {
    	define('OF_FILEPATH', STYLESHEETPATH);
    	define('OF_DIRECTORY', get_stylesheet_directory_uri());
    }
    
    /* These files build out the options interface.  Likely won't need to edit these. */
    
    require_once (OF_FILEPATH . '/admin/admin-functions.php');		// Custom functions and plugins
    require_once (OF_FILEPATH . '/admin/admin-interface.php');		// Admin Interfaces (options,framework, seo)
    
    /* These files build out the theme specific options and associated functions. */
    
    require_once (OF_FILEPATH . '/admin/theme-options.php'); 		// Options panel settings and custom settings
    require_once (OF_FILEPATH . '/functions/theme-functions.php'); 	// Theme actions based on options settings
    require_once (OF_FILEPATH . '/functions/metabox.php'); 	
    require_once (OF_FILEPATH . '/functions/post-types.php'); 	
    require_once (OF_FILEPATH . '/functions/theme-widgets.php'); 	
    require_once (OF_FILEPATH . '/functions/shortcodes.php');
    require_once (OF_FILEPATH . '/admin/tinymce/shortcodes-generator.php');
    require_once (OF_FILEPATH . '/functions/breadcrumbs-plus.php');
    require_once (OF_FILEPATH . '/functions/aq_resizer.php');
    
    // Load static framework options pages 
    $functions_path = OF_FILEPATH . '/admin/';
    
    function optionsframework_add_admin() {
    
        global $query_string;
        
        $themename =  get_option('of_themename');      
        $shortname =  get_option('of_shortname'); 
       
        if ( isset($_REQUEST['page']) && $_REQUEST['page'] == 'optionsframework' ) {
    		if (isset($_REQUEST['of_save']) && 'reset' == $_REQUEST['of_save']) {
    			$options =  get_option('of_template'); 
    			of_reset_options($options,'optionsframework');
    			header("Location: admin.php?page=optionsframework&reset=true");
    			die;
    		}
        }
    		
        //$of_page = add_submenu_page('themes.php', $themename, 'Theme Options', 'edit_theme_options', 'optionsframework','optionsframework_options_page'); // Default
        $of_page = add_menu_page($themename." Options", $themename, 'edit_themes', 'optionsframework', 'optionsframework_options_page');
    	
    	// Add framework functionaily to the head individually
    	add_action("admin_print_scripts-$of_page", 'of_load_only');
    	add_action("admin_print_styles-$of_page",'of_style_only');
    } 
    
    add_action('admin_menu', 'optionsframework_add_admin');
    ?>
  • 24-12-2014, 23:53:44
    #6
    Üyeliği durduruldu
    pm atın yardımcı olayım
  • 25-12-2014, 09:10:24
    #7
    Showman adlı üyeden alıntı: mesajı görüntüle
    pm atın yardımcı olayım
    Teşekkürler hepinize . Arkadaş Sorunu halletti.


    KONUYU KAPATABİLİRİZ.