Forum Replies Created

Viewing 30 posts - 56,401 through 56,430 (of 67,207 total)
  • Author
    Posts
  • in reply to: Please contribute and translate Enfold #307736

    Hey!

    @webpress: Thank you!

    Regards,
    Ismael

    in reply to: Changing the white space between blog entries #307734

    Hey!

    Alright. Please add this at the bottom of the last code we suggested.

    .single .template-blog .post-entry-last .post_delimiter {
    margin: 0 0 50px 0;
    padding: 50px 0 0 0;
    }

    Best regards,
    Ismael

    in reply to: Blog set up #307733

    Hi rpl_admin!

    Thank you for using Enfold.

    Create a page then set it as blog on Theme Options > Where do you want to display blog? option. Edit the blog layout on Enfold > Blog Layout panel. You can also edit the blog page using the Advance Layout Builder but you need to set the Blog Style to the very last option.

    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. :)
    Thanks!

    Best regards,
    Ismael

    in reply to: Content Timeline plugin conflict #307730

    Hi!

    The memory limit is still 40M. Please contact your host, maybe they put a limit on the wordpress memory configuration. If possible, set it to 128M.

    Regards,
    Ismael

    in reply to: Uneven text – I am stuck… HELP! #307724

    Hey stefaniesomers!

    Thank you for using the theme.

    It’s not adding an automatic bottom margin on the last image element which is odd. Please use this on Quick CSS or custom.css:

    .avia-image-container.av-styling-.avia-builder-el-14.el_before_av_section.avia-builder-el-no-sibling.avia-align-center {
    margin-bottom: 10px;
    }

    Best regards,
    Ismael

    in reply to: Configure height of portfolio grid even #307721

    Hi itechiesnet!

    Thank you for using Enfold.

    You can specify an excerpt manually using Excerpt meta box. Edit a portfolio item then look for Screen Options. Enable the Excerpt box.

    Best regards,
    Ismael

    in reply to: Suchergebnisseiten ohne Abbildung #307717

    Hey adrianwackernah!

    Thank you for using Enfold.

    I translated this inquiry using google translate so forgive me if it’s not clear enough for me. From what I understand, you want to show featured images on the search results. You can refer to this link: https://kriesi.at/support/topic/add-featured-image-to-search-results/#post-249161

    Regards,
    Ismael

    in reply to: I have a big problem with gallery view #307709

    Hey!

    Thank you for the info.

    Did you set the Gallery Preview Image Size when you edit the Gallery element? Set it to Shop Thumbnail because there’s a big chance that you’ll have uniform thumbnail sizes. Of course it is better if you upload images with the same ratio or better still the same size.

    Best regards,
    Ismael

    in reply to: Blog Artikel #307705

    Hi!

    Alright. Please post the login details here and set it as a private reply. We would like to check it.

    Cheers!
    Ismael

    in reply to: It keeps the changes if I upgrade the theme? #307696

    Hey!

    The change or modification on the link you provided should be done on avia.js file not on function.php. If you want to modify the avia.js file on the child theme, add this on the child theme’s functions.php:

    if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    	wp_dequeue_script('avia-default');
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, true);
    	wp_enqueue_script( 'avia-default-child' );
    }

    Create a js folder then insert the avia.js file.

    Cheers!
    Ismael

    in reply to: Rules (border) below header and main title #307692

    Hey Paul!

    Thank you for visiting the support forum.

    Please use this on Quick CSS or custom.css to remove the bottom border of the header:

    #header_main {
    border-bottom: none;
    }

    Cheers!
    Ismael

    in reply to: Blog Entry Content Header – No URL Link #307691

    Hi Tk909!

    Thank you for using the theme.

    You can edit includes > loop-index.php, find this code on line 186:

    echo $content;
    

    Replace it with:

    if(!is_single()) {
    			echo '<a href="'.get_permalink().'" class="content-link">';
                echo $content;
    			echo '</a>';
    			} else {
    			echo $content;
    			}

    Use this on Quick CSS or custom.css to change the color of the content link:

    a.content-link {
    color: #333333;
    }
    
    a.content-link:hover {
    color: #333333;
    text-decoration: none;
    }

    Best regards,
    Ismael

    in reply to: Increase width of side column #307687

    Hey Justin!

    Thank you for using the theme.

    Are you referring to the sidebar? You can add this on functions.php 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: Logo in Mobile format Is Stretched #307686

    Hey!

    Autoptimize is still enabled so I disabled it but the css is still not working. Please go to wp-content > uploads > dynamic_avia folder then delete the enfold_child.css file there. Go back to the Theme Options then toggle any settings to regenerate the file.

    Regards,
    Ismael

    in reply to: Remove Date Category Author from Blog Post Page Widget #307682

    Hi MKW270210!

    Thank you for using Enfold.

    Please use this on QuicK CSS or custom.css to remove the date on blog or latest news widget:

    span.news-time {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Custom sticky footer navigation isn't displaying properly #307679

    Hey!

    Alright. Please add this on Quick CSS or custom.css:

    /* Sticky Footer Styles */
    	.sticky-footer {
    	position: fixed;
    	bottom: 10px;
    	z-index: 999;	
    	background: transparent;
    	padding:5px 10px;		
    	width:100%
    	}
    	
    	.sticky-footer .wrapper {
    	margin: 0 auto;	
    	width:100%;	
    	max-width:1002px;
    	background: #ffffff;
    	border-top: 1px solid #999999;
    	border-bottom: 1px solid #999999;
    	}
    	
    	.sticky-footer p {
    	color: #000000;
    	text-align:center;
    	}
    /*

    Edit functions.php, add this code:

    function sticky_footer() { ?>
    
    <div class="sticky-footer">
            <div class="wrapper">
                <p>Some text here, and some more and some more and a bit more.</p>
            </div><!-- end .wrapper -->
    </div><!-- end .sticky-footer -->
    
    </script>
    <?php }
    
    add_action('wp_head', 'sticky_footer');

    Regards,
    Ismael

    Hi!

    Thank you for the screenshot.

    You can use this on Quick CSS or custom.css:

    .home .fullsize .template-blog .post .entry-content-wrapper {
    margin-top: 0;
    width: 80%;
    float: right;
    }
    
    .home .fullsize .template-blog .blog-meta {
    float: left;
    width: 20%;
    }
    
    .home .fullsize .template-blog .post-title, .home .fullsize .template-blog .post-meta-infos {
    text-align: left;
    }

    Please visit Envato Studio or Werkpress for further customization.

    Best regards,
    Ismael

    in reply to: enfold > color section > boxed (not full width) #307673

    Hi David!

    Thank you for using Enfold.

    Do you mind providing a screenshot on how you want it to look like? Why did you add this code?

    .avia-section {
    width: 80%;
    }

    The width of the color section should be 100% by default.

    Regards,
    Ismael

    in reply to: Another site-wide footer area #307668

    Hi kimchan2!

    Thank you for using Enfold.

    You need to edit the footer.php file or you can add a color section at the very bottom of every page then add column layouts. Inside the columns, you can add the Widget Area element.

    Best regards,
    Ismael

    in reply to: Portfolio Grid How to place them in Alphabetical Order #307667

    Hey TheodoraPhotography!

    Thank you for using the theme.

    Yes, that is possible. Use this on functions.php:

    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    
    function avf_custom_post_grid_query ( $query ) {
    $query['orderby'] = 'title';
    $query['order'] = 'DESC';
    return $query;
    }

    Refer to this link for more sorting parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters`

    Regards,
    Ismael

    in reply to: adding google+ code to homepage #307666

    Hey hughsieg5!

    Thank you for using the theme.

    If I am not mistaken, the code should go after the body tag so you can add something like this on functions.php:

    function google_add() { ?>
     GOOGLE+ CODE HERE
    <?php }
    
    add_action('wp_head', 'google_add');

    Regards,
    Ismael

    Hey Wolfgang!

    Thank you for using Enfold.

    I tested this on my local installation and it’s not opening a new window.

    <a href="http://www.youtube.com/watch?v=G0k3kHtyoqc">Open This</a>
    

    Do you mind if we take a look at the actual page?

    Regards,
    Ismael

    in reply to: Blog Artikel #307653

    Hey!

    Thank you for using Enfold.

    Please edit the masonry element on your blog page then look for the Post Number to increase the number of articles or posts. I’m sorry if I didn’t understand your inquiry clearly, I used google translate.

    Cheers!
    Ismael

    in reply to: Body text color unable to change all at once! #307645

    Hi Kayzel!

    Thank you for using Enfold.

    Please check the text block on this page: http://www.kingsleymethod.com/about-us/

    There is an inline color style. Please remove it.

    <div style="color: #222222;">“The executive team at The Kingsley Method come from all walks of life, understanding that each person, each being, is purpose-build for their own individual success. We endeavour to uncover and understand what makes each person unique, with their own in-born skills and talents, and how we can nurture this in-born talent for a happy and successful adventure in our very limited life span. We only seek to empower each individual with the knowledge of what life has already bestowed upon them, and how to use them to the fullest for their own individual success and happiness.”</div>
    

    Remove the style=”color: #222222; part.

    Cheers!
    Ismael

    in reply to: Extra BR tags added to code but only on some pages. #307642

    Hi Dan!

    Thank you for using Enfold.

    I checked the website but it’s broken. Obviously the scripts and stylesheets are not being loaded. Please try to disable the plugins then test it again.

    Best regards,
    Ismael

    in reply to: Making Images align with background width on Homepage #307641

    Hey!

    Thank you for the info.

    You can add this on Quick CSS or custom.css to change the width of the second column with the two images:

    .flex_column.av_two_fifth.avia-builder-el-13.el_after_av_three_fifth.avia-builder-el-last {
    margin-left: 1.4%;
    width: 41%;
    }

    You need to add images with height equal to the first one. Or you should probably custom code it. Add a 1/1 column then add a text block inside. Use html codes to add the images.

    Best regards,
    Ismael

    in reply to: display error in connection with the scrolling #307638

    Hey!

    This is an irregular issue. Some websites made with Enfold have it, some don’t. Anyway, it will be preserved as long as you added the code on the Quick CSS. Regarding the unread / read posts, you might need to use plugin to do that. Like these ones for example:

    https://wordpress.org/plugins/mark-as-read/
    https://pippinsplugins.com/mark-as-read-for-wordpress/

    Regards,
    Ismael

    in reply to: google fonts brauche hilfe help #307243

    Hey gowapi!

    Thank you for using Enfold.

    You can use this on functions.php to add google fonts:

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

    The Raleway font will be added as an option on General Styling > Body Font (Defines the Font for your body text).

    Best regards,
    Ismael

    in reply to: Logo in Mobile format Is Stretched #307240

    Hi!

    I’m sorry but it’s not there. Please use this instead:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    max-width: 100%;
    height: 27px !important;
    max-height: 27px !important;
    }
    
    .responsive .mobile_slide_out .logo {
    float: left;
    top: 30px;
    position: relative;
    }
    }

    If it’s alright, please post the login details here. We would like to check it.

    Regards,
    Ismael

    in reply to: Parallax Scrolling??? #307239

    Hey!

    Thank you for the update.

    You can find the Color Section element on the Layout Elements panel along with the 1/1 column etc.

    Cheers!
    Ismael

Viewing 30 posts - 56,401 through 56,430 (of 67,207 total)