Forum Replies Created

Viewing 30 posts - 46,321 through 46,350 (of 66,065 total)
  • Author
    Posts
  • in reply to: Image blog post out of container #481206

    Hey!

    I logged in to the site to check the settings but I can’t see the Settings > Media panel. Can you please provide the url?

    Best regards,
    Ismael

    Hey Carl Emil!

    Thank you for using Enfold.

    This is the default styling of the heading tag which works well on retina displays.

    .products .product h3, .products .product h4, .products .product h5, .products .product h6 {
        padding-top: 5px;
        font-size: 1em;
        line-height: 1.3em;
        font-weight: normal;
        margin: 0;
    }

    And this is your own css modification in the style.css file which is not retina ready:

    .inner_product_header h3 {
        font-family: "brandon-grotesque";
        font-size: 16px !important;
        font-weight: bold !important;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: #0a4d6d;
    }

    You can use css media queries specifically for retina displays: https://css-tricks.com/snippets/css/retina-display-media-query/

    Best regards,
    Ismael

    Hi!

    I think it’s just a cached version of the site. Looks OK now: http://www.ambitiousprnew.sensiblesmallbusinesswebsites.com/

    We set the transition to Slide from right.

    Cheers!
    Ismael

    in reply to: modify header with personal picture #481191

    Hi!

    I checked the site and header background looks OK. Did you fix it?

    Cheers!
    Ismael

    in reply to: Header problems on iPad #481186

    Hey!

    1.) Add this in the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .responsive .phone-info {
        float: none;
        width: 100%;
        clear: both;
        text-align: center;
    }}

    2.) You can set the Enfold > Header > Mobile Menu > Header Mobile Menu activation to the second option. It will force the mobile menu to show earlier.

    3.) If you want to adjust the vertical position of the title, use this:

    .title_container .main-title {
        top: 2px;
    }

    Adjust the top position value if necessary.

    Cheers!
    Ismael

    in reply to: Problem with Enfold Facebook widget #481178

    Hey!

    Alright. Please post the login details so that we can check it. Set it in the private field.

    Regards,
    Ismael

    in reply to: woo product images same size! #481176

    Hey!

    The max width and height of the images in the product page is set to 450px by default. They will not go larger beyond that point unless you happen to change the size on Woocommerce > Settings > Products > Display panel. You can create a canvas 450x450px in size then attach the product image there before uploading them. Use photoshop or any image editor.

    Regards,
    Ismael

    in reply to: An error occured by updating Enfold #481172

    Hey!

    There is no problem with the files. They can be easily transferred whenever you want. The problem is with the database. Maybe, you can ask your hosting provider to fix it for you. You can ask them for the access on the dev site.

    Regards,
    Ismael

    in reply to: (Transparent + Mobile) Header Questions #481171

    Hi!

    I checked the home page and it is not set to transparent header. The option will only work for pages with transparent headers. It’s not going to work for the “Header is invisible and appears once the user scroll down” option.

    Best regards,
    Ismael

    Hi!

    It’s not a critical error so you can just ignore it. This will help clear things out a bit. http://stackoverflow.com/questions/9869150/illegal-string-offset-warning-php

    Best regards,
    Ismael

    in reply to: issues with onepage-anchor menu #481156

    Hey!

    I checked the html markup of the site and the scripts and stylesheets are loaded right after the body tag. Why is that? Those scripts should be included in the head tag. Did you install a plugin to change it? I was able to reproduce the issue on my installation and the code above fixed it.

    Cheers!
    Ismael

    in reply to: Magazine #481142

    Hi!

    You can replace this code:

    $excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');
    

    with this:

    $excerpt = get_post($entry->ID);
    				$excerpt = preg_split( '/<!--more(.*?)?-->/', $excerpt->post_content );
    

    And this line:

    if($excerpt)$output .=		"<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}</div>";
    

    with this:

    if($excerpt)$output .=		"<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt[0]}</div>";
    

    It’s basically the same as your first solution. Regarding the br tags, unfortunately, that is the default behavior of the wp editor. I don’t think we can do anything about it. If you want to preserve the br tags, try not to switch to the visual editor. You can also try this plugin:

    https://wordpress.org/plugins/toggle-wpautop/

    Cheers!
    Ismael

    in reply to: Easy slider with video, header, icon #480687

    Hey!

    1.) If you want a search bar inside the mobile menu, add this in the functions.php file:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    After that, use this code in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    	#top #searchform>div {
    		display: block !important;
    		opacity: 1 !important;	
    	}
    }

    2.) I’m sorry but you can’t add a link to the fall back image.

    Best regards,
    Ismael

    in reply to: Different order on flex_columns in responsive mode #480685

    Hey!

    Where did you add the columns? What page? Please add the url here.

    Regards,
    Ismael

    in reply to: Easy Slider responsive height scale images #480683

    Hi!

    The slider images resize correctly but you have this css code which breaks the default layout of the color section.

    #home-images-section {
        position: fixed;
    }

    I assumed this code is needed to create a fixed background effect.

    Regards,
    Ismael

    in reply to: Full Width Easy Slider Video #480675

    Hi!

    Did you try to adjust the height and width property?

    Cheers!
    Ismael

    in reply to: No widgets with Google Maps #480672

    Hi!

    So.. it is OK now? Did you use the widget area element?

    Best regards,
    Ismael

    in reply to: Separator Whitespace Problem… #480669

    Hey!

    I’m not sure if we understand each other correctly. I’m using google translate to read your inquiry. Please post the login details here. We will check it.

    Cheers!
    Ismael

    in reply to: menu bar, main navigation #480668

    Hi!

    1.) Please remove that code then replace it with this:

    #top .main_menu .menu {
        background-color: rgba(255,255,255,.8);
        height: 70px;
    }

    Don’t forget to remove browser cache before checking the page.

    2.) Alright. Use this to remove the top border of the sub menu:

    .av-main-nav > li > ul {
        border-top: 0;
    }

    3.) The shuffle mode is ON when you checked it? Please remove browser cache then test the slider again. You might be looking on a cached version of the site.

    4.) If the plugin didn’t work, please hire a freelance developer. You can contact codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Unable to format text #480663

    Hi!

    I logged in to the site yesterday and yes, I can see the issue. Is it OK if we switch to a default theme while checking the site? We would like to fix the issue but unfortunately, we are not familiar with the plugin so it will help a lot if you can contact the plugin author. Note that we don’t provide support for third party plugins as stated on our support policy but we will try to find the issue.

    Cheers!
    Ismael

    in reply to: Masonry on iPad vanished #480660

    Hey!

    I can’t reproduce the issue on an iPod. Anyway, please try to add this in the functions.php file:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
    	-webkit-animation: none; /* Safari 4+ */
    	animation:         none; /* IE 10+ */
    }

    It will disable the masonry animation. Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: issues with onepage-anchor menu #480650

    Hey!

    Please try to add this to the functions.php file:

    add_action('wp_footer', 'add_custom_script');
    function add_custom_script(){
    ?>
    <script>
    (function($){
    		$(window).scroll(function () {
    			 var sliderheight = $('.avia-fullscreen-slider').height(),
    				 winh = $(window).scrollTop() + 1,
    				 menu = $('.html_header_sidebar #header .av-main-nav > li:first-child');
    				 // console.log(sliderheight + " " + winh);
    			if(sliderheight < winh && !$('.html_header_sidebar #header .av-main-nav > li:not(:first-child)').hasClass('current-menu-item')) {
    				$(menu).addClass('current-menu-item');		
    			} else {
    				$(menu).removeClass('current-menu-item');
    			}
    		});
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Magazine #480635

    Hi!

    Please remove the modifications above then look for this code:

    if(empty($this->atts['thumbnails']))
    				{
    					 $image = "";
    					 $extraClass = "av-magazine-no-thumb";
    				}

    Below, add this code:

    $excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');
    

    If you want to increase the excerpt length, use this in the functions.php file:

    add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
    function avf_magazine_excerpt_new_lenght($excerpt) {
    $excerpt = 200;
    return $excerpt;
    }

    The br and p tags are remove because of the wpautop function which is a default feature of WordPress. https://codex.wordpress.org/Function_Reference/wpautop

    Best regards,
    Ismael

    Hey!

    If you build the content of the post by using the advance layout builder, the content is not going to show up in the archive or category pages. You need to create a summary in the Excerpt box of the post. Unfortunately, it’s not possible to display the ALB content on archive or category pages without major modification on the theme.

    Best regards,
    Ismael

    in reply to: Magazine excerpt #480625

    Hey!

    You can follow the solution provided here: https://kriesi.at/support/topic/disable-dates-showing-in-magazine/#post-441877

    Regards,
    Ismael

    Hi!

    Thank you for the screenshot.

    I checked the screenshot and the link but I don’t see any connection between the two. What is the actual url of the category in the screenshot?

    Regards,
    Ismael

    in reply to: Language meta tags #480621

    Hey brian7454!

    Thank you for using Enfold.

    There is an available filter for the language_attributes function: https://developer.wordpress.org/reference/functions/language_attributes/

    Maybe, you can create a new filter in the functions.php file. Something like this:

    add_filter('language_attributes', 'language_attributes_mod', 10, 1);
    function language_attributes_mod($output) {
    	// Changes here..
    	 return $output;
    }

    Regards,
    Ismael

    in reply to: Empty strong tag #480613

    Hey Daniel!

    Thank you for using Enfold.

    If possible, please create a single thread for each question. It will be much easier for us to focus on your inquiries.

    1.) Please follow the solution provided here: https://kriesi.at/support/topic/logo-in-h1-tag-syntax/#post-403733

    2.) Try to add this to the Quick CSS field:

    #header .twelve.units {
        width: 1200px !important;
    }

    3.) Use this css code:

    #top #payment .terms {
        text-align: left;
    position: relative;
    }
    
    #top #payment .terms label[for="terms"] {
        margin-left: 10px;
    }
    
    #top #payment .terms #terms {
        position: absolute;
        left: 10px;
        top: 5px;
    }

    Cheers!
    Ismael

    in reply to: Black and White Portfolio Grid #480607

    Hi georgesociel!

    Thank you for using Enfold.

    You can add this in the Quick CSS field:

    .grid-image img {
        width: 100%;
        display: block;
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: gray;
        -webkit-transition: all .6s ease;
        transition: all .6s ease;
        -moz-transition: all .6s ease;
        -o-transition: all .6s ease;
    }
    
    .grid-image:hover img {    filter: grayscale(0%);
        -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
        filter: none; }
    .image-overlay { display: none !important; }
    

    Regards,
    Ismael

    in reply to: No widgets with Google Maps #480076

    Hi!

    Rikard is correct, the sidebar is being pushed down by the google map widget section. Try to disable the sidebar on the page then use the Widget Area element instead. Use columns to separate the content and the widget area.

    Regards,
    Ismael

Viewing 30 posts - 46,321 through 46,350 (of 66,065 total)