Forum Replies Created
-
AuthorPosts
-
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
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
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
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
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
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
Hi,
You need to highlight a certain text or object before you can use the buttons.
Regards,
Ismael
August 6, 2013 at 5:51 am in reply to: Problems with Featured Video on "Blog" on Home Page through Advanced Layout #132817Hi,
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
Hi,
Please download the latest version of Enfold which is 1.9.1. It will fix the slider issues.
Regards,
Ismael
Hi,
Please follow the instruction here: https://kriesi.at/support/topic/how-to-avoid-rendering-extra-line-breaks#post-129384
Regards,
Ismael
August 6, 2013 at 5:41 am in reply to: Change background color of input field in the search bar #133210Hi,
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
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
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
Hi,
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
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
Hi,
Please upgrade to Enfold 1.9.1. The slider issues will be fix by then.
Regards,
Ismael
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
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
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
August 6, 2013 at 2:28 am in reply to: Enfold Add new Social Icon and change the portfolio roll over icon #133257Hi,
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
August 6, 2013 at 2:11 am in reply to: Remove pipe in title of main page; Social media icons in footer #131825Hi,
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
Hi,
Please send the login details to //…
Include the word “Kriesi” on the subject. Add the link of this thread on your email.
Regards,
IsmaelHi,
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
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
-
AuthorPosts