Viewing 30 results - 215,161 through 215,190 (of 244,460 total)
  • Author
    Search Results
  • #307775

    In reply to: Contact form error

    Hey!

    In fact there’s an easier way to change the url. Go to Appearance > Editor, click on “functions.php” to edit the file and then insert this code at the very bottom of the file:

    
    add_filter('avia_social_share_link_arguments', 'avia_change_social_link_args', 10, 1);
    function avia_change_social_link_args($args)
    {
    	$args['linkedin']['pattern'] = "http://linkedin.com/shareArticle?mini=true&title=[title]&url=[permalink]";
    	return $args;
    }
    

    If you want to use ftp to edit the file connect to your ftp server (i.e. with Filezilla), navigate to wp-content/themes/enfold/ and download the functions.php file. Then edit the file and upload the modified file. Confirm the “overwrite file” dialog if necessary.

    Regards,
    Peter

    #307769

    @ewingmh it appears to be a problem with the thumbnails, as soon as i used the thumbnail regenerate plugin everything fell into place, for some reason enfold dose not appear to recognise the thumbnails when creating a gallery, I was having the same problems with testimonials and once regenerated again everything was fine.

    #307764

    In reply to: Blog Artikel

    Hi,

    one more:
    in enfold combo widget in the sidebar is set to run 4 Posts, displayed 6

    In WP Dashboard under Media, posts and pages appear only 6 images or post or pages everywhere.
    Even though I’ve set other values ​​under options

    Everywhere 6. What is it?

    Cheers and thanks

    Peter

    PS: I used google translate.

    #307761

    In reply to: Contact form error

    This reply has been marked as private.
    #307755
    Siracher
    Participant

    Hi, I have multiple domain names leading to the same wordpress installation
    it works so far, but the icons are not showing up

    main installation:
    http://www.freuler-verwaltungen.ch

    additional domain with missing icons:
    http://immobilien-sargans.ch/

    Is there a way it works properly?

    thanks

    #307754

    In reply to: FONT-RENDERING

    Hey devon,

    your answers (#1, #2) are not very helpful: if i would be an specialist in coding, i would not have bought enfold and would not need your help – yigit or josue are much more cooperative and help out with really useful solutions for non-specialists!!!

    Another issue:
    inserting a icon in a copytext doesn´t show the entello-icon but another similar icon. See Footer last sentence in the left column. The “heart” is not the entello icon and doesn´t really look fine… I used this html:

    <h4><span style=”text-align: left; font-size:0.5em; line-height: 2.5em; font-weight: bold; letter-spacing: 1px; “>TEXT<span style=” line-height: 25px; font-size: 1.1em;”> ♥ </span>TEXT<span></h4>

    Best regards,
    Christian

    #307751

    In reply to: Magazine thumbnails

    Hi Wils1234!

    1) You can add a background color to the preview thumbnail div element – insert the code into the child theme style.css or quick css field:

    
    .av-magazine-thumbnail {
        background-color: #333;
    }
    

    and change the color value if necessary.

    2) You can hide the date with this code:

    
    #top .main_color .av-magazine-time{
    display: none;
    }
    

    3) Use this code to change the thumbnail size:

    
    #top .av-magazine-thumbnail, #top .av-magazine-thumbnail a, #top .av-magazine-thumbnail a img {
        width: 100px;
        min-height: 100px;
    }
    

    and replace 100px with your thumbnail size. If the images display blurry you may increase the thumbnail size of the images – insert this code into the child theme functions.php (or enfold/functions.php) file:

    
    add_filter('avf_magazine_settings', 'avia_magazine_thumbnail', 10, 2);
    function avia_magazine_thumbnail($atts, $magazine){
    $atts['image_size']['small'] = 'square';
    return $atts;
    }
    

    and replace “square” with another thumbnail size like: ‘masonry’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”

    Best regards,
    Peter

    #307733

    In reply to: Blog set up

    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

    #307722

    Hi!

    You’d need to remove the Enfold form styling to fix this, open css/base.css and remove from line 184 to line 253:

    
    	#top form {
    		margin-bottom: 20px; }
    	#top fieldset {
    		margin-bottom: 20px; }
    	#top .input-text,
    	#top input[type="text"],
    	#top input[type="input"],
    	#top input[type="password"],
    	#top input[type="email"],
    	#top input[type="number"],
        #top input[type="url"],
        #top input[type="tel"],
        #top input[type="search"],
    	#top textarea,
    	#top select {
    		 -webkit-appearance: none;
    		border: 1px solid #e1e1e1;
    		padding: 8px 6px;
    		outline: none;
    		font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    		color: #777;
    		margin: 0;
    		width: 210px;
    		max-width: 100%;
    		display: block;
    		margin-bottom: 20px;
    		background: #fff;
    		border-radius: 0px;
    		}
    
    	#top input[type="text"]:focus,
    	#top input[type="password"]:focus,
    	#top input[type="email"]:focus,
    	#top input[type="number"]:focus,
        #top input[type="url"]:focus,
        #top input[type="tel"]:focus,
        #top input[type="search"]:focus,
    	#top textarea:focus {
    		box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
     		color: #555;
    		}
    	#top textarea {
    		min-height: 60px; line-height:1.5em;}
    	#top label{
    		display: block;
    		font-weight: bold;
    		font-size: 12px;  }
    	#top legend {
    		display: block;
    		font-weight: normal;
    		font-size: 15px;  }
    	#top select {
    		width: 220px; }
    	#top input[type="checkbox"] {
    		display: inline; }
    	#top label span,
    	#top legend span {
    		font-weight: normal;
    		font-size: 13px;
    		color: #444; }
    
    	#top textarea{width:100%;}
    
    #top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area, #top #wrap_all .valid .select{border:1px solid #9AA600;} /*#70A41B*/
    #top #wrap_all .error .text_input, #top #wrap_all .error .text_area, #top #wrap_all .error .select{border:1px solid #DF653E;}
    #top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area, #top #wrap_all .ajax_alert .select{border:1px solid #ffb628;}
    #top #wrap_all .valid  .input_checkbox_label{color:#9AA600;}
    #top #wrap_all .error  .input_checkbox_label{color:#DF653E;}
    

    Best regards,
    Josue

    #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

    #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

    #307689

    In reply to: Enfold Showcase

    Hi – this is my web site – still work in progress – I love Enfold as I have no technical knowledge at all so between the great support and Forum I mange – please let me know what you think http://www.berghoffgb.com/ thanks

    #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

    #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

    #307680

    Hi!

    If i understood correctly you want to mimic the behavior (play now) that happens when you hover on one of those thumbnails, to do something like that in Enfold you can use the Image Element and set the caption to show on hover (you’d put the button as the caption).

    Cheers!
    Josue

    #307675

    Hi Gabe!

    The website you linked is not an Enfold website.

    Best regards,
    Josue

    #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

    #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

    Hi Tony!

    Unfortunately that’s currently not possible. Feel free to request it here.

    Best regards, Josue
    Josue

    #307663

    Hey esemmel!

    No, this feature is currently not supported. You can suggest it here: https://kriesi.at/support/enfold-feature-requests/ though.

    Best regards,
    Peter

    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

    #307653

    In reply to: Blog Artikel

    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

    #307647

    Hi chytry!

    Maybe you need to load a different subset of the google font server – otherwise the headline font doesn’t support all characters or diacritics combinations.

    Insert this code at the bottom of your child theme functions.php file:

    
    
    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    add_filter( 'avf_google_content_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext';
    return $fonts;
    }
    
    

    If you don’t use a child theme open up enfold/functions.php and replace this code at the very top

    
    <?php
    

    with

    
    <?php
    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    add_filter( 'avf_google_content_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext';
    return $fonts;
    }
    

    At least go to to the theme option page (Enfold > Theme Options) and re-save the theme settings.

    Best regards,
    Peter

    #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

    #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

    #307640

    In reply to: Tabs

    Hey patriscia!

    Afaik this should be possible. You can use the id of the tabs to change the color. I.e.:

    
    #top #tab-id-1-container{
    background: #333;
    }
    

    will change the background color of tab 1. Replace 1 with 2 if you want to change the background color of tab 2, etc:

    
    #top #tab-id-2-container{
    background: #ff0000;
    }
    

    You can also apply a custom css class to the tabs element: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ if you want to use multiple tab elements with different background colors.

    Regards,
    Peter

    #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

    #307626

    In reply to: Change Menu

    Hey!

    Go to Enfold > Header Layout > Menu and Logo Position, select one of the “…Menu Below” options.

    Best regards,
    Josue

    #307619

    Hi Peter!

    Enable Debug Mode on both sited and copy/paste the code in the textarea that will appear below the advanced layout builder.

    Cheers!
    Josue

    dnweil
    Participant

    Our client is reporting that when using Chrome, the background header graphic (a solid gray) leaves residual color as they scroll up/down the page. This has not happened on my own Mac.

    One system that sees this:

    “I am also seeing the same issue on my computer.
    I am using Version 36.0.1985.143 and have OS X Version 10.8.5”

    Additional description:

    “Chrome Mac scrolling issue. When you scroll up and down the homepage the grey header sticks and covers text”

    Do you have recommendations?

Viewing 30 results - 215,161 through 215,190 (of 244,460 total)