Forum Replies Created

Viewing 15 replies - 286 through 300 (of 686 total)
  • What happens if you go to http://www.your-website.zzz/category/sport/ ?

    You must have at least 1 post in the “sport” category.

    Sorry, I misunderstood your last reply…

    Connect to your server with Filezilla and check in …/wp-content/themes/starkers-master/ if you have or not a file called category.php

    Forum: Fixing WordPress
    In reply to: Robot.txt

    Also, did you try to use the Google Webmaster Tool ?
    It allows you to manage Google Crawlers indexing and a lot of SEO features.

    Forum: Fixing WordPress
    In reply to: Robot.txt

    In the source code of your home page, there is no Meta tag for “Description”.
    This means that Yoast All-in-One is not working or not configured correctly for “Description”.

    In “Settings”, go to “Permalink Parameters” and leave all the options by default and click “Save”.
    Then retry to load pages.

    Hi,

    Yes, it’s possible.
    If you’ve already created category menu in your blog, you have just to create PHP templates called category.php in your theme folder (based on your single.php file)

    Just copy the file single.php on your PC, rename it category.php, then upload it in your theme folder (leave the other single.php file inside the folder)

    Then, when you will click on the category menu (for example, the button “Sports”), this will normally shows “Sports” posts only.
    Finally, you can customize the template category.php you have created to match your needs.

    You can do the same for tag.php to show “%tag%” posts only.
    Tell me if it’s not clear 😉

    Not in WordPress…
    I talk about your web host provider.
    You certainly have access to a settings dashboard to manage sub-domains, email accounts, DNS table, statistics etc…

    Forum: Fixing WordPress
    In reply to: Can't format font

    Here is the CSS conflict :

    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    }
    
    element.style {
    display: block;
    font-size: 1.17em;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;

    The font-weight: inherit; attribute take precedence over font-weight: bold;

    So, to test, remove the attribute :
    font-weight: inherit;
    from the CSS master rule :
    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td

    Hi,

    Did you check the DNS table if available) on your host dashboard ?

    Hi,

    By default, excerpt length is set to 55 words. To change excerpt length using “excerpt_length” filter, add the following code to your theme’s functions.php file :

    function custom_excerpt_length( $length ) {
    	return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 100 );

    In this example, the value “100” will display excerpts limited by 100 words.

    You have to check the WordPress installation folder into your WordPress database.
    – Go to the table “wp-options”
    – Look for the option name “siteurl”
    – Check if the “option_value” is the root folder of your WordPress installation. It must match with the root folder name of your WordPress installation in your FTP server.
    – If not, fill in the field with it.
    – If yes, perhaps the root folder name of your WordPress installation has changed ! Check that.

    OK.

    Now if you have the Htaccess file like that :

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    From now, do not change anything.
    This should work all the time.

    Normally, even if you do not have a .Htaccess file (or if it’s blank) in the root folder of your WordPress installation, once you choose a Permalink settings and click “Save”, WordPress re-build all the post’s Permalinks and generate automatically a .Htaccess file in the root folder of your WordPress installation.

    What sort of Permalinks settings did you choose ?

    Hi,

    In your post, click on “Add Media”, In the drop down menu (only on WordPress 3.5) Select “Show attached images to this post” (or something like that). Then, normally you will be able to use Drag/Drop to sort your images !

    That’s it.

Viewing 15 replies - 286 through 300 (of 686 total)