Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter hermanthegerman

    (@hermanthegerman)

    Thanks for your response

    Can you not use Wp Clone to do this then? Would you be able to point me towards any information that might tell me how to do this at all? I know how to drop tables in sql, btu as for anything else, I am stumped.

    Thread Starter hermanthegerman

    (@hermanthegerman)

    Thanks, thats much appreciated!

    Thread Starter hermanthegerman

    (@hermanthegerman)

    would it be something to do with this, at the end of the author.php?:

    <?php else : ?>
    <?php get_template_part( ‘content’, ‘none’ ); ?>
    <?php endif; ?>

    Thread Starter hermanthegerman

    (@hermanthegerman)

    Yeah, I suppose you’re right on that one.
    I’m using 2012, and hosting locally.

    I want the author name, description, and any links they enter in the user profile section of the admin panel to show up on an author archive page, when the author’s name is clicked on.

    For an author without posts, It currently comes up with ‘nothing found…’ and a search bar to find posts.

    I suppose I’m trying to look for a way to bypass lack of posts

    Thanks.

    Thread Starter hermanthegerman

    (@hermanthegerman)

    the plugin i tried was this one: show authors without posts

    Thread Starter hermanthegerman

    (@hermanthegerman)

    That worked a treat thanks. It wasn’t completely straightforward though.

    For others, if you are backing up your site locally, WP clone creates a backup zip file in your uploads directory. On my live WordPress installation, the ‘restore from URL’ function in WP Clone didn’t work with the local zip file. I had to upload it via FTP to my uploads folder on the live site, then restore from that url for it to work.

    Thread Starter hermanthegerman

    (@hermanthegerman)

    edit*- ‘sure this is possible’- I previouslt had another live developed wordpress website installed on the one database as well

    Thread Starter hermanthegerman

    (@hermanthegerman)

    forgot to post the website

    Thread Starter hermanthegerman

    (@hermanthegerman)

    I sorted it with this piece of code, which can probably be abbreviated somehow:

    }
    #access .page-item-18 a:hover {color:#ffffff}
    #access .page-item-22 a:hover {color:#4d4d4d}
    }
    #access ul li:hover > ul {
    display: block;
    }
    #access .current_page_item > a,
    #access .current_page_ancestor > a {
    font-weight: bold;
    color: #ff0033;
    }
    #access .current_page_item.page-item-18 > a,
    #access .current_page_ancestor > a {
    font-weight: bold;
    color: #ffffff;
    }
    #access .current_page_item.page-item-22 > a,
    #access .current_page_ancestor > a {
    font-weight: bold;
    color: #4d4d4d;
    }

    Thread Starter hermanthegerman

    (@hermanthegerman)

    https://martinbagshaw.co.uk/

    the home section would be as it is currently, Id like to do the same with white and grey for work and contact respectively. Here is my menu code, which probably has a lot of unnecessary stuff. Thanks for your help.

    /* =Menu
    ————————————————————– */

    #access {
    background: #000000; /* Show a solid color for older browsers */
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
    clear: both
    display: block;
    float: left;
    margin: 0 auto 6px;
    width: 100%;
    }
    #access ul {
    font-size: 18px;
    list-style: none;
    margin: 0 0 0 -1.1em;
    padding-left: 0;
    }
    #access li {
    float: left;
    position: relative;
    }
    #access a {
    color: #b3b3b3;
    display: block;
    line-height: 3.333em;
    padding: 0 1.55em;
    text-decoration: none;
    }
    #access ul ul {
    -moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
    display: none;
    float: left;
    margin: 0;
    position: absolute;
    top: 3.333em;
    left: 0;
    width: 188px;
    z-index: 99999;
    }
    #access ul ul ul {
    left: 100%;
    top: 0;
    }
    #access ul ul a {
    background: #f9f9f9;
    border-bottom: 1px dotted #ddd;
    color: #b3b3b30;
    font-size: 13px;
    font-weight: normal;
    height: auto;
    line-height: 1.4em;
    padding: 10px 10px;
    width: 168px;
    }
    #access li:hover > a,
    #access ul ul :hover > a,
    #access a:focus {
    background: #efefef;
    }
    #access li:hover > a,
    #access a:focus {
    background: #000000; /* Show a solid color for older browsers */
    color:#ff0033
    }
    #access ul li:hover > ul {
    display: block;
    }
    #access .current_page_item > a,
    #access .current_page_ancestor > a {
    font-weight: bold;
    color: #ff0033;
    }

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