Forum Replies Created

Viewing 30 posts - 10,531 through 10,560 (of 66,262 total)
  • Author
    Posts
  • in reply to: Timeline from posts #1340534

    Hey peterolle,

    Thank you for the inquiry.

    This is not possible out of the box. You will have to manually modify the timeline template and include a posts query to it. Unfortunately, this is beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Error on download and import demo files #1340528

    Hi,

    Thank you for the info.

    Please ask your hosting provider to update cURL version from 7.38.0 OpenSSL/1.0.1t to version 7.74.0 OpenSSL/1.0.1t and also upgrade PHP from version 7.3.32 to the latest version. After the software update, install the WP Reset plugin to reset the database or the installation, then try to import the demo again.

    Best regards,
    Ismael

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

    Hi,

    We tested the blog posts element on our own installation and all private posts display immediately even without the filter above, so there must be something in the members’ plugin that is preventing the posts to display on your site. Please keep the filter in the functions.php file for now.

    Best regards,
    Ismael

    Hi,

    1.) We haven’t used the plugin before, so we don’t really know if it is compatible with the theme. A lot of plugins if not all are compatible with the theme but they usually require a modification or two.

    2.) You can use plugins like WP Migrate DB to transfer a WordPress database to another. Make sure to create a site backup or a restore point before doing this.

    3.) We are not really sure what you’re asking but each site or domain only requires a single license.

    Best regards,
    Ismael

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

    Hi,

    Sorry for the slight delay. For the layer slider, you have to modify the Slide > Effects > Parallax Defaults settings to apply a parallax effect to the main background. You can also apply a separate parallax effect for each layer in the Transition > Parallax Transition panel.

    Best regards,
    Ismael3

    in reply to: Custom Social Media Icon to Top Bar (Using Image) #1340120

    Hey Eleina_Shinn,

    Thank you for the inquiry.

    Did you select or add the new social icon in the Enfold > Social Profiles panel? The filter above will just create an option for the social icon but it will not add it automatically in the list. You have to add a new entry in the social settings panel and select the new icon.

    Best regards,
    Ismael

    Hey Ben,

    Thank you for the inquiry.

    Either way should work fine but we recommend adding all your custom css in the Quick CSS field or in the style.css file within the child theme directory. All custom modifications in the Quick CSS field are loaded after the default stylesheets, so it is quite useful when you are trying to override or adjust the style of a certain element.

    Best regards,
    Ismael

    Hey Jörg,

    Thank you for the inquiry.

    Are you planning to serve the members’ area in a different domain? If you are going to use a different domain for the members, then you will need another license because a single license can only be used on a single domain. Another license is not needed if the members’ area is in the same domain as the main site. And regarding the demo, please note that importing another demo will override the current one.

    Best regards,
    Ismael

    in reply to: ist ein 5. footer-column möglich? #1340114

    Hey Heldin21,

    Thank you for the inquiry.

    You can adjust the number of footer columns in the Enfold > Footer > Footer Columns settings. Default number is 4 but it can be adjusted to 5. You can also set a page as custom footer in the Default Footer & Socket Settings.

    Best regards,
    Ismael

    in reply to: Stye for a link added to the Cookie Consent Message Bar #1340113

    Hi,

    Thank you for the info.

    The class name privacyclass is directly applied to the link tag or element, so the css should be.

    a.privacyclass {
        color: azure;
    }
    

    — or —

    . privacyclass {
        color: antiquewhite;
    }
    

    You can also try this css to include all links inside the avia_cookie_text container.

    .avia_cookie_text a {
        color: burlywood;
    }
    

    Best regards,
    Ismael

    in reply to: Matomo Analytics Cookies Opt-In Reload After Accept #1340108

    Hey architekt-ur,

    Thank you for the inquiry.

    The privacy options in the theme can only handle cookies from services that are actually included in the package, such as cookies from Google maps, analytics, spam protection or reCAPTCHA, Google fonts and embedded Youtube videos. Cookies that are generated by external services that are not included in the list will have to be defined in the Enfold > Privacy & Cookies > Cookie Handling > Advanced Options > Additional Custom Cookies section. Unfortunately, we cannot guarantee that the theme will be able to successfully handle those cookies even when they are defined due to certain browser restrictions. To learn more about the privacy options, please check this documentation.

    // https://kriesi.at/documentation/enfold/privacy-cookies/#additional-custom-cookies

    Best regards,
    Ismael

    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

Viewing 30 posts - 10,531 through 10,560 (of 66,262 total)