Forum Replies Created

Viewing 13 replies - 106 through 118 (of 118 total)
  • Never seen this before 🙂 Need to remember

    Very strange. This message appears if parent theme not exist… What is the name of folder with Duena theme? If not “duena” – child theme can’t find it

    It’s a safe way for customizing your theme

    Hmm… I installed this child theme on my local PC – it works fine.
    Ok. Let’s go all the way from the beginning:

      1. First of all you must have Duena theme already installed on your blog.
      2. Download Duena_child from here
      3. You will get Duena_child-master.zip, upload this archive to your wordpress themes directory and unzip (just as usual WP theme install)
      4. Then go to Appearance -> Themes in your Dashboard – Duena-Child theme with no screenshot must appear there (Duena theme also must be in themes directory, because without it child theme will not work)
      5. Activate Duena-Child

    After this you will get Duena-Child theme activated. Then go to Appearance -> Editor and feel free in editing your child theme

    For static pages you have simple way to do this – just select Fullwidth Page template in Page Attributes meta box on Edit Page Screen.

    For single post, blog pages and blog archives this process will be more difficult. 1st question in that case – what you planning do with sidebar? Move its below other content on page?

    You can download exmaple child theme for Duena here: https://github.com/MjHead/Duena_child
    In this example changed post structure on blog page from this topic and also owerriden colors for links in file style.css. You can install and activate this child theme as well as usual WP theme.

    If you create and activate child theme for Duena, you can override this colors.
    For example, to change red color about you say(its global color for links), you just need write in style.css in your child theme something like

    a {
      color:#what_ever_you_want;
    }

    to change hover color (it also be color which can appear on click on some links) you need add to style.css in your child theme

    a:hover,
    a:focus {
      color:#what_ever_you_want;
    }

    Hi
    Can you please be more specific? Don’t exactly understand what you mean (your link is broken so not helpful). If you need center align content on your page – you have button Align Center in your Text Editor

    This theme based on Bootstrap front-end framework. So some styles placed in bootstrap.css (bootstrap/css/bootstrap.css)

    Oh, sorry, yes, it’s my big mistake.

    @antoniocarloslima – in addition to my first post before making any changes, be sure to create and activate a child theme. You can find tutorial on The WordPress Codex: http://codex.wordpress.org/Child_Themes.

    When you create and activate you own child theme for Duena you need to copy from parent theme folder post-formats with single file – standard.php, then you can go to Appearance -> Editor and do all that I wrote in my first post

    Hi.
    You need go to Apperance -> Editor in the Dashboard. Then open in Editor file standard.php.
    Find there next code

    if (has_excerpt()) {
     the_excerpt();
    } else {
     echo duena_string_limit_words($excerpt,55);
    }

    you can replace string
    echo duena_string_limit_words($excerpt,55);
    with
    the_content();
    in that case you will have full post content if not filled Excerpt field under the post edit box and your custom excerpt if this field filled.
    Or you can replace all code

    if (has_excerpt()) {
     the_excerpt();
    } else {
     echo duena_string_limit_words($excerpt,55);
    }

    with
    the_content();
    in that case you always will have full post content on blog page.
    To disable “Read more” button you need to go to Appearance -> Theme Options -> Blog and find there option Enable read more button for blog posts?

    Remember. Be careful with making changes in template files. Especially if you do not have much experience in WP templates editing

    You have theme options for editing this settings. Appearance -> Theme Options -> Navigation.

    Speed setting for faster or slower drop down

    Arrows markup – for enable or disable arrows for the items with subpages

    Hi.
    You have the “Set Featured Image” link in the “Featured Image” box on the post editing page, when you set the Featured Image using this link for it will appear on Home page.
    Don’t quite understand your 2nd question. what colors you need to change?
    And about the 3rd question – I see you have Woocommerce plugin installed and i think this article can help you – http://docs.woothemes.com/document/product-variations/

Viewing 13 replies - 106 through 118 (of 118 total)