Forum Replies Created

Viewing 10 replies - 16 through 25 (of 25 total)
  • Forum: Fixing WordPress
    In reply to: Network admin Tab?
    Thread Starter Khadesa

    (@khadesa)

    Ahh i don’t think you quite get what i mean, the changes i made to the code are irrelevant because they’re not being shown,

    When i was first given a wordpress site to work on, which was set up on a personal server, in wordpress dashboard, in the top left corner, a button says <home icon>”webb perfomance” (which is the name of the site), if clicked, it shows the option of “visit site”,

    now i have tried to set up the same thing for another site, i am left with the button saying <key icon>”my sites”, <home icon>”my blog”

    My question is, why is there a key icon? and because my custom (duplicated) theme is activated on ‘network admin’ under the button ‘my sites’, i am unable to use it for my blog,

    Is there a way i can simply change/customize my wordpress setup to just have <home icon>”my blog” as a button in the dashboard?

    thanks!

    Thread Starter Khadesa

    (@khadesa)

    Ahh but that’s just it, in no where in my code does it call upon index.php, so why would this error occur?

    Hi Danghinh,

    Could you be more specific…

    What do you mean ‘trying to embed html’, Are you in your wordpress dashboard?

    But then you say ‘it works in your wordpress blog’, Does that mean you’re adding the code underneath the ‘add media’ section?

    If you wish to edit the page, i recommend getting into your homepage.php

    Forum: Fixing WordPress
    In reply to: Switching

    Hi Mark, i can tell you that your site, although not too bad, needs a bit of work in regards to making it responsive, as well as tidying up some of the content.

    How’s your html/css skills? if you’re able, it wouldn’t be hard to simply add a few ‘media queries’ ( < google that) on the bottom of your .css,

    This can make it responsive easily. Also, here you access the style of some of your wobbly elements (particular in the header).

    If this sounds too complicated, instead you could download wordpress and add it to your hosting server (godaddy might have a quick option to do just that), and you would have to add your content to a theme.

    (if you choose the latter option, be sure to follow a guide as there are many important checks and steps along the way that an eager noob might miss)

    Thread Starter Khadesa

    (@khadesa)

    Research is indicating the problem lies in my permalink settings?

    I have it set to custom structure, with ‘/index.php/%year%/%monthnum%/%day%/%postname%/’ added to the url, this was already here…

    sorry i can’t be more clear with my query.

    Thread Starter Khadesa

    (@khadesa)

    Stephen Cottontail.

    You dead set legend.

    I thank thee with the volume of a thousand volcanoes.

    My gratitude is stronger than a thousand winds.

    You have no idea how much you’ve helped me, i’m in a very awkward position at a wordpress internship, and you’ve just given me artillery.

    I just can’t wrap my head around js, actionscript is so easy, but js is whack… for example, what does $ mean?

    Dude, i hope you win the lottery, or get a date with Angelina Jolie or something. You deserve it.

    Thread Starter Khadesa

    (@khadesa)

    I’m the only one who’s touched in, pretty much.
    And nope, i’ve hardly touched the header.php (where all the script linkage is)

    Here is the entire header.php, you can see the obvious 4 scripts ive added

    <?php
    /**
     * The Header template for our theme
     *
     * Displays all of the <head> section and everything up till <div id="main">
     *
     * @package WordPress
     * @subpackage Twenty_Thirteen
     * @since Twenty Thirteen 1.0
     */
    ?><!DOCTYPE html>
    <!--[if IE 7]>
    <html class="ie ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html class="ie ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 7) & !(IE 8)]><!-->
    <html <?php language_attributes(); ?>>
    <!--<![endif]-->
    <head>
    	<meta charset="<?php bloginfo( 'charset' ); ?>">
    	<meta name="viewport" content="width=device-width">
    	<title><?php wp_title( '|', true, 'right' ); ?></title>
    	<link rel="profile" href="https://gmpg.org/xfn/11">
    	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    	<!--[if lt IE 9]>
    	<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
    	<![endif]-->
    	<?php wp_head(); ?>
    	<script src="<?php bloginfo('template_url'); ?>/js/jquery-1.11.1.min.js"></script>
    	<script src="<?php bloginfo('template_url'); ?>/js/niika.js"></script>
    							    <!-- Contact Form JavaScript -->
    							<script src="js/jqBootstrapValidation.js"></script>
    							<script src="js/contact_me.js"></script>
    </head>
    
    <body <?php body_class(); ?>>
    	<div id="page" class="hfeed site">
    		<header id="masthead" class="site-header" role="banner">
    			<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
    				<h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
    				<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
    			</a>
    
    			<div id="navbar" class="navbar">
    				<nav id="site-navigation" class="navigation main-navigation" role="navigation">
    					<button class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></button>
    					<a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
    					<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu', 'menu_id' => 'primary-menu' ) ); ?>
    					<?php get_search_form(); ?>
    				</nav><!-- #site-navigation -->
    			</div><!-- #navbar -->
    		</header><!-- #masthead -->
    
    		<div id="main" class="site-main">

    Thread Starter Khadesa

    (@khadesa)

    Okay, here’s the menu-toggle code, from header.php

    <div id="navbar" class="navbar">
    				<nav id="site-navigation" class="navigation main-navigation" role="navigation">
    					<button class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></button>
    					<a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
    					<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu', 'menu_id' => 'primary-menu' ) ); ?>
    					<?php get_search_form(); ?>
    				</nav><!-- #site-navigation -->
    			</div><!-- #navbar -->

    hopefully that sheds some light on the situation…

    Thread Starter Khadesa

    (@khadesa)

    Thanks for the response steve,

    Ahh, so it’s just a twenty13 theme, with extreme css changes, but as far as the navbar is concerned, just it’s colors and font have changed.

    I’m not sure about the .js but i haven’t taken any out, and i’m sure there would have been some in there originally to have had it working in the first place.

    What’s supposed to happen, when the page is narrower that 840px, the menu changes to just read ‘menu V‘ The user then clicks this, and it will expand/open a drop down menu with the original menu options.

    Wooooaaaa dude, this isn’t something you could just whip up with minimal knowledge of php, html and css.

Viewing 10 replies - 16 through 25 (of 25 total)