Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter ttehaute

    (@ttehaute)

    Thanks a lot, it works !

    Thread Starter ttehaute

    (@ttehaute)

    Hello Mark,

    I put your code and the correct ID page on my header.php :

    [code removed by t31os]

    In fact this page appears in my header like there is no modification :
    http://www.yoannromano.com/ok/

    UP ?

    No one can help me ?
    I can’t find any solution to fix this trouble.

    Hello all,
    I’m founder of http://yoannromano.com and I have the same troube

    Nevertheless the nicshonfeld’ solution didn’t work.
    Here is my header.php :

    <?php $arjunaOptions = arjuna_get_options(); ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head>
    <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>"  />
    <title><?php
    if (is_home ()) { bloginfo('name'); echo " - "; bloginfo('description'); }
    elseif (is_category() || is_tag()) {single_cat_title(); arjuna_get_appendToPageTitle(); }
    elseif (is_single() || is_page()) {single_post_title(); arjuna_get_appendToPageTitle(); }
    elseif (is_search()) {_e('Search Results:', 'Arjuna'); echo " ".wp_specialchars($s); arjuna_get_appendToPageTitle(); }
    else { echo trim(wp_title(' ',false)); arjuna_get_appendToPageTitle(); }
    ?></title>
    <?php if(is_home()): ?><link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /><?php endif; ?>
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php
    if (!$arjunaOptions['enableIE6optimization'] || !arjuna_isIE6()) { ?>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' );?>
    	<?php wp_head(); ?>
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/default.js"></script>
    	<!--[if lte IE 7]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie7.css" type="text/css" media="screen" /><![endif]-->
    	<!--[if lte IE 6]>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie6.css" type="text/css" media="screen" />
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/ie6.js"></script>
    	<![endif]-->
    	<?php print arjuna_get_custom_CSS(); ?>
    <?php } elseif(arjuna_isIE6()) { ?>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie6_full.css" type="text/css" media="screen" />
    	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' );?>
    	<?php wp_head(); ?>
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/default.js"></script>
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/ie6.js"></script>
    	<?php print arjuna_get_custom_CSS(); ?>
    <?php } ?>
    </head>
    
    <body<?php if(!$arjunaOptions['headerMenu1_show']): ?> class="hideHeaderMenu1"<?php endif; ?>><a name="top"></a><a id="skipToPosts" href="#content"><?php _e('Skip to posts', 'Arjuna'); ?></a>
    <div class="pageContainer">
    	<div class="headerBG"></div>
    	<div class="header">
    		<?php if($arjunaOptions['headerMenu1_show']): ?>
    		<div class="headerMenu1<?php if($arjunaOptions['headerMenu1_alignment']=='left'): ?> headerMenu1L<?php endif; ?>">
    			<ul id="headerMenu1"><?php
    				if ($arjunaOptions['headerMenu1_display']=='pages') {
    					wp_list_pages('sort_column='.$arjunaOptions['headerMenu1_sortBy'].'&sort_order='.$arjunaOptions['headerMenu1_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu1_dropdown']);
    				} elseif ($arjunaOptions['headerMenu1_display']=='categories') {
    					wp_list_categories('orderby='.$arjunaOptions['headerMenu1_sortBy'].'&order='.$arjunaOptions['headerMenu1_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu1_dropdown']);
    				}
    			?></ul>
    			<span class="clear"></span>
    		</div>
    		<?php endif; ?>
    		<?php
    		if ($arjunaOptions['headerImage'])
    			$tmp = ' header_'.$arjunaOptions['headerImage'];
    		else $tmp = ' header_lightBlue';
    		?>
    		<div class="headerMain<?php print $tmp; ?>">
    			<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
    			<span><?php bloginfo('description'); ?></span>
    			<div class="headerSearch">
    				<form method="get" action="<?php bloginfo('url'); ?>/">
    					<input type="text" class="searchQuery searchQueryIA" id="searchQuery" value="<?php _e('Search here...', 'Arjuna'); ?>" name="s" />
    					<input type="submit" class="searchButton" value="<?php _e('Find', 'Arjuna'); ?>" />
    				</form>
    			</div>
    		</div>
    		<div class="headerMenu2<?php if($arjunaOptions['headerMenu2_displaySeparators']): ?> headerMenu2DS<?php endif; ?>"><span class="helper"></span>
    			<ul id="headerMenu2">
    				<?php if($arjunaOptions['headerMenu2_displayHomeButton']): ?><li><a href="<?php (function_exists('icl_get_home_url'))?(print icl_get_home_url()):(bloginfo('url')) ?>" class="homeIcon"><?php _e('Home','Arjuna'); ?></a></li><?php endif; ?><?php
    					if ($arjunaOptions['headerMenu2_display']=='pages') {
    						wp_list_pages('sort_column='.$arjunaOptions['headerMenu2_sortBy'].'&sort_order='.$arjunaOptions['headerMenu2_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu2_dropdown']);
    					} elseif ($arjunaOptions['headerMenu2_display']=='categories') {
    						wp_list_categories('orderby='.$arjunaOptions['headerMenu2_sortBy'].'&order='.$arjunaOptions['headerMenu2_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu2_dropdown']);
    					}
    				?>
    			</ul>
    			<span class="clear"></span>
    		</div>
    	</div>
    
    	<div class="contentWrapper<?php
    		//Sidebar
    		if ($arjunaOptions['sidebarDisplay']=='none') {
    			print ' NS';
    		} elseif ($arjunaOptions['sidebarDisplay']=='right') {
    			if ($arjunaOptions['sidebarWidth']=='small') print ' RSSW';
    			elseif ($arjunaOptions['sidebarWidth']=='large') print ' RSLW';
    		} elseif ($arjunaOptions['sidebarDisplay']=='left') {
    			if ($arjunaOptions['sidebarWidth']=='small') print ' LSSW';
    			elseif ($arjunaOptions['sidebarWidth']=='large') print ' LSLW';
    			else print ' LSNW';
    		}
    	?>">
    		<a name="content"></a>

    And the website is http://yoannromano.com.
    I have already checked a lot of website in order the solve it but they didn’t work :/

    Thanks in advance !

    Thread Starter ttehaute

    (@ttehaute)

    No one ?

    Hello,
    I don’t understand where I must copy the previous code to have the feed in my side bar ?
    I tried into a new html code but I don’t work.

    Thanks in advance,
    Yoann

    Thread Starter ttehaute

    (@ttehaute)

    OK thanks esmi, the past theme was undamaged.
    Now it works, thanks again 🙂

    If I can help you back about motivation things I will help you with pleasure.

    Yoann

    Thread Starter ttehaute

    (@ttehaute)

    Hello esmi,
    I just checked and URLs are corrects :
    http://img294.imageshack.us/img294/3540/15880285.png

    Another thing to test ?

    Thread Starter ttehaute

    (@ttehaute)

    OK thanks, it works : http://www.yoannromano.com/
    Thanks, now I will work work on webdesign. If you have some best tools and tutorials just post it here 🙂

    Yoann

    Thread Starter ttehaute

    (@ttehaute)

    Hey esmi, thanks very much to (or for I don’t know my English is not so good) your contribution !!!

    It’s working now 🙂

    This is the url :
    http://www.yoannromano.com/wordpress-2.8.6/wordpress/

    But now do you know how my visitors can see the blog directly at the wwww.yoannromano.com url ?
    Do I need necessarily a redirection ?

    ——
    Yoann
    http://twitter.com/yoannromano.

    Thread Starter ttehaute

    (@ttehaute)

    Thanks, I will try this one and then repost 🙂
    No no I just want to install WordPress on my website. But if your question was “do you use a server ?” so yes, I use MySql.

    Thread Starter ttehaute

    (@ttehaute)

    In my local computer I don’t have the following file “install.php”. So Firefox pointed on an error.

    Thread Starter ttehaute

    (@ttehaute)

    OK thanks.
    You see the steps are :

    1. Unzip the package in an empty directory.
    2. Open up wp-config-sample.php with a text editor like WordPad or similar and fill in your database connection details.
    3. Save the file as wp-config.php
    4. Upload everything.
    5. Open /wp-admin/install.php in your browser. This should setup the tables needed for your blog. If there is an error, double check your wp-config.php file, and try again. If it fails again, please go to the support forums with as much data as you can gather.
    6. Note the password given to you.
    7. The install script should then send you to the login page. Sign in with the username admin and the password generated during the installation. You can then click on ‘Profile’ to change the password.

    But at the five when I click on the link to open wp-admin/install.php in my web browser I don’t open. So I go to the http://yoannromano.com/wp-admin/install.php website page and it show that WordPress is already installed.

    So I don’t get it ! The fact is I don’t have received any mail with any kind of password or username.

    Thanks in advance,
    Yoann

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