Forum Replies Created

Viewing 30 posts - 11,881 through 11,910 (of 67,591 total)
  • Author
    Posts
  • in reply to: Angular theme version 4.1 needed for download #1340106

    Hey ClaudiaEustergerlingDesign,

    Thank you for the inquiry.

    We provided the link in the private field. However, please note that we are not providing support for this item any further because the theme is no longer available on Themeforest.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    1.) You have to add a custom css class name or ID to the columns and replace the autogenerated column ID that we used above to target the columns. You can then save the content as template and use it on other pages, or you can set place the elements in a different page and set it as footer in the Enfold > Footer > Default Footer & Socket Settings settings.

    2.) That is the color section padding. You can adjust it by editing the color section’s Layout > Margin & Padding > Section Padding settings.

    Best regards,
    Ismael

    Hi,

    No problem! Glad we could be of help. Please feel free to open another thread if you have more questions. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blogs disappear #1340097

    Hi,

    Thank you for the info.

    We checked the site again today and the posts are still there. Did you post a new article aside from the latest item titled “10 ways to stay committed”? The two posts that you mentioned above are also displaying properly on mobile view. Please check the screenshots below.

    Have you tried disabling the plugins temporarily? You should also disable the Performance > File Compression settings temporarily while testing the site.

    Best regards,
    Ismael

    in reply to: Need to style Tab #1340093

    Hi,

    Thank you for the update.

    Where can we check the tab section? Please provide the site URL so that we can inspect the element directly. To learn more about custom css modifications, please check this documentation.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: ContentUrl or url missing from rich snippets #1340091

    Hi,

    Alright. Have a nice day!

    Best regards,
    Ismael

    in reply to: Private blog posts and Grid view problem for subscribers #1340087

    Hi,

    Thank you for the info.

    We were not able to access the site via FTP but we have found out that the post slider or blog posts element is set to not display private posts by default. We had to use this filter in the functions.php file to adjust the default query and display the private posts.

    add_filter("avia_post_slide_query", function($query) {
    	$query['post_status'] = array( 'publish', 'private');
    	return $query;
    }, 10);
    

    The posts are now displaying in the grid.

    Best regards,
    Ismael

    in reply to: Table with Widgets / Small Custom Images and Text Fields #1340079

    Hi,

    Thank you for the info.

    We cannot see any table in the page or in any pages in the site. Did you remove the element? To change the color of the first row, edit the table element, look for the first row, then set the row layout from “Default Row” to “Heading Row”. You can also use this css code to adjust the color of the heading and cell font.

    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), #top .main_color .avia-data-table.avia_pricing_minimal td, .main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li, #top .main_color .avia-data-table.avia_pricing_minimal th, .main_color .avia-table {
        color: #e50000ff;
    }
    
    .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra {
        background-color: yellow;
        color: #ffffff;
        border-color: transparent;
    }
    

    To remove the borders, set the Styling > Table Design settings to Minimal.

    Best regards,
    Ismael

    in reply to: Masonry Blog Meta Elements #1340078

    Hi,

    Just one details, the categories still appear below the titles,

    Did you remove the avf_masonry_entry_content filter from the functions.php file? You have to remove the code because it inserts the categories below the title.

    Hmm I seem to have lost it again, I made some edits to the css and

    We are not seeing the categories in the image container anymore. Did you revert the changes in the class-avia-masonry.php file?

    Best regards,
    Ismael

    in reply to: WordPress Enfold theme and WPML plugin not full-width #1340077

    Hi,

    Sorry for the delay. Did you edit the translated page directly using the default editor or the advance layout builder? All translated pages should be edited using the plugin’s default translation editor. The content of the translated pages should not be edited directly. Can we access the site without changing our hosts file?

    Best regards,
    Ismael

    in reply to: Ideal with for responsive color-section paralax #1339988

    Hey Jak73,

    Thank you for the inquiry.

    To make it a bit simple, the width of the image should be close to that of the standard screen resolutions (1920x1080px, 1600x900px), and should have an aspect ratio of 16:9. The image should also exceed the height of the color section to get that subtle image delay when scrolling the document. But please note that the parallax script in the theme will handle the image resizing automatically based on the size of the color section, so you don’t really have to worry about the exact image size.

    You can check the image in the private field to get an idea on how big the image should be in a parallax color section. The image is used in one of the demo with the parallax effect. And in case you didn’t know, you can also use the Layer Slider to create a parallax effect.

    Best regards,
    Ismael

    in reply to: Bigger icons #1339983

    Hi,

    Thank you for the update.

    Are you sure that you added the css code correctly? It seems to work fine when we adjust the same style or css rule directly in the browser inspector. Please check the screenshot below.

    Best regards,
    Ismael

    in reply to: Move Product Archive Menu above content on mobile #1339980

    Hey marladesign,

    Thank you for the inquiry.

    There is no option for this by default but we can add a script to move the sidebar above the content on mobile view. Please try this code in the functions.php file.

    function ava_custom_script_mod(){
      ?>
      <script>
            (function($) {
    			// move the product category sidebar above the content on mobile view
    			function av_move_prodcat_sidebar() {
    				var is_mobile = false;
    				var is_archive = $("body").is(".tax-product_cat");
    				if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
    					is_mobile = true;
    				}
    				
    				if( is_archive && is_mobile ) {
    					$(".sidebar").prependTo(".template-shop.content");
    				}
    			}
    
    			$(document).ready(function() {
    				av_move_prodcat_sidebar();
    			});
    		})(jQuery);
      </script>
      <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');
    
    

    Then add this code in the Quick CSS field to make sure that the sidebar container displays on smaller screens.

    @media only screen and (max-width: 767px) {
        .responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar {
           display: none;
        }
    }

    Best regards,
    Ismael

    in reply to: Custom fonts replaced since the new Enfold update (4.8.9.1) #1339977

    Hey!

    Thank you for the confirmation.

    We have forwarded the issue to our channel. A fix will probably be included in the next version of the theme. For the meantime, please refrain from using hyphen on the file names.

    Best regards,
    Ismael

    in reply to: Mobile Breakpoint Position #1339971

    Hey Michael,

    Thank you for the inquiry.

    With that option, you will be able to adjust the order of the columns on mobile view. You will have to manually set the order of the column in the Advanced > Responsive > Mobile Breakpoint Position settings. For example, if you want the first column to display as the second or third column on mobile view, you have to set the Mobile Breakpoint Position settings to 2 or 3.

    Best regards,
    Ismael

    in reply to: Hide draft pages in the menu #1339923

    Hey Stephan,

    Thank you for the inquiry.

    The wp_nav_menu, which is the function used to display the menu items, doesn’t have a parameter to exclude draft pages. This is the reason why the item still display in the menu even when the corresponding page have been reverted back to draft status. But it should be possible to hide those items using a filter. The filter below checks and hides the item based on the page or post status.

    /**
    * hide draft pages from the menu
    */
    function avf_wp_nav_menu_objects_mod($items, $args) {
     foreach ($items as $i => $obj) {
         if (!is_user_logged_in () && 'draft' == get_post_status ($obj->object_id)) {
             unset ($items[$i]);
         }
     }
     return $items;
    }
    add_filter ('wp_nav_menu_objects', 'avf_wp_nav_menu_objects_mod', 10, 2);
    

    Best regards,
    Ismael

    in reply to: Font in Layer Slider #1339922

    Hey Createve_Solutions,

    Thank you for the inquiry.

    You may need to manually apply the font in the layers’ Style > Advanced Settings > Custom CSS field. Use the font-family property to apply the custom font.

     font-family: 'document-fonts',Helvetica,Arial,sans-serif;
    

    Best regards,
    Ismael

    in reply to: Split Masonry Gallery from normal Masonry sort order #1339920

    Hi,

    https://kriesi.at/support/topic/masonry-grid-shows-entries-more-than-once/

    In the thread above, you mentioned that when using the load more button, there is an infinite loop and duplicated items when sorting is set to random. This issue is not occurring on our installation using the latest version of the theme, 4.8.9.1. We don’t have any masonry filters or custom modifications in this installation. Please temporarily disable all custom modifications and filters for the masonry element, then test the page again. Make sure that the site is updated to version 4.8.9.1.

    Do you have a staging version of the site with a fresh copy of Enfold?

    Best regards,
    Ismael

    in reply to: Bigger icons #1339918

    Hey Michael,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the icon in the iconbox element.

    #top .iconbox.av-no-box .iconbox_icon {
        top: 0;
        margin: 0 auto 20px auto;
        left: 0;
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 50px;
    }
    

    The actual size of the icon is controlled using the font-size property.

    Best regards,
    Ismael

    in reply to: Jum Links / Anchors not working properly #1339915

    Hi,

    Thank you for the update.

    We are not able to reproduce the issue on the demos and on our own installation, so this might be due to a plugin or a custom script in the site. Can we access the dashboard and deactivate the plugins temporarily while testing the site? Is there a staging or development version of the site?

    Best regards,
    Ismael

    in reply to: Gallery and Page Title Bug #1339913

    Hey Tim,

    Thank you for the inquiry.

    We added the contentURL meta tag to the gallery to fix a schema issue with the imageObject but we have incorrectly included the content value in the html. To fix the issue, please update the enfold\config-templatebuilder\avia-shortcodes\gallery\gallery.php file using the code below.

    // https://pastebin.com/uDHPrFhJ

    Best regards,
    Ismael

    in reply to: Description above Avia Gallery #1339912

    Hi,

    Sorry for the inconvenience. This is the updated enfold\config-templatebuilder\avia-shortcodes\gallery\gallery.php file with the updated contentURL value and without the rendered meta value.

    // https://pastebin.com/uDHPrFhJ

    The changes will be added in the next patch.

    Best regards,
    Ismael

    in reply to: ContentUrl or url missing from rich snippets #1339910

    Hey!

    Thank you for the observation @Guenni007. Yes, you are correct. We should use the URL as the content value, not the page title. We will adjust the changes in the next patch.

    Cheers!
    Ismael

    Hey digideo,

    Thank you for the inquiry.

    Did you install the Jetpack plugin? Looks like the images are being loaded from a CDN because Jetpack is enabled. You might have enabled the Site Accelerator option as described in the following documentation.

    // https://jetpack.com/support/site-accelerator/

    If there is an image no longer on your server that you’d like us to purge, please contact us with a direct link to the file as it appears on your site. These will begin with i0.wp.com, i1.wp.com, i2.wp.com or i3.wp.com.

    Best regards,
    Ismael

    in reply to: Portfolio grid side navigation change direction #1339907

    Hey Munford,

    Thank you for the inquiry.

    You don’t have to edit the functions-enfold.php file directly. Just use the avia_post_nav_entries filter in the functions.php file and apply the next post or entry to the previous arrow and the previous post to the next arrow.

    add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod', 10, 2); 
    function avvf_post_nav_entries_mod($entries, $settings)
    {
        $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
        $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    
        return $entries;
    }

    Best regards,
    Ismael

    in reply to: Blogs disappear #1339906

    Hey Eefke,

    Thank you for the inquiry.

    The post displays immediately on our end. We didn’t have to refresh or update the page for it to display in the home page. Please check the screenshot in the private field.

    You might be viewing a cached version of the page, purging the cache or checking the site on incognito mode should help.

    Best regards,
    Ismael

    in reply to: Uploaded fonts not applying after 4.8.9.1 #1339905

    Hi,

    Weird that it does show on your screenprint.

    The fonts are still displaying correctly when we checked the site again today on Firefox Dev Windows 10. The previous screenshot was taken on Chrome MacOS. Have you tried checking it on another device or computer? Are the fonts loading correctly when you accept the cookies?

    Best regards,
    Ismael

    in reply to: Border on Column #1339904

    Hey markus-fischer,

    Thank you for the inquiry.

    That is default top border of the container_wrap element. Use this css code if you want to remove the border.

    .container_wrap {
    	border-top-width: 0;
    }
    

    Best regards,
    Ismael

    in reply to: Problem bei Portfolio-Einträgen #1339901

    Hi,

    Thank you for the info.

    We actually thought that this is working when we checked the very first portfolio item yesterday. Today, we noticed that the site is still using an older version of the theme, version 4.5, which is no longer compatible with the latest version of WordPress and contains an outdated version of the avia_post_nav function. You should update the theme to version 4.8.9.1 as soon as possible, then update the filter in the functions.php file with this one.

    /*
     * Filter für Portfolioeinträge
     */
    function avf_post_nav_settings_cb($settings)
    {
    	if($settings['type'] == 'portfolio')
    	{
    
    		$settings['taxonomy'] = "portfolio_entries";
    		$settings['same_category'] = true;
                    $settings['loop_post_nav'] = false;
    	}
            return $settings;
    }
    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_cb', 10, 2); 
    

    Best regards,
    Ismael

    in reply to: Cookie Consent #1339898

    Hey maryenvato,

    Thank you for the inquiry.

    How did you load the CookieBot script? Unfortunately, we cannot clearly understand the report because it is on another language. Would you mind giving a summary of the report? You should also contact the script authors for additional assistance.

    Best regards,
    Ismael

Viewing 30 posts - 11,881 through 11,910 (of 67,591 total)