Home>Support>How to remove Featured image on Post
  1. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Artvaz

    Please try adding the following to your custom CSS

    article.post .entry-header .entry-thumbnail img, article.page .entry-header .entry-thumbnail img {
        display: none !important;
    }
    

    Let us know how you get on

    Magus

  2. 9 years, 3 months ago artvaz

    it worked really nice!!! thanks Magus, I have another one, look my site is supposed to be viewed by spanish language people, so its quite not good to show titles like these:

    Author Archives
    Category Archives:
    Posted on….by
    posted in…

    How can I configure that so I can write the translation of that???

  3. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Artvaz

    You will need to create a child-theme in order to successfully translate those strings.
    I would recommend using this plugin to create your child-theme

    https://wordpress.org/plugins/child-theme-configurator/

    When creating this gives you the option of copying over your content to the new theme so you will not have to re-add any menu settings or sidebar settings. Once you have created the child-theme you will need to activate it.

    Once done please add the following to the child-theme functions.php by navigating to Appearance->Editor and selecting the file from the list on the right. Add it after the enqueue settings have ended.

    // Make the theme translatable
    
    function vantage_child_set_text_domain(){
    load_theme_textdomain( 'vantage', get_stylesheet_directory() . '/languages' );
    }
    add_action('after_setup_theme', 'vantage_child_set_text_domain', 15);
    

    Add a languages folder to your child theme.

    Now download http://poedit.net/. Use the vantage.pot file in the vantage languages folder to translate your theme. Save the translation in your language code, for English US it would be en_US. Poedit will create a .mo and .po file with the name you provided. Put those two files in the languages folder of your child theme.

    Finally change the langauge variable in the wp-config.php file of your WordPress root to your language code, the same code you saved your files as, eg, en_US:

    define('WPLANG', 'en_US');
    

    Let us know how you get on

    Magus

  4. 9 years, 3 months ago artvaz

    Alright thanks Magus

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More