Forum Replies Created

Viewing 30 posts - 541 through 570 (of 9,352 total)
  • Author
    Posts
  • in reply to: Fonts Google API #1009422

    Hey Xinspirit,

    I’m pretty sure the code is not added by Enfold. The id of the font resource is “wdcGoogleFonts” – because of the prefix wdc I assume the plugin which uses the prefix wdc loads the font files.

    Best regards,
    Peter

    in reply to: [SOLVED]10 column layout #1009419

    Hi,

    Great, glad I could help you :)

    Best regards,
    Peter

    in reply to: Sidebars not showing up on mobile? #1009415

    Hey Moondreamer21,

    Please try to add this code to your quick css field:

    
    @media only screen and (max-width:767px) {
    .responsive #top #wrap_all #main .sidebar {
    display: block;
    border: none;
    width: 100%;
    }
    }
    

    Best regards,
    Peter

    in reply to: last time solved but again it appeared. #1009413

    Hi,

    Great, glad Ismael could help you :)

    Best regards,
    Peter

    in reply to: Remove header but keep sticky header #1009412

    Hi,

    Glad you found a solution :)

    Best regards,
    Peter

    in reply to: Breite Header #1009409

    Hi,

    Der Container muss vermutlich noch zentriert werden – dieser Code sollte helfen:

    
    #top #header .inner-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 50px;
    }
    

    LG,
    Peter

    in reply to: Breite Header #1009404

    Hey gdsconcepts,

    Versuche bitte einmal diesen CSS Code:

    
    #top #header .inner-container {
    max-width: 1240px;
    padding: 0px 50px;
    }
    

    und passe die Werte ggf an die Breite deines Contents an.

    LG,
    Peter

    in reply to: Issues With Ajax Portfolio inside of Tab Panel #1009402

    Hey sassoagency,

    Yes please create us an admin account and we’ll look into it.

    Best regards,
    Peter

    in reply to: Can not update to ENFOLD 4.4.1 ( on all our websites ) #1009401

    Hi,

    I tried to log in but I get the error message “FEHLER: Das Passwort, das du für den Benutzernamen XY eingegeben hast, ist nicht korrekt.”

    Best regards,
    Peter

    in reply to: Post Slider with Post Title in Overlay #1009399

    Hey soundstrat,

    I’m sorry but this customization requires some work, is time intensive and beyond the scope of our support forum.

    You can use a masonry grid instead (like demonstrated here: https://kriesi.at/themes/enfold-2017/portfolio/masonry-portfolio-example-4-column-masonry-grid/ ) which offers a similiar effect out of the box.

    On the demo page we used this code

    
    [av_masonry_entries link='portfolio_entries,12,14,15' sort='yes-tax' items='9' columns='4' paginate='load_more' query_orderby='date' query_order='DESC' size='fixed manually' gap='no' overlay_fx='active' id='' caption_elements='title' caption_styling='overlay' caption_display='on-hover' color='' custom_bg='' av_uid='av-9ikih']
    

    to generate the effect. You can use the debug mode ( https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode ) to insert it into your existing template.

    Best regards,
    Peter

    in reply to: Moving Custom Form to new Enfold Site? #1009398

    Hey Moondreamer21,

    I’m sorry but this is beyond the scope of our support forum. Adding the form, testing it and styling it to fit into your current layout is a time intensive task and requires some work. Please hire a freelancer for this job or use a code block element to embed the form somewhere inside the page content.

    Best regards,
    Peter

    in reply to: Error with maps in enfold #1009395

    Hi,

    Great, glad I could help you :)

    Best regards,
    Peter

    in reply to: Linkedin Social icon in footer widget #1009394

    Hi!

    Yes sure – use this code in the text widget:

    
    <ul class="noLightbox social_bookmarks">
    <li class="social_bookmarks_facebook av-social-link-facebook"> [av_font_icon icon='ue8f3' font='entypo-fontello' style='' caption='' link='manually,https://www.facebook.com/precisionenergyptyltd/' linktarget='_blank' size='40px' position='left' color='' custom_class='' admin_preview_bg=''][/av_font_icon] </li>
    <li class="social_bookmarks_linkedin av-social-link-linkedin"> [av_font_icon icon='ue8fc' font='entypo-fontello' style='' caption='' link='manually,https://www.linkedin.com/company/precision-energy-pty-ltd/' linktarget='_blank' size='40px' position='left' color='' custom_class='' admin_preview_bg=''][/av_font_icon] </li></ul>
    

    and add this code to your quick css field:

    
    #top .widget .social_bookmarks li {
    float: none;
    border-right: none;
    display: inline-block;
    }
    

    Cheers!
    Peter

    in reply to: Google Maps API Key #1009380

    Hey renzosalvador,

    The error indicates a self-imposed daily limit has been exceeded or no billing account is set up. Please go to this page: https://console.developers.google.com/google/maps-apis/apis/maps-backend.googleapis.com/quotas and check your quotas. The contingent per day must be set to a reasonable value (i.e. 500).

    Best regards,
    Peter

    in reply to: Formating the email sent via Contact Form #1009377

    Hi,

    Does it work if you remove the code I provided from the child theme functions.php? If yes this may indicate a syntax error in the code I posted above. If not please check if some other code in your child theme may affect the contact form.

    Best regards,
    Peter

    Hey FelixB,

    Can you create me an admin account please – I’ll check if I can reproduce and debug the issue.

    Best regards,
    Peter

    in reply to: [SOLVED]10 column layout #1009374

    Hi,

    I think the code would look like:

    
    #top .team .no_margin_column.column-top-margin {
        margin-top: 0;
    }
    

    because the section is wrapped around the columns.

    Best regards,
    Peter

    in reply to: Easy Digital Downloads Shortcode does not work properly. #1009373

    Hi,

    I tried to reproduce the issue but the shortcode seems to work for me. Please log in with the credentials you gave me and go to the link I posted in the private content.

    Best regards,
    Peter

    in reply to: Linkedin Social icon in footer widget #1009367

    Hi,
    Yes you can add it to the functions.php :)

    Best regards,
    Peter

    in reply to: Custom fields in portfolio post #1009364

    Hi,

    Please add this code to the child theme functions.php to activate post meta support for portfolio entries:

    
    
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'custom-fields';
    	return $args;
    }
    

    Best regards,
    Peter

    in reply to: [SOLVED]10 column layout #1009359

    Hi,

    I fixed it – I added this code to the quick css field:

    
    #top .no_margin_column.column-top-margin {
        margin-top: 0;
    }
    

    Best regards,
    Peter

    in reply to: Boarders everywhere all of a sudden #1009355

    Hi,

    Great, glad Ismael could help you :)

    Best regards,
    Peter

    in reply to: Can not update to ENFOLD 4.4.1 ( on all our websites ) #1009354

    Hi,

    If you use ftp to update the theme please make sure to replace the entire theme folder. If you just overwrite the existing files you’ll get a blank page. Connect to ftp, go to wp-content/themes and rename the theme folder “enfold” to “enfold_bak”. Then download the new files from themeforest, unzip the theme files and upload them to wp-content/themes/enfold. Make sure the style.css file is located in wp-content/themes/enfold (file path wp-content/themes/enfold/style.css). If the theme works, you can simply delete the enfold_bak folder. If not, delete the enfold folder and rename enfold_bak to enfold.

    Best regards,
    Peter

    in reply to: Enfold theme will not update. #1009353

    Hi,

    I don’t know which files were modified but you can try to delete the /wp-content/themes/enfold/config-templatebuilder/ folder and to upload the new config-templatebuilder folder (from the updated enfold.zip you download from themeforest) to the /wp-content/themes/enfold/ directory.

    Best regards,
    Peter

    in reply to: Lightbox – Stop from scrolling up upon opening #1009352

    Hey Cordell,

    Please try to replace the html code for the popup link

    
    <a href="#popup1" class="open-popup-link">Click this button to open form in lightbox-FORM1</a>
    

    with

    
    <a href="#popup1" class="open-popup-link no-scroll">Click this button to open form in lightbox-FORM1</a>
    

    Best regards,
    Peter

    in reply to: Linkedin Social icon in footer widget #1009347

    Hi,

    Please add this code to your child theme

    
    
    add_filter( 'widget_text', 'do_shortcode' );
    
    

    It’s required because the text widget does not support/execute shortcodes by default – see https://www.wpbeginner.com/wp-tutorials/how-to-use-shortcodes-in-your-wordpress-sidebar-widgets/

    Then add this code to the footer text widget

    
    [av_font_icon icon='ue8f3' font='entypo-fontello' style='' caption='' link='manually,https://www.facebook.com/precisionenergyptyltd/' linktarget='_blank' size='40px' position='left' color='' custom_class='' admin_preview_bg=''][/av_font_icon]
    
    [av_font_icon icon='ue8fc' font='entypo-fontello' style='' caption='' link='manually,https://www.linkedin.com/company/precision-energy-pty-ltd/' linktarget='_blank' size='40px' position='left' color='' custom_class='' admin_preview_bg=''][/av_font_icon]
    
    

    If you want to change the icon size replace 40px with another value.

    Best regards,
    Peter

    in reply to: Enfold Video-Widget is not working #1009330

    Hi,

    Adding something new (quite different too)

    Nope, same configuration you had here: http://maskenzauber.com/temp/video-sidebar.mp4 (first 30 seconds).

    Regarding the self hosted video:
    I think this is a general bug/issue which we can’t fix/solve on our end. I now switched to the default theme (Twenty Seventeen) and added the video widget to the footer widget area. Then I checked the results and the video didn’t work with the default theme too (you can check it here: https://staging.h105244.server08.campusspeicher.de/datenschutzerklaerung/ in the footer area).

    I’m not sure if this is a problem with your video, with the mime types you’ve set for video files (see https://webplatform.github.io/docs/tutorials/configuring_mimetypes_on_the_server/#Apache-HTTPD-server&#8212;.htaccess for a sample .htaccess entry) or a general wordpress bug.

    However I’ve now found a workaround for your problem which also works with your self hosted video and Enfold (only).

    1) You need to add this code to the child theme (I’ve already done this on your dev server):

    
    add_filter( 'widget_text', 'do_shortcode' );
    

    It’s required because the text widget does not support/execute shortcodes by default – see https://www.wpbeginner.com/wp-tutorials/how-to-use-shortcodes-in-your-wordpress-sidebar-widgets/

    2) Add a text widget to the sidebar and insert a video shortcode (also used in the template builder)

    
    [av_video src='https://staging.h105244.server08.campusspeicher.de/videos/trailer-short.mp4' mobile_image='' attachment='' attachment_size='' format='16-9' width='16' height='9' conditional_play='' av_uid='']
    

    Replace the src value with your video url and save the widget. Afterwards the video should be displayed in the sidebar (I tested this on your website too).

    Best regards,
    Peter

    in reply to: Ajax window stopped working #1009307

    Hi,

    I fixed the issue – I had to add this code to the child theme functions.php:

    
    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    		$(window).trigger('av-content-el-height-changed');
    	}, 1000);
    })(jQuery);
    </script>
    <?php
    }
    

    Best regards,
    Peter

    in reply to: Elementor Pro Pagination #1009290

    Hey youradminbff,

    To be honest I’ve never worked with Elementor and I’m not aware of any obvious reasons why the pagination function of Elementor conflicts with Enfold. I’ll leave this thread open – maybe another user already managed to use elementor wit Enfold.

    Best regards,
    Peter

    in reply to: Easy Digital Downloads Shortcode does not work properly. #1009283

    Hey AbrahamenDeLeeuw,

    Please create me an admin account – I’ll look into it.

    Best regards,
    Peter

Viewing 30 posts - 541 through 570 (of 9,352 total)