Forum Replies Created

Viewing 30 posts - 11,701 through 11,730 (of 67,434 total)
  • Author
    Posts
  • in reply to: Problem bei Portfolio-Einträgen #1340626

    Hi,

    Gern geschehen! Please feel free to open another if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mobile menu don`t work with Polylang #1340625

    Hi,

    Thank you for the update.

    Did you create a separate menu for each language? Please note that each language in a Poylang installation should have a separate menu. The following documentations should help.

    // https://polylang.pro/doc/create-menus/
    // https://polylang.wordpress.com/documentation/setting-up-a-wordpress-multilingual-site-with-polylang/navigations-menus/

    Best regards,
    Ismael

    in reply to: no index no follow for selected sites? #1340606

    Hey Jak73,

    Thank you for the inquiry.

    You can attach a function to the wp_head hook to insert meta tags within the head element, and use the is_page conditional function to control in which pages should the meta tags render. Please check the documentations below for more info about the hook and the function.

    // https://developer.wordpress.org/reference/hooks/wp_head/
    // https://developer.wordpress.org/reference/functions/is_page/

    This is documentation about robots meta tgs.

    // https://moz.com/learn/seo/robots-meta-directives

    Best regards,
    Ismael

    in reply to: Exclude Custom Post Type from Masonry Grid #1340605

    Hey spooniverse,

    Thank you for the inquiry.

    You can combine multiple taxonomy queries (tax_query) using the key “relation” with the value AND or OR. Please check the code examples in the following documentation.

    // https://developer.wordpress.org/reference/classes/wp_query/#taxonomy-parameters

    Best regards,
    Ismael

    in reply to: Google Maps API tag in Backend #1340604

    Hey InTraHealth-Envold,

    Thank you for the inquiry.

    What do you mean by “google maps tags”? Please provide a screenshot using imgur or dropbox. The filters above should have prevented the default Google map scripts from loading. Are you using a different plugin for the maps?

    You should also update the theme to the latest version, 4.8.9.1, and temporarily disable the Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Fonts Problem #1340603

    Hi,

    Try to add a custom css class name or ID to the text element (Advanced > Developer Settings > Custom CSS Class), then use it to apply the font or use it to change the style of the element.

    #top #wrap_all .av-custom-text {
      font-family: "adobe-caslon-pro";
    }

    The custom css class name in the code above is “av-custom-text”. For more about info about custom css, please check this documentation.

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

    Best regards,
    Ismael

    in reply to: ENFOLD DEMO Visual Artist iPhone #1340558

    Hey Jens Lumpe,

    Thank you for the inquiry.

    This is an issue with fixed backgrounds on iOS devices. Unfortunately, there is no fix for this issue yet aside from reverting the background attachment from fixed to scroll. Please check the following thread for more info.

    // https://kriesi.at/support/topic/no-title-image-on-tablet-landscape-view/#post-1321910

    Best regards,
    Ismael

    in reply to: chnages to the accordion sorting options #1340553

    Hey fkm,

    Thank you for the inquiry.

    The css code below should remove the separator, increase the space between the items and adjust the font weight of the text.

    .taglist .tag-seperator {
        display: none;
    }
    
    .taglist a {
        margin-right: 20px;
        font-weight: bold;
    }

    To reverse the order of the items, try to add this css.

    .taglist {
        display: flex;
        flex-flow: row-reverse;
        justify-content: flex-end;
    }
    
    .taglist a:first-child {
        order: 1;
    }

    Best regards,
    Ismael

    in reply to: blog posts #1340549

    Hey Veronika,

    Thank you for the inquiry.

    This option is not available in the Blog Posts element or any of the element that displays the default post type, but you can manually create the same layout using the Grid Row element. If you are using the portfolio items, the Portfolio Grid element has an option to display the content and the image side by side, but the items do not alternate, image is always displayed on the right and the content on the other side.

    Best regards,
    Ismael

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

    Hi!

    Sorry about that. We forgot to adjust this condition in the script above.

    if( is_archive && is_mobile || true  ) {
    

    You have to remove the last condition, or this part.

     || true 
    

    We adjusted the code above in case you’re not sure what to remove.

    Regards,
    Ismael

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

    Hi,

    Glad to know that it is now working properly. To reverse the order of the post navigation, try to include this code in the functions.php file.

    add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3); 
    function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries)
    {
    	if($settings['type'] == 'portfolio')
    	{
    		$settings['same_category'] = true;
    
    		$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: Background on mobile #1340536

    Hi,

    Thank you for the info.

    It seems to be working correctly on our end now as shown in the screenshot below. Have you managed to find the cause of the issue? It might be a z-index issue based on the screenshots above. Increasing the stack order or the z-index property of the second section should fix the issue.

    Best regards,
    Ismael

    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

Viewing 30 posts - 11,701 through 11,730 (of 67,434 total)