Forum Replies Created

Viewing 15 replies - 1 through 15 (of 22 total)
  • Hi @teamrotterdam, thanks for report and sorry for inconvenience, we’ll figured out this issue and release update in nearly future.

    Hi @nownesx. Larger thumbnail is used for sticky posts and galleries.

    Hi @takh, if I understand you right way – you need to mark post as sticky to force it show as on screenshot.

    Hi @heavylion, sorry for inconvenience, we’ll figured out this issue and release update in nearly future.

    Hi!
    Sorry, but it’s little mismatch in code. We’ll fix it with nearly update. To make hot-fix right now for your theme – go to refur/inc/extras.php, line 105 and replace code:
    if ( ! is_front_page() || ! is_page_template( 'home-page.php' ) ) {
    with
    if ( ! is_front_page() && ! is_page_template( 'home-page.php' ) ) {

    Than your static front page will display featured content before main.

    Note! Don’t make any changes in parent theme except that – create own child theme and modify it.

    If for single right sidebar (like on single post). To add 2 sidebars you need a few more steps:
    1) register new widget area.
    2) create file sidebar-secondary.php (use sidebar.php as example) and put here created widget area.
    3) change wrapping div for content into <div id="primary" class="content-area col-md-4 col-sm-12 col-xs-12">
    4) include template for a new sidebar with following – <?php get_sidebar('secondary'); ?>

    Hi! To add sidebar to all pages, follow next steps:
    1. Rewrite in your child theme templates page.php, index.php, archive.php, search.php.
    2. Find in this template next code:
    <div id="primary" class="content-area col-xs-12">
    and replace it with:
    <div id="primary" class="content-area col-md-8 col-sm-12 col-xs-12">
    3. Add next code right before <?php get_footer(); ?>:
    <?php get_sidebar(); ?>

    Hi!
    Theme use the social icons from the collection of https://fortawesome.github.io/Font-Awesome/icons/. You can select the other icons there or add your own ones in case you have them.

    To replace the icons from Fortawesome.Github.io you ahve found suitable for your blog, please follow the instructions:
    1. Create the child theme of Refur and add it to your WP admin area (step-by-step guide is here in case you do it for the first time: https://codex.www.ads-software.com/Child_Themes)
    2. Add the following code to the functions.php file of your Refur child theme:

    add_filter( 'refur_allowed_socials', 'refur_child_add_socials' );
    function refur_child_add_socials( $socials ) {
        $socials['your-social'] = array(
            'label'   => 'Your social label',
            'icon'    => 'fa fa-icon-name',
            'default' => 'your account URL',
        );
    
        return $socials;
    }

    In case you have the your own icons and want to add it your theme, the procedure is quite different from the one described previously:
    1. Create the Refur child theme
    2. Add the icons to the parameter: ‘icon’
    3. Open the style.css file of your child theme and edit the CSS styles here. For example:

    add_filter( 'refur_allowed_socials', 'refur_child_add_socials' );
    function refur_child_add_socials( $socials ) {
        $socials['your-social'] = array(
            'label'   => 'Your social label',
            'icon'    => 'my-icon-name',
            'default' => 'your account URL',
        );
    
        return $socials;
    }

    and add the name of the icon without spaces in the ‘icon’ parameter

    Hi! Please open the Settings page in your admin area-> Reading-> “Front page displays” option-> select “A static page (select below)”-> choose the desired Home page in the list under this option-> save changes. Then please go to Pages-> All Pages-> open the needed page in the editor-> “Page Attributes” block with page settings-> choose template “Posts With Featured Content” for the required page.

    Hi! Slider shows featured images from latest posts, so you just need to add couple posts and attach featured images for them

    Hi!
    You need to add next code into functions.php in your child theme:

    add_filter( 'azeria_disabled_meta', 'azeria_child_disable_date' );
    function azeria_child_disable_date( $disabled ) {
        return array_merge( $disabled, array( 'date' ) );
    }

    Hi!
    – You can try do this in 3 ways: a) hide it with CSS; b) clear site name and description in settings; c) rewrite in your child theme template header.php and remove there next code <?php azeria_logo(); ?>.

    – Yes, you need to add next code into functions.php in your child theme:

    add_filter( 'azeria_image_sizes', 'azeria_child_image_sizes' );
    function azeria_child_image_sizes( $sizes ) {
        $sizes['slider-thumbnail']['height'] = 300; //(or any value you want)
        return $sizes;
    }

    Than you need to regenerate existing thumbnail with Regenerate Thumbnails plugin and lider height will automatically changed to new value.

    Hi @5ingingwolf!
    We just released new Azeria version 1.1.0. This release includes new Font Awesome version with updated Google+ icon, which you looking for.

    If you select your latest posts as home page – you can use .home instead of .post-id-...

    Hi!
    It’s not the best solution, but you can hide this block on all pages with next code: .custom-box-about {display:none;} and than show it on selected pages with this code – .page-id-44 .custom-box-about {display:block;} (set specific ID for pages you need). Use custom CSS plugin or child theme to add this CSS.

    Child themes tutorial – here
    Custom CSS plugin (this for example, you can use anyone) – here

Viewing 15 replies - 1 through 15 (of 22 total)