Viewing 30 results - 31 through 60 (of 105,220 total)
  • Author
    Search Results
  • #1484634

    Hi,
    The “preview” of a draft page doesn’t always work correctly, you are always best to publish the page and view it to see an accurate result of your page.
    Do you mean the “element preview” shown next to the text element? This is enabled by default in the theme, go to Enfold Theme Options ▸ Layout Builder ▸ Disable Advanced Layout Builder Preview In Backend to see if it is disabled:
    Screen Shot 2025 05 24 at 6.45.23 PM

    Best regards,
    Mike

    #1484633

    In reply to: difference on 2 pages

    Hi,
    On your second page in the source code the word “Batliner” has ­ twice in the word:
    Screen Shot 2025 05 24 at 6.14.20 PM
    this causes a problem for Guenni007’s script, I pointed this out for you in your other thread. At the time you said you thought it was from the plugin: Data Tables by Supsystic.
    Did you try disabling the plugin?

    Soft hyphen (­) This character is not rendered visibly; instead, it suggests a place where the browser might choose to break the word if necessary. In HTML, you can use ­ to insert a soft hyphen.

    Since your first page doesn’t seem to use the plugin I think that it probably was adding the Soft hyphen.

    Best regards,
    Mike

    #1484627

    Hey Jason,
    Thanks for your patience, in the title when you see [av_dynamic_el this looks like the ACF code with the “{” mark is braking the ALB element shortcode, I tested without the ACF code in the title field in the first link below and the ACF code for the answer in the content field which worked. Below the accordion panel I tested both ACF codes which also worked:
    Screen Shot 2025 05 24 at 5.25.03 PM
    I don’t know the cause for this, but I found that the ACF code could be used in the title if the element shortcode is not used, but use the element HTML instead. See link 2 below:
    Screen Shot 2025 05 24 at 5.30.00 PM
    frontend:
    Screen Shot 2025 05 24 at 5.35.53 PM

    Best regards,
    Mike

    #1484619
    TESLA
    Participant

    When using pictures / sliders on one side and an other element on the other side in one row I’m desperate. I don’t see any reasonable enfold setting option to control the max heights of elements in one row. (1,2)

    For example yo use an image/slider on the left and another element on the right. You have no control to limit the height of the left image / slide. It works only in big resolutions (3) and looks ugly below (4). It’s just displayed much too larger and this up to landscape mode. Have not found a setting, work-around, css code to solve this problem. Even media queries doesn´t work properly.

    Do you have Solution?

    #1484616

    Hi,
    To have a smaller font size for the magazine titles, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #wrap_all .all_colors h3.av-magazine-title {
    	font-size: 12px;
    }

    adjust to suit and clear your browser cache
    Screen Shot 2025 05 24 at 1.34.01 PM

    Best regards,
    Mike

    #1484614

    Hi,
    Thank you for your patience, when I test your snippet above I find that the quotes have been converted to curly quotes which break the code.
    If I correct them first, they work correctly in the code block element:
    Screen Shot 2025 05 24 at 12.25.29 PM
    Screen Shot 2025 05 24 at 12.41.37 PM
    when using a code snippet like this the code block element is the correct element to use because the PayPal snippet is calling a function from the PayPal site which will run in the backend editor where you don’t want it to. The visual mode of the text editor will run the code, but the code block element will not.
    If you really want to use the text block element, then use the code tab and do not switch to the visual tab. Here I show that this works, in the code tab you see the code and the preview shows the button:
    Screen Shot 2025 05 24 at 12.52.08 PM
    at this point click “save” and not the visual tab and the button is shown in the editor, which means that WordPress is running the code in the text element in the backend.
    Now you can update the page and view the frontend:
    Screen Shot 2025 05 24 at 12.57.48 PM
    This is the corrected code snippet that I used:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
    <input type="hidden" name="cmd" value="_s-xclick" />
    <input type="hidden" name="hosted_button_id" value="H87UB2HDHP3GS" />
    <table>
    <tr>
    <td>
    <input type="hidden" name="on0" value="Options for Brondanw & Nantclwyd only"/>
    Options for Brondanw & Nantclwyd only
    </td>
    </tr>
    <tr>
    <td>
    <select name="os0">
    <option value="Member">
    Member £17.00 GBP
    </option>
    <option value="Guest">
    Guest £19.00 GBP
    </option>
    <option value="2 Members">
    2 Members £34.00 GBP
    </option>
    <option value="1 Member + 1 Guest">
    1 Member + 1 Guest £36.00 GBP
    </option>
    <option value="Child under 16">
    Child under 16 £10.00 GBP
    </option>
    </select>
    </td>
    </tr>
    </table>
    <input type="hidden" name="currency_code" value="GBP" />
    <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif" border="0" name="submit" title="PayPal – The safer, easier way to pay online!" alt="Add to Cart" />
    </form>

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    To prevent your code snippet from changing if you want to edit the text block element in the future, such as adding text around the button, we will create a shortcode for your button, by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function paypal_button_shortcode() {
        ob_start(); ?>
        
        <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
            <input type="hidden" name="cmd" value="_s-xclick" />
            <input type="hidden" name="hosted_button_id" value="H87UB2HDHP3GS" />
            <table>
                <tr>
                    <td>
                        <input type="hidden" name="on0" value="Options for Brondanw & Nantclwyd only" />
                        Options for Brondanw & Nantclwyd only
                    </td>
                </tr>
                <tr>
                    <td>
                        <select name="os0">
                            <option value="Member">Member £17.00 GBP</option>
                            <option value="Guest">Guest £19.00 GBP</option>
                            <option value="2 Members">2 Members £34.00 GBP</option>
                            <option value="1 Member + 1 Guest">1 Member + 1 Guest £36.00 GBP</option>
                            <option value="Child under 16">Child under 16 £10.00 GBP</option>
                        </select>
                    </td>
                </tr>
            </table>
            <input type="hidden" name="currency_code" value="GBP" />
            <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif" border="0" name="submit" title="PayPal – The safer, easier way to pay online!" alt="Add to Cart" />
        </form>
    
        <?php
        return ob_get_clean();
    }
    add_shortcode('paypal_button', 'paypal_button_shortcode');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Then in your text block element use this shortcode [paypal_button]
    Screen Shot 2025 05 24 at 1.16.48 PM
    in the backend you will only see the shorcode:
    Screen Shot 2025 05 24 at 1.16.48 PM
    and on the frontend the button shows:
    Screen Shot 2025 05 24 at 1.20.15 PM

    Best regards,
    Mike

    Thanks! Can you help with these please?;

    1. How do I reduce space between address and phone number in the header?: https://img.savvyify.com/image/reduce-space.9wb5f

    2. How to show Social Media icons larger on mobile view at the top

    #1484604
    dpcram
    Participant

    I have been using enfold for quite some time. recently I started building a new site with it for work. I am using a grid row but it will not stack properly on mobile. I have set Column Behaviour When Fullwidth to “individually select position for each column” and then have gone and numbered each column accordingly.

    In this example the image is set to 2 and the text box with button is set to 1 because I want the image to stack below the text box on mobile but instead the image is showing up on top.

    #1484598

    Hey Anne,

    Thank you for the inquiry.

    Please check the links below for possible solutions:

    https://kriesi.at/support/topic/frontend-how-to-hide-image-title-on-hover/#post-1469760
    https://kriesi.at/support/topic/disable-image-title-tooltip-on-hover/#post-1467149

    Let us know if you need more info.

    Best regards,
    Ismael

    #1484595

    Hi,

    Please replace the script with this:

    function av_inline_popup_enabler() { ?>
        <script>
        (function($){
            $(document).ready(function() {
                $('[class*="group-"]').each(function() {
                    $(this).magnificPopup({
                        delegate: 'a.inline_popup',
                        type: 'image',
                        gallery: { enabled: true },
                        midClick: true,
                        callbacks: {
                            elementParse: function(item) {
                                var href = item.el.attr('href');
                                if (href.match(/\.(jpg|jpeg|png|gif|webp)(\?.*)?$/i)) {
                                    item.type = 'image';
                                } else {
                                    item.type = 'iframe';
                                }
                            },
                            open: function() {
                                var title = this.st.el.attr('title') || this.st.el.attr('alt') || '';
                                if (title) {
                                    var $caption = $('<div class="mfp-title" style="text-align:center; padding:10px 0;">' + title + '</div>');
                                    this.contentContainer.append($caption);
                                }
                            }
                        }
                    });
                });
            });
        })(jQuery);
        </script>
    <?php }
    add_action('wp_footer', 'av_inline_popup_enabler', 9999);

    This will group the items based on the parent container (group-1, group-2) and also parse the element format and return the correct type, so you don’t need to add the iframe parameter to images.

    
    <div class="group-1">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="image.jpeg" title="Image 1">Image 1</a>
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="video.mp4?iframe=true" title="Video 1">Image 2</a></div>
    <div class="group-2">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="image.png" title="Image">Image</a></div>
    

    Best regards,
    Ismael

    #1484586

    For some reason you are not able to see my problem, so I will summarize it again and attach a set of screenshots so you can see exactly what is happening, and can copy the original code and paste it into your own software to see if you get the same result:

    1) I design a payment button in Paypal
    2) This generates a piece of code and shows me what the final design should look like
    3) I click on Copy in the Paypal page to copy the code into temporary memory
    4) I open my website and go to the relevant page in my case ‘Events’
    5) On that page there are two tabs labelled Visual and Code and a large space beneath.
    6) With the Code tab selected I right click and select Paste
    7) The code is pasted into the space. I look at the code and it it appears correctly
    8) I then click on the Visual tab to check the finished button
    9) It doesn’t look right. Instead of one button with a drop list of options, I’m getting a lot of separate buttons.
    10) I go back to the code tab and notice that the code has changed – I HAVEN’T DONE ANYTHING AT THIS STAGE, just switched between code and visual tabs. But there are many extra lines that have been added -each item in the drop down list now has an extra <select name=”os0″> and </select> around it . I have messaged WordPress about this, and they tell me that the code tab is part of Enfold and all inputs and outputs to the page are controlled by Enfold, which is why I’m assuming that Enfold is somehow modifying my code.
    So, here are the steps visually
    Paypal Code

    Code after pasting into code page

    Visual tab

    Code page showing modified code

    So from this I hope you can see that by simply switching between the Code tab and the Visual tab, my code is being changed.and I would like to know why and what I can do to stop this. If you want to try pasting my original code into a test page of your own, then this is the complete chunk of code:

    <form action=”https://www.paypal.com/cgi-bin/webscr&#8221; method=”post” target=”_blank”>
    <input type=”hidden” name=”cmd” value=”_s-xclick” />
    <input type=”hidden” name=”hosted_button_id” value=”H87UB2HDHP3GS” />
    <table>
    <tr>
    <td>
    <input type=”hidden” name=”on0″ value=”Options for Brondanw & Nantclwyd only”/>
    Options for Brondanw & Nantclwyd only
    </td>
    </tr>
    <tr>
    <td>
    <select name=”os0″>
    <option value=”Member”>
    Member £17.00 GBP
    </option>
    <option value=”Guest”>
    Guest £19.00 GBP
    </option>
    <option value=”2 Members”>
    2 Members £34.00 GBP
    </option>
    <option value=”1 Member + 1 Guest”>
    1 Member + 1 Guest £36.00 GBP
    </option>
    <option value=”Child under 16″>
    Child under 16 £10.00 GBP
    </option>
    </select>
    </td>
    </tr>
    </table>
    <input type=”hidden” name=”currency_code” value=”GBP” />
    <input type=”image” src=”https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif&#8221; border=”0″ name=”submit” title=”PayPal – The safer, easier way to pay online!” alt=”Add to Cart” />
    </form>

    Thankyou.

    • This reply was modified 1 week, 2 days ago by FFAlan.
    • This reply was modified 1 week, 2 days ago by FFAlan.
    #1484577

    Hi Ismael,

    this works! But: For images only. I use the iframe=true for mixing images and videos. Should have made that clearer:

    <div class="isotope">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="xxx.img?iframe=true"> 01 </a>
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="xxx.mp4?iframe=true"> 02 </a>
    </div>

    So I am back to your script because it works for images and videos but breaks the possibility to click from 01 to 02 – any idea on how to keep the arrows linking to the next frame working?

    Best regards,
    Daniel

    #1484575

    In reply to: Timeline widget issue

    Hi. We do not have yet any cache plugin because we are still on a development environment. About Enfold performance settings, the only features enabled by now are:
    – lazy load
    – Responsive images

    I have disabled lazyload and it seems better now. It is still a little bit slow to start and display the first 3 slide and the navigation buttons, however it is better.

    Maybe you should consider to optimize this widget in a feauture release.
    Regards,
    Flavio

    #1484568
    Annedesign
    Participant

    Hi, I would like to add some CSS or code to remove all image titles on tool tip for a website.
    I have seen some posts on this but unclear on the details.
    I have a child theme and a code snippet plug-in installed.
    I usually only use quick CSS – so if you have a good solution – please explain in detail for me!
    Website link below.
    Thanks as always,
    Anne

    Ismael, well done! I think you solved it!!!! Thank you so much for your perseverence on this one! The images look great on the ipad in both landscape and portrait. (In portrait I actually switch to photos scaled for mobile.)

    Can we leave this thread open for a week so I can keep testing?

    Thank you so much!!!!!
    Rob

    https://www.thomashenthorne.com/125-belvedere-ave-belvedere-ca/

    #1484556

    Hi,

    We just noticed that you’re trying to load jpg images. What happens when you remove the iframe=true parameter completely? Make sure that link contains the “lightbox” class name.

    
    <div class="isotope">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="lightbox" href="xxx.jpg"> 01 </a>
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="lightbox" href="xxx.jpg"> 02 </a></div>
    

    The title or alt attribute should automatically display without the custom script.

    View post on imgur.com

    Best regards,
    Ismael

    #1484555

    Hey Bob,

    Thank you for the inquiry.

    If you want the default configuration (Appearance > Customize > WooCommerce) to apply to product images, you can add the following code to the functions.php file:

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }

    Let us know the result.

    Best regards,
    Ismael

    Hi,

    Looks like you’ve replaced the logo with a smaller image. Let us know if you need more assistance.

    Best regards,
    Ismael

    Hi,
    #3: try unselecting “Unstick Topbar”
    Screen Shot 2025 05 21 at 6.20.27 PM

    Best regards,
    Mike

    #1484536

    Thank you. I am working on setting up staging so I can convert to the child theme.

    IN THE MEANTIME.. I noticed my other website does not have the font so big, and after all this, I remember years ago I wanted the images bigger, so you gave me this code to put in the QUICK CSS…

    THERE ARE A FEW THINGS YOU GAVE ME IN HERE. CAN WE CHANGE THE PART FOR THE MAGAZINE TO HAVE A SMALLER FONT SIZE USING THIS CODE?

    I am giving you the whole section because I don’t know for sure which part is magazine and which is something else.

    THANK YOU IN ADVANCE FOR HELPING !!!

    THIS IS EVERYTHING IN THE QUICK CSS:
    p strong{
    color:#000!important;
    }

    #top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
    color: white!important;
    }

    .av-magazine-thumbnail {
    min-height: auto;
    }

    #top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
    color: white!important;
    }

    .av-magazine-thumbnail {
    min-height: auto;
    }
    div .slideshow_caption h2 {
    text-transform: none;
    }

    .av-magazine-thumbnail {
    width: 135px;
    height: auto;
    }

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    h2.avia-caption-title {
    font-size: 30px !important;
    }
    .avia-caption-content p {
    font-size: 22px !important;
    line-height: 24px;
    }
    }

    @media only screen and (max-width: 767px) {
    h2.avia-caption-title {
    font-size: 20px !important;
    }
    .avia-caption-content p {
    font-size: 14px !important;
    line-height: 16px;
    }
    .slideshow_caption {
    padding-top: 20px !important;
    }
    }

    #header_meta .menu li a {
    color: #fff !important;
    }
    .av-burger-overlay-scroll #av-burger-menu-ul a {
    color: #fff;
    }

    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
    color: #fff;
    }

    .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after {
    background-color: #fff;
    }

    #header_meta .sub_menu .menu li a {
    color: #030303 !important;
    }

    .avia_textblock a strong {
    color: blue !important;
    }

    #1484534
    EZSAVE
    Participant

    Can you advise how to re-size a the woocommerce single product page image? Using Appearance>Customize>Woocommerce settings does nothing. My images are uploaded at 300×300 and are being resized to a much larger image. I am guessing the Enfold theme is overriding Woo. Any help would be greatly appreciated

    #1484531

    Nice! Thank you Ismael, now I can load the title. But: The connection to the next images is broken! I have more pictures, connected as lightbox gallery like that:

    <div class="isotope">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="xxx.img??iframe=true"> 01 </a>
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="xxx.img??iframe=true"> 02 </a>
    </div>

    With your code only the first image loads in a lightbox. The arrows to navigate from 01 to 02 are missing.

    Can you fix that?

    All the best,
    Daniel

    Hi,

    The images are smaller because they are constrained within the section area using the css rule “background-size: contain !important;”. You can try changing it back to “cover”, but this may cause the “zoomed-in” issue to return.

    Try this css code in place of the recent one, then make sure to purge the cache or clear your browser history.

    @media only screen and (max-width: 1366px) {
      /* Add your Mobile Styles here */
      .avia-full-stretch, .avia-bg-style-fixed  {
          background-attachment: scroll !important;
          background-size: cover !important;
      }
    }

    Best regards,
    Ismael

    Hi Ismael,
    Thanks for your patience and hard work on this! The latest code snippet above definitely helped and there are no longer the huge “zoomed in” images on the fixed images on iPad Safari. Is there any way you can access a VPN so you can see the page?
    One thing that’s funny is that the images now display, but they are just a little smaller than the other images (that are set to scroll, not fixed) and so there’s a little white border next to them. Definitely better but if there’s a slight tweak to get them to stretch we would be 100%.

    Thanks,
    Rob

    Your the best!
    Last things.

    1. How do I reduce space between address and phone number in the header?: https://img.savvyify.com/image/reduce-space.9wb5f

    2. How to show Social Media icons larger on mobile view at the top

    3. Still doesn’t have sticky top bar (address bar) on desktop view.

    thanks!

    • This reply was modified 1 week, 3 days ago by bemodesign.
    • This reply was modified 1 week, 3 days ago by bemodesign.

    Hi,
    Perhaps you didn’t see the css for the logo overlapping the buttons that I posted above:

    @media only screen and (max-width: 767px) { 
    #av_section_1 .container.av-section-cont-open,
    .page-id-910 #av-layout-grid-1 {
    	padding-top: 130px !important;
    }
    }

    Screen Shot 2025 05 18 at 8.55.34 AM
    it would be easier if you disabled the plugin that is blocking me from making changes

    Best regards,
    Mike

    #1484464
    timstonis
    Participant

    Hi,

    I am having issues with the fullwidth easy slider on my landing page.

    I have uploaded videos of 4 seconds each and would like to fade between them for a seamless transition, however, the video stops and goes back to the starting image before starting the transition. I have tried setting the autorotation time to 3 seconds so the transition starts before the video ends, but some videos will play over the automation leaving others to catch up or skip. Is there a way to fix this blocky transition?

    I’ve also made my own full video with embedded transitions but it is difficult to get it under 8MB with decent quality.

    #1484444
    spooniverse
    Participant

    Hey @Ismael,

    I found an old thread of yours and @Guenni007 and I am wondering if I could load a title for a lightbox if the lightbox contains an image from the media library?!

    Example: I have a link in a text like https://homepage.de/wp-content/uploads/image.jpg?iframe=true to show the image in a lightbox. Everything works as expected, the lightbox opens the image from the library in an iframe. But no title, description or whatsoever.

    Any idea on how to get the title displayed with an ?iframe=true link? I already tested to put text into the available fields in the media library, but there is no title below the iframe in the lightbox.

    All the best,
    Daniel

    #1484428

    Hey a_edemirci,

    Thank you for the inquiry.

    You can add this css code to hide the default image overlay.

    #top .image-overlay {
        display: none !important;
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    #1484423
    a_edemirci
    Participant

    Hello,

    I am adding Youtube videos and when I move cursor over the video thumbnails, an overlay appears and push the video title down. Is there a way to remove this overlay. I have disabled the linked image overlays but it did not work. I am not using any caching plugin. Attached you can see the overlay I wish to remove. Thank you….

Viewing 30 results - 31 through 60 (of 105,220 total)