Forum Replies Created

Viewing 30 posts - 18,361 through 18,390 (of 67,602 total)
  • Author
    Posts
  • in reply to: Footer mobile version #1221269

    Hi,

    Sorry for the delay. You can wrap the code in this css media query.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    
    }
    

    Example with a few adjustments.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #footer .av_one_third:first-child {
    	width: 50% !important;
      }
    
      #footer .av_one_third:nth-child(2), #footer .av_one_third:last-child {
    	width: 20% !important;
    	float: left !important;
    	margin-left: 5% !important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Layout #1221257

    Hi,

    I want to make the layout from this page: https://www.langbrett.com

    They actually set it up so that the height of the right image (446px) is the same as the combined height of the two images (203.2px each) plus the height of the caption (around 40px) in the left side. They then set all items to stack above each other when the screen width is less than 1180px. As @guenni007 mentioned, this is nearly impossible without controlling the actual height of the images and without using absolute widths as they did in the site above.

    Best regards,
    Ismael

    in reply to: Navigation current item color. #1221256

    Hey D5WDesignGroup,

    Thank you for the inquiry.

    All anchor links are active when we checked the site regardless of where we are currently in the page and it’s because of this css code.

    .header_color .av-subnav-menu a:hover, .header_color .main_menu ul:first-child > li a:hover, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.active-parent-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a {
        color: #ff9d4d;
    }
    

    To override the current style, please add this css code.

    .header_color .main_menu ul:first-child > li.current_page_item > a {
        color: #969696;
    }
    
    .header_color .av-subnav-menu a:hover, .header_color .main_menu ul:first-child > li a:hover, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.active-parent-item > a {
        color: #ff9d4d;
    }

    Now to force the active navigation to change earlier, try to add this filter in the functions.php file.

    
    function avf_header_setting_filter_mod($header) {
    	$header['header_scroll_offset'] = $header['header_scroll_offset'] + 48;
    	return $header;
    }
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);

    This will adjust the scroll-offset attribute of the main container, which value is directly used in the smoothscroll script.

    Best regards,
    Ismael

    Hi,

    Sorry for delay. Unfortunately, we can’t answer that many inquiries in a single thread, so we’d like to ask you to open a different ticket or post for each issue or request. Users usually receive faster response that way.

    Now to answer your question, the columns don’t respond properly and the logo images are still visible on mobile device because the sections containing them are outside the main container (wrap_all). This usually happens when html tags are not closed properly.

    Did you add any html tags (e.g strong, p, span etc) in the page? Please make sure that all tags are closed properly.

    Best regards,
    Ismael

    in reply to: Slideshow caption time #1221244

    Hey creativeopole,

    Sorry for the delay. Please use this code in the Quick CSS field to disable the animation of the caption title.

    .avia-caption-title {
        -webkit-animation: none;
        animation: none;
        visibility: visible !important;
        opacity: 1 !important;
    }
    

    Best regards,
    Ismael

    in reply to: Immense inline styles #1221242

    Hi,

    Did you move the site somewhere else? We can’t access it anymore.

    The theme will only print the inline style if the wp-content > uploads > dynamic_avia > enfold.css file doesn’t exists. Do you see the dynamic css in the directory?

    Best regards,
    Ismael

    in reply to: Enfold 4.7.5 – Gap: 50px .flex_column_table #1221236

    Hey!

    The top margin was added because of inconsistency between columns with equal and non-equal heights. Columns with individual heights have a 50px top margin by default, but when set to have equal heights, the top margin is not added, so we adjusted the css a bit. The css might be retained in future updates.

    Regards,
    Ismael

    in reply to: Upgrading to 4.7.5 threw error #1221232

    Hi,

    Thank you for the info.

    We are not really sure why this error occurs, but what it says is that it fails to open the php/inc-autoconfig.php file, which is a bit odd because the site is working fine as you said. Maybe it’s server-related but we can’t be sure. Please let us know if you find any errors.

    Best regards,
    Ismael

    Hi!

    Thank you for the inquiry.

    We didn’t see any popup in the site when we checked it. There are also no errors or anything in the browser console. Please try to update the theme to the latest version v4.7.5 to refresh the theme files and hopefully it will remove unwanted scripts if there are any.

    Regards,
    Ismael

    Hi!

    Although Google explicitly says: Please do not place anything off-screen.

    The toggle wrap is not off screen because the css property left: 120% is relative to the parent container and not the browser view port. This is true unless the maximum width of the container is the same as the view port and the page has no sidebar, which is rarely the case. Please check the screenshot below.

    Screenshot: https://imgur.com/a/3CZbPLk

    As you can see in the screenshot, the invisible or inactive toggle wrap is not completely off the screen, but upon closer inspection, I’m not sure why it has to have that css property because the toggler works fine without it. But still, it doesn’t place the toggle_wrap container off the screen.

    And according to the following articles, there’s no definitive answer on how search engines actually handle hidden content but they said that you don’t actually get penalized for hiding a content, the content will only have less influence to the site ranking compare to those that are fully visible. So if you’re serious about SEO, maybe try to reserve using tabs, accordions or read more links for not so significant content and make sure that the most important ones are fully visible in the page.

    // https://edgy.app/how-does-google-view-hidden-content
    // https://moz.com/blog/google-css-javascript-hidden-text

    Cheers!
    Ismael

    Hi!

    Good to know! Thank you for the info. We’ll close the thread now.

    Have a nice day.

    Cheers!
    Ismael

    Hi,

    All you need to do is search for how-to accordion or tabs on Google and you’ll find thousands of examples that almost do the same thing. And are you aware that the left property there is relative to the parent container (accordion) and not the browser view port? This means that the content that is hidden is not off the screen.

    Best regards,
    Ismael

    in reply to: API Key problem – Google Maps #1220868

    Hi,

    Sorry for the delay. The map is now displaying properly in the contact page and we don’t see any errors related to the API key, so it seems like you already figure it out. Please let us know if you need anything else.

    Best regards,
    Ismael

    in reply to: Perfect Masonry Portfolio Item Order #1220862

    Hey Ink_Eye,

    Thank you for the inquiry.

    The padding property sets the aspect ratio of the images, so with 80% bottom padding, the aspect ratio would be 5:4 and with 160% padding, aspect ratio would be roughly 9:16 which is the portrait mode. You can learn more about it in the following article.

    // https://css-tricks.com/aspect-ratio-boxes/

    The class attribute of the masonry items are automatically assigned based on the width and height of the original image, so very tall images will be in portrait mode and those that are very wide are usually in landscape mode.

    Best regards,
    Ismael

    in reply to: Optimize graphics of the theme #1220854

    Hey!

    Thank you for the info.

    Are you using a lot of those background-images, or just this one image grain_top? The average size of the default image file in the background-images folder is around 30KB and some of them are less than 1KB, so it’s not really that much unless you’re using all images in that folder.

    Regards,
    Ismael

    in reply to: Breadcrump navigation on bbpress forum pages #1220847

    Hey P3T3R_0ne,

    Thank you for the inquiry.

    You can find the bbPress modifications inside the enfold\config-bbpress\config.php file. You might want to remove or override this filter.

    add_filter('avia_breadcrumbs_trail','avia_bbpress_breadcrumb');
    

    To override it, just use the remove_filter function in the functions.php file.

    remove_filter('avia_breadcrumbs_trail','avia_bbpress_breadcrumb');
    

    Best regards,
    Ismael

    in reply to: Cookie Consent / Value of the Cookie MD5 / Multisite #1220845

    Hi,

    Glad to know that you figured it out. We will probably not change that line for now because this is a special case and not many is actually changing the cookie contents. But we’ll keep the thread open.

    Best regards,
    Ismael

    in reply to: Display featured image and excerpt outside WordPress #1220842

    Hey peterolle,

    Thank you for the inquiry.

    Have you tried using the WordPress REST API? You should be able to fetch posts or any available data from your WordPress installation to any platform using HTTP requests.

    // https://developer.wordpress.org/rest-api/reference/

    Best regards,
    Ismael

    Hey René,

    Thank you for the inquiry.

    The div or _form_21 element looks empty. Which strings or text are you trying to translate? Please note that you can’t translate contents that are dynamically added or generated by the hrmtools script, but you should be able to edit those that were directly added in the code block element.

    Best regards,
    Ismael

    in reply to: Thumbnail image size change after last enfold update #1220811

    Hi,

    It’s not really recommended to embed text in the featured images and it’s also quite redundant in your case because the text is the same as the post title. You should remove the embedded text or make sure that the size of the images are the same.

    You can also set the Blog Posts element to use the uncropped version of the featured image in the Styling > Appearance > Preview Image Size settings. Select the second option and select “No Scaling” from the “Select custom preview image size” dropdown.

    Best regards,
    Ismael

    in reply to: Mobile Image Issue #1220807

    Hi,

    Sorry for the delay. Can you give us a screenshot of the image that is supposed to display on the About page?

    This what we currently see on our end.

    Screenshot: https://imgur.com/a/J7cTcaG

    Best regards,
    Ismael

    in reply to: Leverage Browser Caching plugins not working #1220805

    Hi,

    Did you define the expiration or cache duration of the site resources in the .htaccess file? This documentation should help.

    // https://gtmetrix.com/leverage-browser-caching.html

    Example of cache expiry config.

    <IfModule mod_expires.c>
      ExpiresActive On
    
      # Images
      ExpiresByType image/jpeg "access plus 1 year"
      ExpiresByType image/gif "access plus 1 year"
      ExpiresByType image/png "access plus 1 year"
      ExpiresByType image/webp "access plus 1 year"
      ExpiresByType image/svg+xml "access plus 1 year"
      ExpiresByType image/x-icon "access plus 1 year"
    
      # Video
      ExpiresByType video/mp4 "access plus 1 year"
      ExpiresByType video/mpeg "access plus 1 year"
    
      # CSS, JavaScript
      ExpiresByType text/css "access plus 1 month"
      ExpiresByType text/javascript "access plus 1 month"
      ExpiresByType application/javascript "access plus 1 month"
    
      # Others
      ExpiresByType application/pdf "access plus 1 month"
      ExpiresByType application/x-shockwave-flash "access plus 1 month"
    </IfModule>
    

    Best regards,
    Ismael

    Hi,

    The icon font is used by the theme in the back (e.g builder elements, theme options) and front end as @Terve mentioned previously, so you can’t disable it without breaking some layouts. You should try and focus on other areas of the site that requires optimization like images, stylesheets and scripts.

    Best regards,
    Ismael

    in reply to: Third-party-request vs. GDPR #1220794

    Hi,

    You can actually define additional custom cookies in the Enfold > Privacy > Cookie Handling > Advanced Options > Additional Custom Cookies section. Add the cookie name and the cookie path, then you’ll be able to use the following shortcode inside the privacy policy page or the privacy modal popup window to create a toggle and allow your users to disable or enable the custom cookies when necessary.

    [av_privacy_custom_cookie cookie_name=""]
    [av_privacy_custom_cookie cookie_name=""]Your text here[/av_privacy_custom_cookie] 
    

    If the name of the cookie is “security-cookie” for example, then the modified shortcode will look something like this.

    [av_privacy_custom_cookie cookie_name="security-cookie"]
    [av_privacy_custom_cookie cookie_name="security-cookie"]Toggle Security Cookie[/av_privacy_custom_cookie]
    

    Best regards,
    Ismael

    in reply to: mouse over and image title #1220790

    Hi,

    Thank you for the info.

    For the masonry gallery, you can use this css code.

    @media only screen and (max-width: 1024px) {
         .av-inner-masonry-content {
    	display: none !important;
         }
    }
    

    Please don’t forget to toggle the Performance > File Compression settings after adding the code, or just disable it temporarily while you’re building the site.

    Best regards,
    Ismael

    Hi,

    You can copy the whole avia_woocommerce_product_elements function in the child theme, rename the function and do your own modifications.

    remove_filter( 'avf_builder_elements', 'avia_woocommerce_product_elements', 500, 1 );
    add_filter( 'avf_builder_elements', 'avia_woocommerce_product_elements_mod', 500, 1 );
    
    function avia_woocommerce_product_elements_mod( $elements )
    {
    	$posttype = avia_backend_get_post_type();
    
        if( ! empty( $posttype ) && $posttype == 'product' )
        {
            $elements[] = array("slug"	=> "avia_product_hover",
                "name" 	=> "Hover effect on <strong>Overview Pages</strong>",
                "desc" 	=> "Do you want to display a hover effect on overview pages and replace the default thumbnail with the first image of the gallery?",
                "id" 	=> "_product_hover",
                "type" 	=> "select",
                "std" 	=> "",
                "class" => "avia-style",
                "subtype" => array("Yes - show first gallery image on hover" => 'hover_active', "No hover effect" => ''));
    
            $counter = 0;
            foreach( $elements as $element )
            {
                if( $element['id'] == 'sidebar' ) 
    			{
    				$elements[ $counter ]['required'] = '';
    			}
                else if( $element['id'] == 'layout' ) 
                {
    	            $elements[ $counter ]['builder_active'] = true;
    	           // unset($elements[$counter]);
                }
                $counter++;
            }
        }
    
    	return $elements;
    }
    

    Best regards,
    Ismaele

    in reply to: WCAG 2.1 Level AA and landmarks #1220781

    Hi!

    There was a minor syntax error in the above filter but we corrected it now. Please try to add it again in the functions.php file. If it’s still not working, then you can keep your extra modification in the section.php file and it should work just fine.

    Regards,
    Ismael

    in reply to: Responsive version #1220777

    Hi,

    The page will only display the number of posts set in the blog settings. You can adjust it by editing the Blog Posts’ Styling > Pagination > Post Number settings or by adjusting the value of the Blog pages show at most field in the Settings > Reading panel.

    You can also create a custom page, add the Blog Posts element and set it to display all posts. You may need to create a custom link or button to redirect to that custom page.

    Best regards,
    Ismael

    Hi,

    Yes, it matters. The string translation management has to be installed first before creating the sliders. To test it, we created a new slider and added a text layer to it. This text is now registered in the string translation management. (see private field)

    Unfortunately, we are not really sure if you can manually register the text inside the existing sliders. If not, you will have to re-create them from scratch. For additional assistance, please contact the plugin developers.

    Best regards,
    Ismael

    Hi,

    Did you install a plugin that adds schema markup to the templates? We inspected the wplugins\bbpress\includes\common\template.php, which contains the breadcrumb markup, but we didn’t find the span tag with the itemprop attribute.

    <span itemprop="name"></span>
    

    This is the the whole bbp-breadcrumb-current markup.

    'include_current' => $pre_include_current,
    			'current_text'    => $pre_current_text,
    			'current_before'  => '<span class="bbp-breadcrumb-current">',
    			'current_after'   => '</span>',
    

    Best regards,
    Ismael

Viewing 30 posts - 18,361 through 18,390 (of 67,602 total)