Forum Replies Created

Viewing 30 posts - 62,911 through 62,940 (of 64,820 total)
  • Author
    Posts
  • in reply to: Comments section not showing up #131772

    Hi,

    You’re doing it wrong:

    <?php
    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
    ?>

    <div class='container_wrap main_color <?php avia_layout_class( 'main' ); ?>'>

    <div class='container'>

    <div class='template-page template-portfolio content <?php avia_layout_class( 'content' ); ?> units'>

    <?php
    /* Run the loop to output the posts.
    * If you want to overload this in a child theme then include a file
    * called loop-page.php and that will be used instead.
    */

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'portfolio-single' );
    comments_template( '/includes/comments.php');
    ?>

    <!--end content-->
    </div>

    <?php

    //get the sidebar
    $avia_config['currently_viewing'] = 'page';
    get_sidebar();

    ?>

    </div><!--end container-->

    <?php get_footer(); ?>

    Remove everything on single-portfolio.php then place the code above.

    Regards,

    Ismael

    in reply to: Fixing the top logo container #133434

    Hi,

    Please add this on your custom.css or Quick CSS

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 116px !important;
    line-height: 116px !important;
    }

    Adjust the height and line-height according to the height of your logo. Don’t remove the !important.

    Regards,

    Ismael

    in reply to: Logo Placement #132524

    Hi,

    You can start with this:

    Change the menu and logo container height:

    /*header with social icons: */
    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 50px; line-height: 50px; }

    Then change the logo size independently

    .logo.bg-logo {
    height: 100px !important;
    }

    Regards,

    Ismael

    in reply to: page error , loading page error #133413

    Hi,

    Looks like you added a plugin that is not compatible with the theme, please add this on your custom.css

    .shr-agile_carousel {
    display: none;
    }

    #f3d9b4362c {
    display: none;
    }

    Regards,

    Ismael

    in reply to: How to make placeholder text stop showing up #133409

    Hi,

    Place a horizontal rule element shortcode, select Whitespace then height to 1px.

    [av_textblock custom_class='']
    [av_hr class='invisible' height='1' shadow='no-shadow' position='center' custom_class='']
    [/av_textblock]

    Regards,

    Ismael

    in reply to: Change Main Menu Text Colour when on Current page #133407

    Hi,

    Please add this on your custom.css or Quick CSS to change the color of the active page menu.

    .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a {
    color: white;
    }

    Regards,

    Ismael

    in reply to: Loosing icons in default editor and text block #132927

    Hi,

    You need to highlight a certain text or object before you can use the buttons.

    Regards,

    Ismael

    Hi,

    How do you embed the videos? You can also use the Image element then supply the video url. This will render the image preview on Blog posts, once click the videos will open on lightbox.

    Regards,

    Ismael

    in reply to: Fullwidth Easy Slider/WordPress 3.6 #132754

    Hi,

    Please download the latest version of Enfold which is 1.9.1. It will fix the slider issues.

    Regards,

    Ismael

    in reply to: form integration #132254

    Hi,

    Please follow the instruction here: https://kriesi.at/support/topic/how-to-avoid-rendering-extra-line-breaks#post-129384

    Regards,

    Ismael

    in reply to: Breadcrumb PageTitle translation problem #133151

    Hi,

    Can you give us a link to the website?

    Regards,

    Ismael

    in reply to: Change background color of input field in the search bar #133210

    Hi,

    Please use this on your custom.css or Quick CSS to change the background color of the search field.

    #s {
    background: white !important;
    }

    And this for the input color.

    #top .header_color input[type='text'], #top .header_color input[type='input'] {
    color: red !important;
    }

    Change the color value.

    Regards,

    Ismael

    in reply to: Content in Tabs moved – second column. #133248

    Hi,

    Please remove the code then replace it with this:

    .tabcontainer div {
    margin-top: 0;
    }

    On the first and first image, you have a span hr inner. Please remove that to align the images properly.

    Regards,

    Ismael

    in reply to: Text area background color #131977

    Hi,

    I hope this fixes it:

    .main_color {
    background: white;
    }

    Regards,

    Ismael

    in reply to: How to avoid rendering extra line breaks? #132866

    Hey,

    Glad it is fixed now. :)

    Cheers,

    Ismael

    in reply to: Footer #133262

    Hi,

    Go to Enfold > Footer > Copyright, place [nolink].

    or manually edit footer.php, find this code

    $kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");

    Regards,

    Ismael

    in reply to: gravity forms error in admin #133269

    Hey,

    Glad it is fixed. :)

    Thanks for the tip.

    Cheers,

    Ismael

    in reply to: Shortcodes in tabs and WP restore function #133181

    Hi,

    Kriesi will give you an answer sooner or later. :)

    Cheers,

    Ismael

    in reply to: Several questions re: Enfold and links (WP newbie) #131350

    Hi,

    @BizBuzzMedia:

    Edit 404.php, find this code:

    //get the sidebar
    $avia_config['currently_viewing'] = 'page';
    get_sidebar();

    Replace it with:

    //get the sidebar
    $avia_config['currently_viewing'] = 'page';
    echo '<div class="sidebar sidebar_right three alpha units"><div class="inner_sidebar extralight-border">';
    dynamic_sidebar( '404' );
    echo '</div></div>';

    Go to Appearance > Widgets, create a custom widget and name it “404”. Supply it with widgets.

    Next time, please create a new topic for your inquiry.

    Thanks,

    Ismael

    in reply to: Stop removing line breaks #133394

    Hi,

    You can insert a horizontal rule shortcode below the content, set it to Whitespace.

    [av_icon_box icon='1' position='left' title='IconBox Title' link='' linktarget='no' custom_class='']
    Click here to add your own text
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_class='']
    Wah
    [/av_icon_box]

    Regards,

    Ismael

    in reply to: Avia and ajax #133260

    Hi,

    Please upgrade to Enfold 1.9.1. The slider issues will be fix by then.

    Regards,

    Ismael

    in reply to: Help with an ageing question #133259

    Hi,

    Please add this on your functions.php, below line 3:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Allura'] = 'Allura';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Allura'] = 'Allura';
    return $fonts;
    }

    Edit header.php, then place this code on top of </head> tag.

    <link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>

    You can now assign the Allura font using custom.css or Quick CSS. For example, we’ll change the iconbox title:

    h3.iconbox_content_title {
    font-family: 'Allura' !important;
    }

    This is the screenshot:

    Regards,

    Ismael

    in reply to: Multiple font embedding #132560

    Hi,

    Please add this on your functions.php, below line 3:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Allura'] = 'Allura';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Allura'] = 'Allura';
    return $fonts;
    }

    Edit header.php, then place this code on top of </head> tag.

    <link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>

    You can now assign the Allura font using custom.css or Quick CSS. For example, we’ll change the iconbox title:

    h3.iconbox_content_title {
    font-family: 'Allura' !important;
    }

    This is the screenshot:

    Regards,

    Ismael

    in reply to: Remove background logo image from 3 header elements? #132718

    Hi,

    I don’t see the repeating background. This is the screenshot of your website:

    Please remove browser cache then reload the page.

    Regards,

    Ismael

    Hi,

    1.) The social icons use the entypo fontello font. Right now, there is no easy way of adding a social button. Please refer to this link and follow Nick’s or my instruction: https://kriesi.at/support/topic/youtube-icon

    2.) You can change the arrow on css > base.css, find this code:

    .image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}

    Change the content property with another icon from entypo fontello. Refer to link for the entypo character maps: http://www.entypo.com/characters/

    Example, we’ll use the phone icon(U+1F4DE):

    .image-overlay .image-overlay-inside::before{content:"1F4DE"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"1F4DE";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"1F4DE";}

    You can combine different icons.

    Regards,

    Ismael

    in reply to: Using custom Google Font. #133244

    Hi,

    Have you tried this plugin? http://wordpress.org/plugins/wp-google-fonts/

    Regards,

    Ismael

    Hi,

    1.) My bad, please try this:

    add_filter('avf_title_tag','new_avf_title_tag');
    function new_avf_title_tag($title)
    {
    if ( is_front_page() ) {
    $title = get_bloginfo('name').'';
    return $title;
    } else {
    $title = get_bloginfo('name').' | ';
    $title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false);
    return $title;
    }
    }

    2.) Edit footer.php, find this code:

    <span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>

    Below, add this code:

    <?php

    $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');

    echo avia_social_media_icons($social_args);

    ?>

    Edit custom.css or Quick CSS, add this code:

    #socket .social_bookmarks {
    float: right;
    }

    #header_meta .social_bookmarks {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Cufon Style to be responsive #133255

    Hi,

    Please send the login details to //…

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Regards,
    Ismael

    in reply to: move posts to portfolio? #127737

    Hi,

    I’m not sure if this is going to work but there are plugins that enable you to convert post types.

    http://wordpress.org/plugins/post-type-converter/

    http://wordpress.org/plugins/convert-post-types/

    Regards,

    Ismael

    in reply to: Using custom Google Font. #133242

    Hi,

    Open functions.php, find this code on line 2:

    global $avia_config;

    Below, add the this code:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Monda'] = 'Monda';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Monda'] = 'Monda';
    return $fonts;
    }

    You can now select the font on Enfold > Styling > Heading fonts and Body fonts.

    Regards,

    Ismael

Viewing 30 posts - 62,911 through 62,940 (of 64,820 total)