Forum Replies Created

Viewing 30 posts - 37,591 through 37,620 (of 66,745 total)
  • Author
    Posts
  • in reply to: Moving phone info in header #735189

    Hi,

    Can you help me with the code to align the logo with the background-image?

    1.) Please use this css code to adjust the top position of the logo image.

    .logo img {
        top: 15px;
    }

    I would also like to change the background-image on the mobile so that it is placed under the logo with some padding above and below.

    2.) Could you please provide a screenshot of the layout that you have in mind? Please use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    Hi,

    I can’t reproduce the issue on my installation, maybe I don’t have the exact settings. Could you please provide the login details so that we can check page settings? What is the original purpose of the css modifications above? Why do you need it? I added it in my installation but it’s not doing anything, again, maybe because of the page settings or layout.

    Best regards,
    Ismael

    in reply to: Date and Author Missing from single post with Grid View #735185

    Hi,

    no the post titled “Squash + skinnypasta = a new mom’s dream meal” is still missing date and author for some reason.

    Yes, I didn’t notice that. My bad. I’m not sure why it doesn’t have the date info. Have you tried to delete it then re-create it from scratch? Make sure to delete it permanently in the trash to avoid minor slug or url conflict. And what happens if the plugins are deactivated?

    Best regards,
    Ismael

    in reply to: Which function is responsible to display the_content(). #735184

    Hey Legendaryz,

    Thank you for using Enfold.

    Which element or template are you referring to? Is this the post item? If it is, you can find the function in the includes > loop-index.php file.

    $current_post['content'] 	= $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>') : get_the_excerpt();
    	$current_post['content'] 	= $blog_content == "excerpt_read_more" ? $current_post['content'].'
    <div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>
    ' : $current_post['content'];
    

    It’s the get_the_content or the get_the_excerpt function, depends which option is enabled in the backend.

    Best regards,
    Ismael

    in reply to: homepage categories same as menu #735182

    Hey happybloodycamper,

    Thank you for using Enfold.

    The is the blog posts element set to 2 columns. You can insert the element inside a grid row or a color section then set the columns to 4.

    Best regards,
    Ismael

    in reply to: How to remove date from Google Snippet? #735180

    Hey Flávio,

    Thank you for using Enfold.

    Please provide a link or url to the actual page with the date info. Is this a single post item?

    Best regards,
    Ismael

    in reply to: [solved] enabling avia_builder for CPF doesn't work #735162

    Hi,

    The $post_type or the first parameter of register_post_type function should not contain capital letters.

    // https://codex.wordpress.org/Function_Reference/register_post_type

    Instead of creating the custom post manually, please use the following plugin.

    // https://wordpress.org/plugins/custom-post-type-ui/

    Best regards,
    Ismael

    in reply to: Flexible Masonry Gallery: problem with the order of images #735160

    Hey Daniel,

    Thank you for using Enfold.

    Which of the items are not in order? Could you please provide a screenshot? This issue does happen on masonry element but we don’t know what’s causing it. If I have to guess, it’s because of the image sizes. As much as possible, make sure that all images in the gallery have the same exact dimension.

    Best regards,
    Ismael

    Hi,

    The url is incorrect.

    <a href="../accommodation/#alpine_retreats&lrm;">Alpine Retreats</a>
    

    Please use absolute url.

    <a href="http://james.artyzans.co.uk/wp/accommodation/#alpine_retreats‎">Alpine Retreats</a>
    

    Best regards,
    Ismael

    in reply to: main the_content function #735143

    Hi,

    Which specific element or template are you referring to? If you’re talking about the posts, you can find the function in the includes > loop-index.php file.

    $current_post['content'] 	= $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>') : get_the_excerpt();
    	$current_post['content'] 	= $blog_content == "excerpt_read_more" ? $current_post['content'].'
    <div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>
    ' : $current_post['content'];
    

    The theme is using the get_the_content or the get_the_excerpt function, depends on the blog posts settings.

    Best regards,
    Ismael

    Hi,

    The masonry element is limited to left-to-right layout at the moment. You can replace it with the portfolio grid element if you really need the rtl layout and then follow this link.

    // https://kriesi.at/support/topic/rtl-portfolio-grid-2/#post-714685

    This option was disabled because it doesn’t work well in the masonry element. You can test it by editing the js > shortcodes.js file, look for this code around line 1436:

    methods.applyMasonry(container, false, function()
    

    .. replace it with:

    methods.applyMasonry(container, 'av-masonry-entry', function()
    

    After that, go to line 1245:

    var filters = selector ? {filter: '.'+selector} : {};
    

    .. replace it with:

    var filters = selector ? {itemSelector : '.'+selector, filter: '.'+selector, layoutMode : 'fitRows', isOriginLeft : false} : {};
    

    You’ll see why it is disabled.

    Best regards,
    Ismael

    in reply to: Datum aus Suchergebnissen in Google entfernen #735131

    Hi,

    Did you remove the code in the functions.php file?

    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);
    function avf_markup_helper_attributes_modified($attributes, $args) {
    	if($args['context'] == 'entry_time') 
            {
    		unset($attributes['datetime']);
                    unset($attributes['itemprop');
    	}
    	return $attributes;
    }
    

    Yes, there are a few requests about this and same snippets that we provided here worked for them.

    Best regards,
    Ismael

    in reply to: Sidebar set to 100% browser height #735129

    Hey DaFool71,

    Thank you for using Enfold.

    Please remove the css modification then add this code in the functions.php file:

    
    // set sidebar height
    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() { ?>
    	<script type="text/javascript">
    	(function($){
    		var a = function() {
    			var ch = $('.container .av-content-small.units').height();
    			$('#top #main .sidebar ').css('height', ch);
    		}
    
    		$(window).load(function() {
    			a();
    		});
    
    		$(window).on('debouncedresize', function() {
    			a();
    		});
    	})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: Logo Image hard coded 300px value #735128

    Hi,

    The width and height attributes are added to the markup to satisfy google crawlers. If you want to remove it, please edit the includes > helper-main-menu.php file then look for this code around line 122:

    $output .= avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    .. set the last parameter to false:

    $output .= avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', false);
    

    The attributes are not going to affect the actual dimension of the logo because it is specifically declared in the layout.css file.

    .logo img {
        padding: 0;
        display: block;
        width: auto;
        height: auto;
        max-height: 100%;
        image-rendering: auto;
        position: relative;
        z-index: 2;
        height: 100%\9;
        height: auto\9;
        -webkit-transition: opacity 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    What’s missing? Did you set the installation in your own language?

    Best regards,
    Ismael

    in reply to: Enfold theme Hotel Demo header #735120

    Hi,

    Yes, it’s quite confusing. Let me see if we can do something about the options in the future. Anyway, glad that it is working. Let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Localisation doesn't work #735116

    Hi,

    Please go to the Settings > General panel then set the Site Language settings to your own language.

    Best regards,
    Ismael

    Hi,

    Please add this in the Quick CSS field.

    .slide-meta-time.updated {
        display: none !important;
    }

    That option can be found in the Blog Layout > Blog meta elements section but it doesn’t work for the grid layout. And post meta info such as the date has great significance over search engine optimization, and we found out that only few users want to disable it hence the lack of options. Anyway, you can request the feature here: https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Ismael

    in reply to: Anchor tag not lining up with bottom of header #735107

    Hey Slade,

    Thank you for using Enfold.

    How did you set the height of the header? I checked the Header > Header Layout > Header Size option and it is currently set to “large”. Did you add any css modifications?

    Best regards,
    Ismael

    in reply to: using a custom single-CTP.php page for a CPT I have added #735104

    Hi,

    Are you using the advance layout builder? Please post the WP login details so that we can access the custom post.

    Is this the correct directory?

    // staging.infanttoddler.com/web/content/

    Best regards,
    Ismael

    in reply to: Full screen slider and slides loading #735103

    Hi,

    Yes, the slider will preload the image one at a time before it starts.

    Best regards,
    Ismael

    in reply to: Stop slideshow for 10 seconds on mouseclick #735093

    Hi,

    Thank you for the info. We edited the code a bit. Please remove browser cache before checking the page.

    Best regards,
    Ismael

    in reply to: Yoast Breadcrumbs #734587

    Hey ralfbelusa,

    Thank you for using Enfold.

    How did you add the breadcrumb? And where do you want to add it? If you want to replace the default breadcrumb, please follow this thread.

    // https://kriesi.at/support/topic/make-breadcrumb-path-follow-primary-category/#post-607364

    Best regards,
    Ismael

    in reply to: Tooltips inside tables possible? #734584

    Hey vero,

    Thank you for using Enfold.

    Please use the Icon shortcode and its Optional Tooltip field. You can insert the shortcode inside the table.

    Best regards,
    Ismael

    in reply to: Next-Previous Custom Post type in same Category #734580

    Hey ariane1001,

    Thank you for using Enfold.

    The pages do not exist. Are you using the portfolio items? Please remove all modifications then add this in the functions.php file:

    add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod');
    function avia_post_nav_settings_mod($settings)
    {
      if(is_singular('portfolio')) {
        $settings['taxonomy'] = 'portfolio_entries';
    	$settings['is_fullwidth'] = false;
      }
    	$settings['same_category'] = true;
    	return $settings;
    }

    Best regards,
    Ismael

    in reply to: Mixed content when switching to https:// #734578

    Hey bluecafe,

    Thank you for using Enfold.

    Please copy the whole “avia_tweetbox” class without the “class_exists” function in the child theme’s functions.php file.

    Best regards,
    Ismael

    Hi,

    If you’re planning to use the “slim” version of the header, you can upload a smaller version of the logo so that the browser doesn’t have to resize it.

    Best regards,
    Ismael

    in reply to: Translate No products found which match your selection. #734572

    Hey!

    Are you referring to the Product Slider? Please post the login details here so that we can check the settings. And maybe we can translate the strings as well.

    Best regards,
    Ismael

    in reply to: Output custom classes in Enfold builder canvas #734570

    Hey fristil,

    Thank you for using Enfold.

    I’m not really sure what you’re trying to do here. Could you please explain it further? Or provide a screenshot. This may help:

    // http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Best regards,
    Ismael

    in reply to: Cart Button Background in transparent menu not transparent #734569

    Hi,

    Thank you for using Enfold.

    1.) The background color is black. Did you figure this out? Could you please provide a screenshot of the issue?

    2.) Please remove the cart transition property.

    .cart_dropdown {
        -webkit-transition: none;
        transition: none;
    }

    Best regards,
    Ismael

Viewing 30 posts - 37,591 through 37,620 (of 66,745 total)