Forum Replies Created

Viewing 30 posts - 25,621 through 25,650 (of 67,534 total)
  • Author
    Posts
  • Hi,

    Thanks @guenni007!

    I checked the site but all I see is a blank page with red background. Please provide the new link or post the login details in the private field.

    Best regards,
    Ismael

    in reply to: Enfold und the events calendar plugin #1047597

    Hi,

    Thanks for the update.

    You can use this css code to increase the width of the tooltip so that it won’t get covered by the header.

    .recurring-info-tooltip, .tribe-events-calendar .tribe-events-tooltip, .tribe-events-shortcode.view-week .tribe-events-tooltip, .tribe-events-week .tribe-events-tooltip {
        width: 500px;
    }

    Best regards,
    Ismael

    Hi,

    Edit the page, look for the “Header visibility and transparency” settings and set it to “Transparent & Glassy Header”.
    Follow these steps to center align the logo:

    // https://kriesi.at/documentation/enfold/menu/#logo-centered-split-menu

    Best regards,
    Ismael

    in reply to: Side menu subi-tems not visible for a long list #1047594

    Hi,

    Thanks for the update. I don’t see the issue described in the screenshot. Is this fixed?
    Best regards,
    Ismael

    in reply to: Social icons widget area #1047593

    Hi,

    Is the site down? It’s not loading properly on my end.

    Best regards,
    Ismael

    in reply to: Accordion Css problem #1047592

    Hi,

    Did you figure it out? Those characters (e817) are the symbol of an entypo fontello icon.
    Best regards,
    Ismael

    in reply to: Accordion Css problem #1047591

    Hi,

    Did you figure it out? Those characters (e817) are the symbol of a entypo fontello icon.
    Best regards,
    Ismael

    in reply to: Kontaktformular: Datenschutz-Anhängsel übersetzen #1047590

    Hi,

    Thanks for the update. And we would like to apologize for the late response.

    You will be able to change that text in the Enfold > Privacy and Cookies panel. Enable the “Append a privacy policy message to template builder contact forms?” option and put your own text in the “Message below template builder contact forms” field.

    Best regards,
    Ismael

    in reply to: Kontaktformular: Datenschutz-Anhängsel übersetzen #1047589

    Hi,

    Thanks for the update. And we would like to apologize for the late response.

    You will be able to change that text in the Enfold > Privacy and Cookies panel. Enable the “Append a privacy policy message to template builder contact forms?” option and put your own text in the “Message below template builder contact forms” field.

    Best regards,
    Ismael

    in reply to: Sticky Post not on top #1047125

    Hi,

    Thank you for using Enfold.

    Did you set the blog layout to “Use the advance layout builder..”? This filter might help:

    // sticky posts
    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2);
    function avia_blog_post_query_mod($query, $params) {	
    	$include = array();
    	$sticky = get_option( 'sticky_posts' );
    
    	$args = array(
    	  'taxonomy' => $params['taxonomy'],
    	  'post__not_in' => $sticky,
    	);
    	$posts = get_posts( $args );
    
    	foreach($posts as $post) {
    		$include[] = $post->ID;
    	}
    
    	$include = array_merge($sticky, $include);
    
    	// convert values of the $include from string to int
    	function sti($n)
    	{
    		settype($n, 'int');
    		return $n ;
    	}
    
    	$include = array_map("sti", $include);
    
    	$query['post__in'] = $include;
    	$query['posts_per_page'] = 6;
    	$query['orderby'] = 'post__in'; // sort items based on the post__in value
    	return $query;
    }

    Best regards,
    Ismael

    in reply to: Mega-menu subnav that's flying out to the right #1047091

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Full Width SubMenu #1047090

    Hi,

    I see. You can use this script to automatically close the menu on scroll.

    add_action('wp_footer', 'ava_custom_close_menu_on_scroll');
    function ava_custom_close_menu_on_scroll(){
    	?>
    	<script type="text/javascript">
            (function() {
                const sm = document.querySelector('.av-submenu-container');
                const sn = sm.querySelector('.av-subnav-menu')
                const st = sm.querySelector('.mobile_menu_toggle');
                const eventClick = new Event('click');
    
                if(sm) {
                    document.addEventListener( 'scroll', (event) => {
                        if( sn.classList.contains('av-open-submenu') ) {
                            st.dispatchEvent(eventClick);
                        }
                    });
                }
            })();
    	</script>
    	<?php
    }
    

    Best regards,
    Ismael

    in reply to: Search function in header left sidebar #1047089

    Hi,

    Not many users are looking for this functionality, so it’s still not in the core. In case you missed it, there’s a new element in the builder called “Search”. Maybe, you can insert that in your pages and display it mobile view only.

    Best regards,
    Ismael

    in reply to: ENFOLD – Changing Tab Section Navigation Positioning #1047088

    Hi,

    Thanks for the info.

    Use this css code to center align the tab title container.

    .tab_titles {
        text-align: center;
    }
    
    .tab_titles .tab {
        float: none;
        display: inline-block;
    }

    Best regards,
    Ismael

    in reply to: Change table font size, padding, width #1047086

    Hi,

    1-3) You can add a custom css class selector for every element in the builder. And then use it to apply a specific style to an element.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: Enfold and PHP 7.3 #1047085

    Hey!

    It is bad if you’re calling it on every page load. You can add it to your functions.php file. refresh the page once or twice and then remove it.
    For safety purposes, create a backup first. Or do it on a dev site.

    Cheers!
    Ismael

    in reply to: blog posts #1047084

    Hi,

    If it’s a template, use this filter to add it to every single post item or blog post page.

    add_filter('avf_template_builder_content', 'avf_template_builder_content_render_templates', 10, 1);
    function avf_template_builder_content_render_templates($content)
    {	
        $name = 'CTA';
        $id = AviaStoragePost::get_custom_post('template_builder_snippets');
        $template = get_post_meta( $id, '_avia_builder_template_cta' );
        $shortcodes = str_replace('{{{'.$name.'}}}','',$template[0]);
    
    	if( is_singular('post') )
    	{
    		$content = $content . do_shortcode($shortcodes);
    	}
    
    	return $content;
    }

    Best regards,
    Ismael

    Hi,

    Go to the Enfold > Blog Layout panel and adjust the “Blog Layout” settings. You will see a lot of layout options there for the blog overview page.

    Best regards,
    Ismael

    in reply to: Enfold and PHP 7.3 #1047077

    Hi,

    @michaelH: Thanks for the info. By the way, you can manually flush the permalinks in your functions.php file if the dashboard is not accessible.

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

    Best regards,
    Ismael

    in reply to: Exclude Footer Template from Enfold ajax search #1047073

    Hi,

    Yes, the latest patch should take care of that issue.

    Latest additions to the core:

    custom 404 page without reroute
    supports ALB and Layerslider on 404
    supports WPML
    supports YOAST to hide special pages from sitemap (404, maintenance mode, footer)
    returns 404 for users who access these pages from frontend (need edit post capability)
    Maintenance Mode Page without reroute
    Move logic for custom pages in own class
    Improve user info for special pages
    ———hide special pages (404, maintenance, footerpage) from being displayed in page lists (frontend)
    ———Exclude special pages from search results (also ajax search)

    Best regards,
    Ismael

    in reply to: Enfold Contact form and spam #1047072

    Hi,


    @tglawe
    : We did try to implement it for V3 but it’s not validating correctly, so it had to be downgraded back to V2, temporarily.


    @Heathcliffe
    : You can get a copy from the github repository and upload it manually in the plugins folder.
    It’s not part of the core because it will probably add another complexity for a lot of users, much like Google Maps did when the new API keys were introduced.
    We’ll close this thread for now. Please feel free to open a new thread if you have more questions.

    Best regards,
    Ismael

    in reply to: Instagram widget returns error #1047071

    Hi,

    You can use this plugin temporarily while we check the issue:

    // https://wordpress.org/plugins/instagram-feed/

    Related thread: https://kriesi.at/support/topic/instagram-widget-problems/

    Best regards,
    Ismael

    in reply to: Instagram Widget Problems … #1047070

    Hi,

    I’m not really sure how that happened. How long have you been using the widget? The filter that we’ve added in the functions.php file should have stopped the widget from regenerating those folders. You can ask your hosting provider to bulk delete those folders. I’m sure they’ll be able to do it on their end faster.

    I disabled CRON in your installation temporarily to prevent it from creating more folders.

    Best regards,
    Ismael

    in reply to: Portfolio grid #1047067

    Hi,

    I modified the code a bit to separate the sub categories from their parent category. If you want to change the style of the categories, use this:

    .grid-entry-categories {
        font-size: 16px;
        color: orange;
    }
    /* child categories */
    .grid-entry-categories .child {
         font-size: 15px;
         color: red;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update. Please remove those files and then follow the instructions here:

    // http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    You have to add that filter first and create a folder called “shortcodes” inside your child theme directory. You can then copy any shortcode files inside.

    Best regards,
    Ismael

    Hi,

    Great! Glad it worked.

    Best regards,
    Ismael

    in reply to: Portfolio Grid Abstand / Padding / mousover effect #1047057

    Hi,

    That option is not available for the portfolio grid element. But you can use css to make the portfolio images rounded.

    .grid-image {
        border-radius: 100%;
    }

    Best regards,
    Ismael

    in reply to: Testimonials not displaying properly after theme update #1047056

    Hi,

    Thanks for the update. A new patch is available now, 4.5.2. That will take care of the textarea issue.

    Best regards,
    Ismael

    in reply to: Enfold and PHP 7.3 #1046673

    Hi,

    Thank you for using Enfold.

    We haven’t tested the theme on that version yet. Do you have a staging site where we can see this? Did you flush the permalink or reset the .htaccess file after the upgrade?

    I checked the list of the soon to be deprecated functionalities but I didn’t find anything that would affect the theme aside from the “String search” changes, but I could be wrong.

    // https://wiki.php.net/rfc/deprecations_php_7_3

    Best regards,
    Ismael

    in reply to: portfolio beschriftung #1046671

    Hi,

    Thank you for using Enfold.

    You will able to change the font of the portfolio title in the Enfold > Advanced Styling panel. Look for the H3 heading tag in the selection and edit it.
    And this css code will disable the portfolio title link in the AJAX Portfolio container:

    .portfolio-preview-title.entry-title a {
        pointer-events: none;
    }

    Best regards,
    Ismael

Viewing 30 posts - 25,621 through 25,650 (of 67,534 total)