Viewing 30 results - 421 through 450 (of 11,218 total)
  • Author
    Search Results
  • #1435651
    Eleina_Shinn
    Participant

    On this site, after editing a page, when I hit the update button, the edits disappear or it goes back to a previous version of the page, any version it feels like. I’ve done it a ton of times and keep losing my edits. I have added test pages to see if it was just the about us page, but it wasn’t, it happens on all of my new test pages as well. (The site worked fine all day working on the home page and then around 1pm it started doing this).

    I have a coming soon page up, so I’ll provide login credentials below. Any help you could provide would be much appreciated!

    Follow Up: I was having so much trouble, I tried two things to rule them out as conflicts or the culprit:

    1. I migrated a copy of this website to my Siteground Server; and
    2. De-Activated all plugins
    3. Uploaded fresh version of Enfold that I downloaded from Themeforest

    It did not work, I still loose everything as soon as I update a Page, ugh. Thank you for your help looking into this!

    • This topic was modified 2 years, 1 month ago by Eleina_Shinn.
    • This topic was modified 2 years, 1 month ago by Eleina_Shinn.
    • This topic was modified 2 years, 1 month ago by Eleina_Shinn.
    #1435625

    In reply to: Blog Layout

    Hi,
    Glad that this helps, I’m not sure what you mean by fixing the right cell width, you are using a grid row with two cells at 50%, if you want a different cell size try the grid row Set Cell Size button below the element:
    Enfold_Support_4855.jpeg
    Perhaps you mean that you only have two items showing but the items are each set to 1/3 of the space, to make them each 1/2 try changing the number of columns the blog element:
    Enfold_Support_4857.jpeg
    If this doesn’t help try explaining further.
    As for using the built-in blog post navigation, you will not see these prev/next elements in the embed area because we are not embeding the whole page, only the inner “content” area,
    but you could add this solution to add new blog post navigation buttons to the content area of your posts, and in my test on my demo page clicking them changes the embed post successfully:
    Enfold_Support_4859.jpeg

    Best regards,
    Mike

    #1435602
    phil-0071
    Participant

    Hi Support Team,

    I used your script in the documentation (https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options) to register a new facebook-icon for use in the Enfold > Social Profiles Area – everything works fine.
    Now I would like to add another new insta-icon the same way.

    Could you please help me to extend/alter the script in the functions.php?

    best regards,
    phil

    #1435375

    In reply to: Blog Layout

    Hi,
    Thanks for the screenshot I believe that you want to embed one page into another and have the links open in the same embed section.
    Such as embed the blog in one side of a grid row and then open the clicked posts in the same section, this is quite tricky but I believe that I have achieved it on this test page.
    Enfold_Support_4831.jpeg
    in the backend I have a grid row element and one side has a background image and the other side has a code block element:
    Enfold_Support_4833.jpeg
    the code block element has this code:

    <div id="embedded-section"></div>
    
    <script>
    window.addEventListener('DOMContentLoaded', function() {
        (function($) {
            var initialContent = null; // Variable to store the initial content
    
            // Function to load content via AJAX
            function loadContent(url, initialLoad = false) {
                $.ajax({
                    url: url,
                    type: 'GET',
                    dataType: 'html', // Explicitly expect HTML
                    success: function(data) {
                        var content;
                        // Determine the selector based on whether it's the initial load
                        if (initialLoad) {
                            content = $(data).find('#av_section_1').html();
                        } else {
                            // Try the first selector
                            content = $(data).find('.av-main-single').html();
                            // If not found, try the second selector
                            if (!content) {
                                content = $(data).find('.post-entry').html();
                            }
                        }
    
                        // Check if content was found
                        if (content) {
                            if (!initialLoad) {
                                content = '<a href="#" class="back-link">Back</a>' + content; // Prepend back link to content
                            } else {
                                initialContent = content; // Save initial content if it's the initial load
                            }
                            $('#embedded-section').html(content);
                            bindLinkClicks(); // Re-bind click events to new links within the content
                        } else {
                            console.error('Requested content not found using the provided selectors.');
                            $('#embedded-section').html('Requested content not found.');
                        }
                    },
                    error: function(xhr, status, error) {
                        console.error('Error loading content:', error);
                        $('#embedded-section').html('Error loading content.');
                    }
                });
            }
    
            // Bind click events to links within the embedded section
            function bindLinkClicks() {
                $('#embedded-section a').off('click').on('click', function(event) {
                    event.preventDefault(); // Prevent default link behavior
                    var linkUrl = $(this).attr('href'); // Get the URL of the clicked link
                    
                    if ($(this).hasClass('back-link')) {
                        // If the back link is clicked, load the initial content
                        $('#embedded-section').html(initialContent);
                        bindLinkClicks(); // Re-bind click events
                    } else {
                        console.log('Attempting to load:', linkUrl);
                        loadContent(linkUrl); // Load content via AJAX, not initial load
                    }
                });
            }
    
            // Initial loading of content with specific section
            loadContent('https://enfold.savvyify.com/embed-2', true);
    
            // Initial binding of click events on page load
            bindLinkClicks();
        })(jQuery);
    });
    
    </script>

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Please change the url in the code to your page with the blog element, look for this part of the code:

    // Initial loading of content with specific section
            loadContent('https://enfold.savvyify.com/embed-2', true);

    Now the page that is embeded is a ALB page with a color section set to 100% height and a blog element inside:
    Enfold_Support_4835.jpeg
    by default the first color section of a ALB page has the ID av_section_1, this is important because it is what the script calls and will only show this section, not the header, footer, or sidebar, but set this page to no sidebar as the content width is affected.
    Now to show the posts with no header, footer or sidebar we will use the class av-main-single for Classic Editor pages and if that is not found because it is a ALB post we will try post-entry, so when a post link is clicked the post will load in the same section:
    Enfold_Support_4837.jpeg
    Now since the back button on the browser won’t work we added a small “back” link at the top of the embed section:
    Enfold_Support_4839.jpeg
    Please give this a try.
    Please note that this will only work for pages and links on your site.
    Please note Page Preloading will interfere, so please disable.

    Best regards,
    Mike

    #1435364

    Hey dowlassmoss,
    Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 480px) { 
    	#top.home .avia-slideshow-button {
    		display: none;
    	}
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    this will hide the buttons below 480px and then the caption will show.

    Best regards,
    Mike

    Hey Eleina,
    I didn’t find a way to do this so I created a shortcode to create a button that will play a audio file and show a progress bar for the audio track while it is playing
    Enfold_Support_4795.jpeg
    The shortcode to use on your page:
    [audio_player src="URL_TO_YOUR_AUDIO_FILE.mp3" text="Custom Button Text"]
    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    // use this shortcode: [audio_player src="URL_TO_YOUR_AUDIO_FILE.mp3" text="Custom Button Text"]
    function custom_audio_player_shortcode($atts) {
        $atts = shortcode_atts(
            array(
                'src' => '',
                'text' => 'Play Audio',
            ),
            $atts,
            'audio_player'
        );
    
        // Generate a unique ID for this instance
        $uid = uniqid('audio_player_');
    
        ob_start();
        ?>
        <style>
            .custom-audio-player {
                position: relative;
                max-width:200px;
                margin-bottom:10px;
            }
    
            .audio-control {
                position: relative;
                overflow: hidden;
                padding: 10px;
                border: none;
                background-color: #007bff;
                color: #ffffff;
                cursor: pointer;
                width:200px;
                transition: background-color 0.3s ease;
            }
    
            .audio-progress {
                position: absolute;
                bottom: 0;
                left: 0;
                height: 5px;
                background-color: #ff0000;
                width: 0;
                max-width: 100%;
                transition: width 0.1s linear;
            }
        </style>
        <div class="custom-audio-player" id="<?php echo $uid; ?>">
            <button class="audio-control"><?php echo esc_html($atts['text']); ?></button>
            <div class="audio-progress"></div>
        </div>
        <audio class="custom-audio" src="<?php echo esc_url($atts['src']); ?>"></audio>
        <script>
            document.addEventListener('DOMContentLoaded', function() {
                var player = document.getElementById('<?php echo $uid; ?>');
                var audio = player.nextElementSibling;
                var button = player.querySelector('.audio-control');
                var progress = player.querySelector('.audio-progress');
                var originalButtonText = "<?php echo esc_js($atts['text']); ?>";
    
                button.addEventListener('click', function() {
                    if (audio.paused) {
                        audio.play();
                        button.textContent = 'Pause Audio';
                    } else {
                        audio.pause();
                        button.textContent = originalButtonText; // Use originalButtonText instead of hardcoding
                    }
                });
    
                audio.addEventListener('timeupdate', function() {
                    var duration = audio.duration;
                    var currentTime = audio.currentTime;
                    var progressWidth = (currentTime / duration) * 100 + '%';
                    progress.style.width = progressWidth;
                });
    
                audio.addEventListener('ended', function() {
                    button.textContent = originalButtonText;
                });
            });
        </script>
        <?php
        return ob_get_clean();
    }
    add_shortcode('audio_player', 'custom_audio_player_shortcode');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    Enfold_Support_2680.jpeg
    then add the above code and save.
    You can adjust the css in the code above to suit your site.

    Best regards,
    Mike

    #1435144

    In reply to: remove button in menu

    Hey Josh,
    Your button should be a menu item that you can find in your menu and remove it, if you only want to hide it on mobile you can add this class the class field:
    av-small-hide av-mini-hide
    Enfold_Support_4782.jpeg
    notice that there are no dots and there is a space.

    If you have further questions please log in to the support forum and open a new thread. Please note that using the contact form is not appropriate for support questions.
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.

    Best regards,
    Mike

    #1435087

    Hey netztaucher,

    Thank you for the inquiry.

    You may need to edit the enfold/config-woocommerce/woocommerce-mod.js file and remove this code around line 131 to disable the custom quantity buttons:

    avia_apply_quant_btn();
    
    	//if the cart gets updated via ajax (woocommerce 2.6 and higher) we need to re apply the +/- buttons
    	$( document ).on( 'updated_cart_totals', avia_apply_quant_btn );

    Make sure to temporarily disable the Enfold > Performance > File Compression settings after doing the modification.

    Best regards,
    Ismael

    #1435044

    Hi,
    Your image looks like a subscribe popup form, I assume you are referring to the slightly transparent background overlay and that the box is white, with a dashed border, the following adjustments will produce this:
    Enfold_Support_4774.jpeg

    #top .avia-cookie-consent-wrap[aria-hidden="false"] {
        background-color: rgba(0, 0, 0, 0.3);
        height: 100vh;
        width: 100vw;
        top: 0;
        position: absolute;
        z-index: 999;
    }
    
    #top .avia-cookie-consent.avia-cookiemessage-bottom {
    	bottom: unset;
    	left: unset;
    	margin: 0;
    	position: absolute;
    	top: 50%;
    	left: 50%;
    	transform: translate(-50%, -50%);
    	background-color: #fff;
    	color: #000;
    	border: 3px dashed #000;
    }
    #top .avia-cookie-consent .avia-cookie-consent-button {
    	display: block;
        width: 60%;
        margin: 10px auto;
        background-color: #e1e1e1;
        color:#000;
    }
    #top .avia-cookie-consent p {
    	 display: block;
    	 padding-bottom: 20px;
    }
    #top .avia-cookie-consent-button {
    	 border-radius: 50px;
    }
    @media only screen and (max-width: 767px) { 
    	#top .avia-cookie-consent.avia-cookiemessage-bottom {
    	width: 80%;
    	}
    }
    @media only screen and (min-width: 768px) { 
    	#top .avia-cookie-consent.avia-cookiemessage-bottom {
    	width: 25%;
    	}
    }

    Best regards,
    Mike

    #1435010
    netztaucher
    Participant

    hello there,

    i am testing the Smart Wuaintity Pluign from https://woo.com/de/products/smart-product-quantity/#.

    Unfortuanilty it Enfold break the plus and minus input buttons.
    Is there a solutionfor this?

    bis dann, marco.

    • This topic was modified 2 years, 2 months ago by netztaucher.
    • This topic was modified 2 years, 2 months ago by Yigit.
    #1434901

    In reply to: premium support

    Hi,

    You can use this link to open a new thread, or click the big blue button on the Enfold sub forum: https://imgur.com/a/AnoSPNb

    Best regards,
    Rikard

    #1434713

    In reply to: Website for ceramicist

    Hi,
    Glad to hear, please register your Purchase Code here for support.
    Then log into the support forum and open a new thread.
    Or click the full-width blue button at the top of the forum.
    Enfold_Support_661.jpeg

    Best regards,
    Mike

    #1434697

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
    #top #wrap_all .avia-button {
      padding: 30px 30px 30px 30px !important;
      font-size: 20px;
    }
    }

    I’m looking at this button on your homepage as an example:
    Enfold_Support_4758.jpeg
    these are the correct buttons, right?
    If you have a missing bracket in your css somewhere it could cause issues for new css, so try adding the css to WordPress ▸ Customize ▸ Additional CSS and see if that makes a difference.

    Best regards,
    Mike

    #1434652

    Hey Dave,
    Thank you for your patience, when you say the next and previous buttons cycle through all post categories do you mean the pagination of the masonry element of the post next and previous buttons on the side of the page?
    Enfold_Support_4743.jpeg
    the masonry element doesn’t control the post next and previous buttons, these are not limited to a specific category they cycle through all posts.

    Best regards,
    Mike

    #1434614

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling in order to only target mobile devices:

    @media only screen and (max-width: 767px) {
    .avia-button {
      padding: 30px 30px 30px 30px !important;
    }
    }

    Best regards,
    Rikard

    #1434533

    Hi,
    Thanks for your patience, it looks like you have some custom css changing the background color of the video controls from gray to transparent and disabling the video play & volume buttons which is an svg images, so if you want these to be red you will need to create new ones and upload them to your site, I added the link below of your current ones.
    The player is a core WordPress element and not a Enfold element, and I don’t expect that editing the svg to be easy because the one image contain many elements:
    Enfold_Support_4716.jpeg
    you probably can find someone on fiverr to edit it and make the elements red for you and then upload it to your site.
    Or you could remove your custom css and use this css to make the background color red and leave the player items white as they are now, so it would look like this:
    Enfold_Support_4718.jpeg

    div .mejs-container, div .mejs-embed, div .mejs-embed body, div .mejs-container div .mejs-controls {
        background: #bd1229;
    }
    .mejs-button>button {
        background-color: #bd1229;
    }

    It is kind of hard to test with your custom css in place, but I believe this is the correct css, if it doesn’t work correctly like the image above, please remove it and you other custom css so we can check again.

    Best regards,
    Mike

    #1434293

    Hey Munford,
    Thanks for the link to your test page, when I check the background video on Windows desktop and Android mobile the video plays correctly, IOS typically blocks videos from auto playing on mobile, they have become more aggressive and the best option is to use a fallback image for mobile or a small gif.
    Background videos don’t have sound, the thread you linked to is from 2016 and the browsers have changed a lot since then. Perhaps you can try the LayerSlider instead, but with each update the browsers limit these actions more, so you may be better to design to what is allowed now so you don’t need to redesign later.
    The WordPress media player, when it used by Enfold, doesn’t have volume controls on mobile by design, WordPress points out that mobile devices have manual volume buttons so they removed the controls. The only way around this is to use a different media player plugin.

    Best regards,
    Mike

    #1434169

    Topic: Google maps apikey

    in forum Enfold
    Empatica
    Participant

    Hi,

    We have an isseu with Google Maps. A few days ago, it stopped to work. The error on the console is “Google Maps JavaScript API warning: NoApiKeys”.
    I try to fix it with this solutions but it doesn’t work:

    – Check if you typed the key correctly.
    – If you use the restriction setting on Google try to remove that, wait a few minutes for google to apply your changes and then check again if the key works here. If it does, you probably have a syntax error in your referrer url
    – If none of this helps: deactivate all plugins and then check if the API works by using the button above. If thats the case then one of your plugins is interfering.

    Now if I introduce the apikey, it doesn’t save on the enfold option.

    Could you help me to fix the issue.

    Thanks in advance,

    Jordi

    #1434043

    Hey designmek,

    Thank you for the inquiry.

    Please add this css code to adjust the space between the radio buttons and the input label.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .wp-block-woocommerce-cart-order-summary-shipping-block .wc-block-components-radio-control .wc-block-components-radio-control__input {
        margin-left: -10px;
      }
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    #1434025

    Hey northorie,
    Try starting with the theme options to have the cookie bar at the bottom of the page, and then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-cookie-consent.avia-cookiemessage-bottom {
    	bottom: unset;
    	left: unset;
    	margin: 0;
    	position: absolute;
    	top: 50%;
    	left: 50%;
    	transform: translate(-50%, -50%);
    	background-color: rgba(0,0,0,0.3);
    }
    #top .avia-cookie-consent .avia-cookie-consent-button {
    	display: block;
        width: 60%;
        margin: 10px auto;
    }
    #top .avia-cookie-consent p {
    	 display: block;
    	 padding-bottom: 20px;
    }
    #top .avia-cookie-consent-button {
    	 border-radius: 50px;
    }
    @media only screen and (max-width: 767px) { 
    	#top .avia-cookie-consent.avia-cookiemessage-bottom {
    	width: 80%;
    	}
    }
    @media only screen and (min-width: 768px) { 
    	#top .avia-cookie-consent.avia-cookiemessage-bottom {
    	width: 25%;
    	}
    }
    

    the desktop results:
    Enfold_Support_4685.jpeg
    tablet:
    Enfold_Support_4687.jpeg
    mobile:
    Enfold_Support_4689.jpeg
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1434000

    In reply to: blog page customize

    Hey rqn,
    If you want to hide the prev / next post navigation and add a new blog post navigation to the bottom of the posts, above the share buttons, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'the_content', 'prev_next_post_nav' );
    function prev_next_post_nav( $content ) {
    	if ( is_singular('post') ) {
    	$content .= '<div style="clear:both;"></div>';
    	$content .= '<div class="prev-next-nav-container">';
    	$content .= '<div class="prev-nav">';
    	$content .= get_previous_post_link();
    	$content .= '</div>';
    	$content .= '<div class="next-nav">';
    	$content .= get_next_post_link();
    	$content .= '</div>';
    	$content .= '</div>';
    	return $content;
    	}
    	else {
    		return $content;
    	  }
    }

    Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .prev-next-nav-container {
    	width: 100%;
    	height: 70px;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .prev-next-nav-container .prev-nav {
    	display: inline-block;
    	float: left;
        border-style: solid;
        border-width: 2px;
        border-radius: 0px;
        text-align: center;
        padding: 5px;
        text-decoration: none;
    }
    .prev-next-nav-container .next-nav {
    	display: inline-block;
    	float: right;
        border-style: solid;
        border-width: 2px;
        border-radius: 0px;
        text-align: center;
        padding: 5px;
        text-decoration: none;
    }
    .prev-next-nav-container .prev-nav:hover,
    .prev-next-nav-container .next-nav:hover {
    	background-color: rgba(0,0,0,.2);
    	color: #fff;
    }
    .prev-next-nav-container .prev-nav:hover a,
    .prev-next-nav-container .next-nav:hover a {
    	color: #fff;
    }
    .prev-next-nav-container .prev-nav a,
    .prev-next-nav-container .next-nav a {
    	display: inline-block;
    }
    .prev-next-nav-container .prev-nav:empty,
    .prev-next-nav-container .next-nav:empty,
    .single-post .avia-post-nav.avia-post-prev,
    .single-post .avia-post-nav.avia-post-next {
      display: none;
    }

    This will make post navigation buttons like this:
    Enfold_Support_4679.jpeg
    The buttons only have a light styling, you can adjust to suit.
    On Advanced Layout Builder posts they will show at the bottom of the post page:
    Enfold_Support_4681.jpeg
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1433804

    Hey Rikard,
    of course. Please find it in the private content area.

    What you see there:
    Now the navigation link “Kontakt” has the “Button Style Colored” orange background – which is set in Enfold’s “general styling” settings.
    When I move the mouse over it, the colors changes a little bit.

    With Yigit’s code I can change the background to any other color – but unfortunately I can’t change the color slightly when mouse-over.
    In other words: for me, the font color of “Kontakt” should remain white, the background should be black, and when hovering, the background should turn orange.
    That’s definitely possible, isn’t it?
    :-)

    Thanks for help and best regards
    Grobi

    petrab20
    Participant

    Hallo liebes Kriesi-Team,

    ich habe folgende Anliegen, bei denen ich eine Lösung benötige:

    1. Generell Button (Inhaltselement)
    Es unterscheiden sich der Sendenbutton (Kontaktformular) in Größe und Hovereinstellungen zu dem Button (Inhaltselemente). Ich hätte gern generell die Buttons wie den Sendenbutton im Kontaktformular. Wie und wo kann ich das einstellen?
    Als Workaround hatte ich überlegt, den Button als Custom Element anzulegen, aber der Reiter fehlt mir. (Es laufen noch 3 weitere Webseiten jeweils mit derselben Enfold-Version, bei manchen ist der Custom Reiter da, bei anderen nicht.)

    2. Teammember mit Social-Media bzw. zusätzliches E-Mail-Element und Telefonnummer
    Ich habe hier ein zusätzliches E-Mail-Element angelegt. Die Ansicht bei Mauskontakt unterscheidet sich zu dem Social-Media-Element LinkedIn bzw. es gibt keinen Hover-Effekt. Warum?

    In der Mitgliedsbeschreibung habe ist eine Telefonnummer angelegt. Beispiel: +49 9721 12 12 12. Hier bekomme ich folgende Warnmeldung: Warning: Characters <,>,[,] might break ALB backend or frontend.

    Ich freu mich über einen Lösungsvorschlag. Kommunikation gern in Deutsch.
    Vielen Dank und beste Grüße, Petra

    #1433182

    Hey Yaphoon,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the masonry title.

    .av-masonry-entry .av-masonry-entry-title {
        line-height: 1.3em;
        margin: 0;
        font-size: 20px;
        font-family: Verdana;
    }
    

    To adjust the hover color of the menu button, add this.

    #top #wrap_all .header_color #menu-item-174:hover > a .avia-menu-text {
        background-color: #3f75e9;
        color: #ffffff;
        border-color: #3f59e9;
    }

    And to adjust the size of the images in the archive pages, you have to edit the enfold/taxonomy-portfolio_entries.php and adjust the parameters in the avia_post_grid instance around line 38.

    $grid = new avia_post_grid(
    										array(
    											'linking'			=> '',
    											'columns'			=> '3',
    											'contents'			=> 'title',
    											'sort'				=> 'no',
    											'paginate'			=> 'yes',
    											'set_breadcrumb'	=> false,
    											'preview_mode' => 'custom',
    											'image_size' => 'full'
    										));
    

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi,
    I have checked your homepage on Windows in Chrome, Firefox, & Edge and the slider at the top with the button seems to be the same in each browser. I didn’t see any “zooming” on hover in the slider, but I did on a image lower on the page that looks like a office.
    Above you write that the “zooming” only works when you are logged in, typically this would point to an error in the cached files since typically when you are logged in you are not served any cached files. Often when the theme and a plugin minifys the files an error can occur due to the nature of “minifying” which removes spaces & certain characters. It looks like your site is also using a CDN, cloudflare which could be serving the bad files.
    Try disabling the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files, then clear and disable your caching plugin and your server cache and your CDN, it could take a few hours your your site to start serving the same files as when you are logged it, especially for cloudflare which can take up to 24 hours.

    Best regards,
    Mike

    #1432886

    Hey rixi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av-magazine-sort .all_sort_button {
    	display: none;
    }
    .av-magazine-sort .all_sort_button ~ span.text-sep:first-of-type {
    	display: none;
    }
    

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1432881

    Hi,
    Thank you Guenni007 for your examples, the private page that clbdcnpafe linked to uses a video element with a vimeo video link, and unfortunately the video mute option is from vimeo inside of an iframe. So as you pointed out, the videos must be self-hosted.
    Based on Guenni007’s script I modified it some to create a button to enabled the sound on self-hosted videos, this is my example page, and this is what the button looks like:
    Enfold_Support_4606.jpeg
    This is the css for the Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .custom-mute {
        display: block;
        color: #fff;
        font-size: 40px;
        padding: 20px;
        border: solid 2px #fff;
        position: absolute;
        bottom: 50%;
        right: 36%;
        z-index: 50;
    }
    .custom-mute.sound-on {
    	display: none;
    }

    This is the code for the end of the child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($) {  
        $('.avia-video').prepend('<div class="custom-mute">Click to unmute</div>');
          $('.avia-video').on('click', '.custom-mute', function() {
            $('video').prop('muted', !$("video").prop('muted'));
          });
        
        $('.avia-video').on('click', '.custom-mute', function() {
          $(this).toggleClass("sound-on");
        });
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    This doesn’t require any theme files to be modified because it is only for the video element and not a background video in a color section or the slider element as Guenni007’s examples, in these cases please follow Guenni007’s post.

    Best regards,
    Mike

    Hey bemodesign,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top .av-custom-form-color .button {
      border-color: green;
    }
    
    #top .av-custom-form-color .button:hover {
      border-color: blue;
      background-color: red;
      color: white;
    }

    Best regards,
    Rikard

    #1432679

    Hi,

    Thank you for the update.

    We can’t reproduce the same error on our installation. Did you add any scripts or custom code to the Button Row element? Please set the builder to debug mode to make the shortcodes accessible from the shortcodes field.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    After adding the filter, you’ll find another field below the Advanced Layout Builder containing shortcodes. You can remove the shortcode of the Button Row element manually from the field, then update the page. Please create a site backup before proceeding.

    Best regards,
    Ismael

    #1432657

    Dettagli dell’errore
    Un errore di E_ERROR è stato causato nella linea 876 del file /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php. Messaggio di errore: Uncaught Error: Cannot unset string offsets in /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php:876
    Stack trace:
    0 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php(1024): avia_sc_buttonrow->get_element_styles_item(Array)
    1 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): avia_sc_buttonrow->av_buttonrow_item(”, ”, ‘av_buttonrow_it…’)
    2 [internal function]: do_shortcode_tag(Array)
    3 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘\n[av_butt…’)
    4 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): do_shortcode(‘\n[av_butt…’)
    5 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php(998): ShortcodeHelper::avia_remove_autop(‘\n[av_butt…’, true)
    6 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_buttonrow->shortcode_handler(Array, ‘\n[av_butt…’, ‘av_buttonrow’, Array)
    7 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\n[av_butt…’, ‘av_buttonrow’)
    8 [internal function]: do_shortcode_tag(Array)
    9 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘[av_textbloc…’)
    10 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(580): do_shortcode(‘[av_textbloc…’)
    11 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/columns/columns.php(2072): ShortcodeHelper::avia_apply_autop(‘[av_textbloc…’)
    12 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_columns->shortcode_handler(Array, ‘\n[av_textblock …’, ‘av_one_half’, Array)
    13 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\n[av_textblock …’, ‘av_one_half’)
    14 [internal function]: do_shortcode_tag(Array)
    15 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘\n[av_hr class=’…’)
    16 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): do_shortcode(‘\n[av_hr class=’…’)
    17 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/section/section.php(1466): ShortcodeHelper::avia_remove_autop(‘\n[av_hr class=’…’, true)
    18 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_section->shortcode_handler(Array, ‘\n[av_hr class=’…’, ‘av_section’, Array)
    19 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\n[av_hr class=’…’, ‘av_section’)
    20 [internal function]: do_shortcode_tag(Array)
    21 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘[av_layerslider…’)
    22 /home/swfpkapi/public_html/wp-includes/class-wp-hook.php(324): do_shortcode(‘[av_layerslider…’)
    23 /home/swfpkapi/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘[av_layerslider…’, Array)
    24 /home/swfpkapi/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php(1863): apply_filters(‘the_content’, ‘

Viewing 30 results - 421 through 450 (of 11,218 total)