Forum Replies Created

Viewing 30 posts - 57,631 through 57,660 (of 67,197 total)
  • Author
    Posts
  • in reply to: Issue with posts displayed in category pages #282343

    Hey!

    Thank you for the info.

    Look for this line of code:

    echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
    echo $content;
    echo '</div>';
    

    Replace it with:

    echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
    if(!is_archive()){
                echo $content;
    			} else {
    		$excerpt = get_the_post_thumbnail( get_the_ID(), "large");
    		$excerpt .= get_the_excerpt();
    		$excerpt .= '<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a>';
    		echo $excerpt;
    			}
    echo '</div>';

    Cheers!
    Ismael

    in reply to: Video shortcodes now working #282341

    Hi!

    Thank you for the update.

    We’re still not sure why the video shortcode is not working on your end but there’s a big chance that a third party plugin is causing this. Please deactivate all plugins then test it on another browser. If possible test it on another computer.

    Regards,
    Ismael

    in reply to: Main Menu Disappearing Halfway Down Page #282340

    Hey tlow87!

    Thank you for using the theme!

    The color sections should be enclosed inside the main container but some of the color sections starting from caliber_standard section is not inside the main and wrap_all container. There maybe some unclosed tags inside those sections which breaks the layout of the theme. Please check all color sections inside the page including the elements inside them. See if you forgot to close some of the html tags. What’s happening is the wrap_all container ends before the caliber_standard section which hides the header.

    Cheers!
    Ismael

    in reply to: Partner/Logo Element Issue #282336

    Hey djshortkut!

    Thank you for visiting the support forum!

    1.) Remove the top border with this:

    div#equipment {
    border: none;
    }

    2.) On the Social Icons url, add the mailto function. Something like this:

    mailto: (Email address hidden if logged out) 
    

    Regards,
    Ismael

    in reply to: Issues after updating to latest version #282335

    Hi!

    Thank you for the info.

    I’m really sorry but you need to edit the sliders again. There are a lot of code improvements on the latest layer slider patch and some of those might be related to the slider settings causing some of your previous options to be altered.

    Best regards,
    Ismael

    in reply to: Dark background problem #282331

    Hey!

    Glad it is working now. There’s something wrong with your installation, the header is being called twice somehow. The sections should be wrapped inside the main container but they’re not like that on your installation. Please deactivate all plugins then test it again. Is it ok if we deactivate all plugins while working on the site?

    Best regards,
    Ismael

    in reply to: Image overlapping Header and Main content #282326

    Hey!

    Add this on Quick CSS or custom.css:

    .logo, .logo a {
    overflow: visible;
    }

    Best regards,
    Ismael

    in reply to: footer background not showing #282324

    Hey jazbird!

    Thank you for visiting the support forum!

    The footer background is there when I checked the website. It is a bit faint but it’s there. This is he applied css snippet for the background color:

    .footer_color {
    background: #f8f8f8 url(https://64.19.142.11/curvesecurities.com.au/wp-content/uploads/2013/04/footer_bg2.jpg) top center repeat-x fixed;
    }

    Best regards,
    Ismael

    in reply to: Big issue bug updating changes not take effect #282320

    Hi!

    I’m sorry but we can’t access the wp dashboard. There is a “forbidden” error.

    Regards,
    Ismael

    in reply to: server won't recognize child-theme #282316

    Hey Frederic!

    Thank you for using the theme!

    Please provide the link to the website and the code inside the child theme’s style.css.

    Regards,
    Ismael

    Hi!

    You forgot to close the strong tag on the special heading “ACCELERATING THE GROWTH OF HIGH-TECH INDUSTRIES”. The advance layout builder is quite sensitive with unclosed tags.

    Regards,
    Ismael

    in reply to: Set Social Share Icons manually #282285

    Hi!

    Yes, that’s possible. Replace the code with this:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if(is_singular('portfolio')) {
    	$share = avia_social_share_links(array(), false);
    	$hr = '<div style="height:1px; margin-top:50px;" class="hr"></div>';
    	$content  = $share . $hr . $content;
    	}
    	return $content;
    }
    

    Regards,
    Ismael

    in reply to: facebook Likebox doesn't show on ipad #282280

    Hey!

    Alright. I checked the page again and it’s showing the facebook module now . Adjusting the browser screen to iPad view works fine too.

    Cheers!
    Ismael

    in reply to: Problems with Quick CSS #282279

    Hey!

    Glad we are able to help. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    in reply to: Hiding / modifying headers and sidebar #282277

    Hey!

    If I am not mistaken, you’re trying to apply the gradient on the active menu item. Is that correct? Please use this:

    .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item {
    background: -o-linear-gradient(right, #93C144 , white);
    background: -moz-linear-gradient(right, #93C144 , white);
    background: linear-gradient(to right, #93C144 , white);
    }

    Cheers!
    Ismael

    Hi!

    Yes, please. Create a test page then we’ll inspect it.

    Best regards,
    Ismael

    in reply to: Font color for main menu links #282275

    Hi!

    Go to the Quick CSS field then look for this code:

    @media only screen and (max-width: 768px) {
    .responsive .mobile_slide_out .logo a img {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    float: none;
    }
    }

    Increase the left property if you want to move it slightly to the left.

    Cheers!
    Ismael

    Hi mareva!

    Thank you for using the theme!

    You can add this on Quick CSS to get rid of the overlapping dotted borders:

    #top #main .sidebar {
        border-left: none;
    }

    Regards,
    Ismael

    in reply to: Dark background problem #282120

    Hi!

    I’m sorry but I think the functions.php on your child theme folder hasn’t been replaced yet. Please follow the instruction here: https://kriesi.at/support/topic/homepage-layout-problem-occured/

    If you’re not sure what to do, please post the ftp login credentials here. We’ll upload the functions.php on your child theme folder.

    Regards,
    Ismael

    in reply to: Issue with Lightbox not vertically centered #282118

    Hey rubendeveloper!

    Thank you for using the theme!

    Please deactivate all plugins then test the page on another browser.

    Best regards,
    Ismael

    in reply to: Header.php? #282116

    Hi!

    Thank you for the link.

    It is working fine when I checked the website. It’s not being covered by color sections. Try to increase the z-index of the floating box:

    #floatbox {
    max-width: 300px;
    height: 150px;
    background: #fcfda8;
    position: fixed;
    padding: 15px;
    right: 10px;
    top: 200px;
    bottom: 250px;
    font-family: arial;
    font-size: 18px;
    z-index: 9999;
    }

    Just add the z-index property.

    Regards,
    Ismael

    in reply to: Creating and using a different sidebar #282111

    Hey!

    Thank you for the update.

    Please add this on functions.php in order to increase the sidebar width:

    
    
    function avia_increase_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    	$avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    	$avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);
    

    Regards,
    Ismael

    in reply to: Woocommerce product jumping to new line #282096

    Hi!

    Thank you for the info.

    Please use this on Quick CSS or custom.css:

    #top .inner_product .thumbnail_container img {
    max-height: 229px !important;
    }

    Cheers!
    Ismael

    in reply to: Aspect ratio of Header-Logo #282095

    Hey tcoq!

    Thank you for using the theme!

    Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    height: 58px !important;
    max-height: 58px !important;
    width: 300px !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Google Maps Shortcodes #282092

    Hi!

    Thank you for the update.

    Unfortunately, it’s not possible and if you have multiple addresses you can only adjust the Zoom Level in order to show all addresses on page load.

    Best regards,
    Ismael

    in reply to: Custom CSS in each Avia Element #282091

    Hey Ignazio!

    Thank you for using the theme!

    Yes, it’s possible. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    in reply to: facebook Likebox doesn't show on ipad #282090

    Hi!

    The facebook url should link to a facebook fanpage, not personal profiles.

    Enter the url to the Page. Please note that it needs to be a link to a facebook fanpage. Personal profiles are not allowed!
    

    Regards,
    Ismael

    in reply to: Single Post Feat Image position #282085

    Hi Gurify!

    Thank you for visiting the support forum!

    Edit includes > loop-index.php, remove everything then replace it with this code:

    http://pastebin.com/EQ2Bziaa

    Add this on Quick CSS or custom.css:

    .post-meta-infos {
    top: 0;
    }
    
    .single .template-blog .post .entry-content-wrapper {
    margin-top: 10px;
    }

    Best regards,
    Ismael

    in reply to: Blurry iPhone Text on PostSlider #282081

    Hi!

    Thank you for the update.

    We don’t have permission to view the screenshots. Please use imgur, dropbox etc.

    Regards,
    Ismael

    in reply to: Set Social Share Icons manually #282080

    Hi!

    Thank you for the update.

    From what I understand, you only want to show the share section on portfolio items. Is that correct? Try to use this:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if(is_singular('portfolio')) {
        $content .= avia_social_share_links(array(), false);
    	$content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>';
    	}
    	return $content;
    }

    Regards,
    Ismael

Viewing 30 posts - 57,631 through 57,660 (of 67,197 total)