Viewing 30 results - 691 through 720 (of 11,204 total)
  • Author
    Search Results
  • #1409618
    Woutski
    Participant

    Hi,
    i have a selfhosted mp4 which works well but the mute button does not appear on phones.
    Cannot find a solution in Enfold 5.4.1

    Thanks, Woutski

    #1409392

    on that pininfarina page? which button should i press? Or is there an enfold page to see in private content?
    see buttons on my color-section: https://basis.webers-testseite.de/home4/

    #1409366

    Greetings,

    I am using polylang for multi-language support and need Loco translate for localisation.

    About “Sync”, I meant on the guide page I linked, in the Loco Translate section where you mention:

    It is important to sync files before updating to make sure all available strings are ready for translation. To sync files in Loco Translate, please go to Loco Translate -> Themes -> Enfold -> Overview tab -> Edit Template tab, click Sync button and Save. Then go to Loco Translate -> Themes -> Enfold -> Overview tab, choose your language, click Sync button and Save.

    Every time I reach this Sync step, all strings from translations get removed, so I think there is a mismatch with the source files or something similar causing the issue.

    #1409348

    Hi,

    Thank you for the update.

    To align the second widget to the right, just remove this css code:

    #footer .flex_column:nth-child(2) #nav_menu-2 {
        width: 100%;
        float: none;
    }

    Then replace it with:

    .flex_column:nth-child(2) #nav_menu-2 {
        float: right;
    }
    

    And to center align the contact form button, please add this:

    #top .wpcf7-spinner {
        position: absolute;
        bottom: 25px;
        left: 15px;
    }
    

    Again, please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    #1408746

    Hi GB,

    Go to Appearance > Menus > click the dropdown (to select a menu to edit), edit the menu thas has (Enfold Child Footer Menu (no dropdowns)) in it, then click the Select button.
    Uncheck Enfold Child Footer Menu and Save.
    Hope this helps.

    Best regards,
    Nikko

    #1408352

    In reply to: Support

    Hey Evan Posocco,

    Thanks for contacting us!
    And yes, you can renew your support access, by logging in to your account on ThemeForest and navigate to Enfold’s page at https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990. Once there, simply click on the “Renew support” button located on the right-hand side. Following that, you can proceed to https://kriesi.at/support/forum/enfold#new-post to re-validate your purchase code.

    Best regards,
    Nikko

    #1408243

    Topic: Sticky flyout button

    in forum Enfold
    M-Graphics24
    Participant

    Hi Team

    Please could somebody assist me with setting up a sticky flyout on the right-hand side of all my pages in enfold?. I don’t know if I have named the element correctly. You can go to http://www.defendoor.co.za and see what I am referring to – it is the “GET A QUOTE” sticky flyout on the right in green.

    Thank you

    #1408233
    andreas_anselm
    Participant

    Hi Enfold Team,
    I’ve created a floating button on the front page, but the link does’nt work.
    I’ve no Idea, hope you got one.
    find enclosed the login data
    thx in advance
    warm regards Andrew

    #1408066

    Hey LiorMaymon,
    Thank you for your patience to add a new social profile please see this subject in our documentation: How to add Custom Social Icons to Enfold options.
    Here is an example of adding the TikTok social icon with some screenshots that may help explain, if you have any issues please include an admin login to your site in the Private Content area so we can be of more assistance.
    For your portfolio to have a gap and have a title overlay:
    Enfold_Support_2119.jpeg
    try using the masonry element to display your portfolio items and set the title as an overlay:
    Enfold_Support_2121.jpeg
    and choose a large gap:
    Enfold_Support_2123.jpeg

    Best regards,
    Mike

    #1407958

    Hi Mike.
    I hope this email finds you well. I am writing to seek assistance regarding a couple of issues I am facing with the Enfold theme. As I mentioned previously, I would like to configure the layout in a way that the city is displayed first, followed by the local school locations. Since we are organizing a camp, it is important for us to minimize confusion by avoiding an overwhelming number of options for participants from different cities. Could you kindly advise me on how to set up this particular arrangement?

    Moreover, after clicking the “Add to Cart” button, the page does not automatically redirect to the checkout page. Instead, I am required to manually move my cursor to the shopping cart icon in order to proceed with the checkout process. I would appreciate any suggestions on how to improve this functionality for a smoother user experience.

    Lastly, during the checkout process, I noticed that only PayPal and Tappay options are available. When attempting to select “Debit Card or Credit Card,” it does not seem to work. Could you please assist me in resolving this issue so that customers can complete their purchases using debit or credit cards?

    Thank you in advance for your attention to these matters. I look forward to your prompt response and guidance. Please let me know if any further information is required from my end.
    Thanks!

    garysch37
    Participant

    Dear Support Team:

    As part of my responsive images work, I am trying to replace a banner-like image on my home page, that spans the entire browser window width, with a smaller image on smaller windows/screens. I have an Image inside a Color Section at the top of the home page (under the header) that I inserted from my Media Library (that includes the alt & title text). Initially I tried with CSS (couldn’t get it to include alt & title text on the images), and now with Javascript (can’t get it to work at all).

    I’ve tried specifically in (i) Firefox in Windows 7, (ii) Safari, Firefox, & Chrome on a Mac desktop, and (iii) Safari on an iPhone: the smaller banner does not load (and the larger banner displays only because it’s in the Color Section).

    So, as I wrote, initially I tried with CSS:

    @media only screen and (min-width:965px) {
        .homeBannerIMG {
            content: url(https://...banner1.jpg);
        }
        .homeBannerIMG::before { /* For Firefox issues */
            content: url(https://...banner1.jpg);
        }
    }
    
    @media only screen and (max-width:964px) {
        .homeBannerIMG {
            content: url(https://...banner2.jpg); /* Concatenating '/ "test alt"' to the end doesn't work */
        }
        .homeBannerIMG::before{
            content: url(https://...banner2.jpg);
        }
            /* Note: https://developer.mozilla.org/en-US/docs/Web/CSS/content says this works:
                content: url("http://www.example.com/test.png") / "This is the alt text";
            BUT IT DOESN'T FOR ME!. Plus I want the image Title as well for the hover tooltip. */

    But I wasn’t able to maintain my alt & title text on the image. So I switched to Javascript (in my child functions.php file), first trying:

    function displayHomeBanner() {
        if (window.matchMedia("(min-width: 965px)").matches) {
            document.getElementById("homeBannerIMG").src="https://...banner1.jpg";
        } else {
            document.getElementById("homeBannerIMG").src="https://...banner2.jpg";
        }
    }

    But that didn’t work: when I made my browser window below 965px wide, banner2 was not swapped in; it stayed as banner1. Then I tried:

    document.getElementById("homeBannerIMG").getElementsByTagName('img')[0].src="https://...banner2.jpg";

    But that didn’t work. Then I tried:

    document.getElementsByClassName("homeBannerIMG")[0].src="https://...banner2.jpg";

    Still no luck. I just can’t get banner2 to display.

    Note that my full CURRENT code in my child function.php file is:

    function windowSizeActions() {
        ?>
        <script>
            window.onresize = actOnWindowSize;
            window.onload = actOnWindowSize;
            
            function actOnWindowSize() {
                
                function displayWindowSize() {
                    myWidth = window.innerWidth;
                    myHeight = window.innerHeight;
                    document.getElementById("dimensions").innerHTML = " >>> " + myWidth + " x " + myHeight;
                }
            
                function displayHomeBanner() {
                    if (window.matchMedia("(min-width: 965px)").matches) {
                        /*document.getElementById("homeBannerIMG").src="https://...banner1.jpg";*/
                        document.getElementsByClassName("homeBannerIMG")[0].src="https://...banner1.jpg";
                    } else {
                        /*document.getElementById("homeBannerIMG").src="https://...banner2.jpg";*/
                        /*document.getElementById("homeBannerIMG").getElementsByTagName('img')[0].src="https://...banner2.jpg";*/ /* Based on https://kriesi.at/support/topic/using-javascript-to-set-image-src-using-developer-id/: document.getElementById(‘work_image’).getElementsByTagName(‘img’)[0].src = work_image; */
                        document.getElementsByClassName("homeBannerIMG")[0].src="https://...banner2.jpg";
                    }
                }
                displayWindowSize();
                displayHomeBanner();
            }
            
        </script>
        <?php
    }
    add_action( 'wp_enqueue_scripts', 'windowSizeActions' );

    First of all, as you can see, I’ve commented out my earlier attempts at loading the src, with just my last attempt with getElementsByClassName live.

    Secondly, I have my displayHomeBanner function embedded in the function actOnWindowSize, and that in an overall function windowSizeActions, because I need debug code to display the window size, done by my displayWindowSize function (and another function elsewhere to set up the HTML). That function works: my window size is displayed at the top of my window constantly, and changes as I change the browser window size. So this also ensures that things are working, except displayHomeBanner is not working.

    Also note that I have tried my code outside of WordPress/Enfold/Aria, using any w3schools.com‘s page’s Try it Yourself button:

    <!DOCTYPE html>
    <html>
    <body>
    
    <div>
      <img id="homeBannerIMG" src="https://...banner1.jpg" alt="test alt" title="test title">
    </div>
    
    <script>
      window.onresize = actOnWindowSize;
      window.onload = actOnWindowSize;
            
      function actOnWindowSize() {
                
        function displayWindowSize() { /* This of course won't work here, but it's irrevelent. */
          myWidth = window.innerWidth;
          myHeight = window.innerHeight;
          document.getElementById("dimensions").innerHTML = " >>> " + myWidth + " x " + myHeight;
        }
            
        function displayHomeBanner() {
          if (window.matchMedia("(min-width: 965px)").matches) {
            document.getElementById("homeBannerIMG").src="https://...banner1.jpg";
          } else {
            document.getElementById("homeBannerIMG").src="https://...banner2.jpg";
          }
        }
                
        displayHomeBanner();
      }
    </script>
    
    </body>
    </html>

    and

    <!DOCTYPE html>
    <html>
    <body>
    
    <div>
      <img class="homeBannerIMG" src="https://...banner1.jpg" alt="test alt" title="test title">
    </div>
    
    <script>
      window.onresize = actOnWindowSize;
      window.onload = actOnWindowSize;
            
      function actOnWindowSize() {
                
        function displayWindowSize() { /* This of course won't work here, but it's irrevelent. */
          myWidth = window.innerWidth;
          myHeight = window.innerHeight;
          document.getElementById("dimensions").innerHTML = " >>> " + myWidth + " x " + myHeight;
        }
            
        function displayHomeBanner() {
          if (window.matchMedia("(min-width: 965px)").matches) {
            document.getElementsByClassName("homeBannerIMG")[0].src="https://...banner1.jpg";
          } else {
            document.getElementsByClassName("homeBannerIMG")[0].src="https://...banner2.jpg";
          }
        }
                
        displayHomeBanner();
      }
            
    </script>
    
    </body>
    </html>

    In both, my displayHomeBanner function works: my banner2 displays on smaller window sizes (and the title tooltip works)!

    Can you help me get it to work in WordPress please.

    Thank you,
    Gary

    • This topic was modified 2 years, 9 months ago by garysch37.
    • This topic was modified 2 years, 9 months ago by garysch37.
    #1407689

    Hi Nomad,

    I apologize, you’re right, there’s no padding in Text Block, I was actually referring to the button with regards to padding, as for Text Block, it is possible via CSS.
    Edit the Text Block, go to Advanced (tab) > Developer Settings > Custom CSS Class and put myblock (you can change myblock to any name)
    Then in Enfold > General Styling > Quick CSS:

    #top .myblock {
      padding: 8px 20px; /* 8px padding top and bottom, 10px padding left and right */
    }

    There’s a lot of things that can be put into it, here’s a list: https://dofactory.com/css/properties
    Hope it helps.

    Best regards,
    Nikko

    #1407679
    stepheng
    Participant

    5-16
    Hi Enfold,
    I have buttons but I would also like the opposing image to open the same lightbox blog page.
    This works for Button and Image links but not for Column links.
    /?iframe=true
    The images on this page are background images. If I place them in this layout as a regular images I can make links but they do not resize correctly. (Covering the full space available).
    Please advise.
    Thanks,
    Stephen

    • This topic was modified 2 years, 9 months ago by stepheng.
    #1407504

    Hi Nomad,

    Edit the Text Block Button, go to Styling (tab) > Spacing, and you should be able to see padding options there.
    Line height is not set individually but it can be set in Enfold Theme Options > Advanced Styling.
    As for the button style, edit the button and go to Advanced (tab) > Developer Settings > Custom CSS Class and add special-button then in Enfold Theme Options > General Styling > Quick CSS, add this CSS code:

    #top #wrap_all .special-button .avia-button {
        background: #164066;
        background-image: linear-gradient(270deg,#0d263c 0,#1f5a90 51%,#164066);
        background-size: 200% auto;
        border: none;
        background-position: 100%;
        transition: background-position .3s cubic-bezier(.4,0,.2,1);
        color: #fff;
        text-shadow: 0 0 20px #081927;
    }
    
    #top #wrap_all .special-button .avia-button:hover {
        background-position: 0;
    }

    Just adjust the colors as you see fit.

    Best regards,
    Nikko

    • This reply was modified 2 years, 9 months ago by Nikko.
    #1407379

    Hey Nomad,
    Thanks for the link to your example, but you can achieve this with a text element below a button element without any extra css:
    Enfold_Support_2075.jpeg
    You can change the font size and color of the text block in the style tab:
    Enfold_Support_2077.jpeg
    or change it with inline css in the text block.

    Best regards,
    Mike

    #1407373
    This reply has been marked as private.
    #1407370

    Hi,
    Thank you for your patience and the explainion with links to examples, the first example could be achieved by using the Advanced Layout Builder elements to create your product page.
    Your first example page starts with class information such as images, table, a slider and text elements, you can use the layout elements for these, and then add your “product price” element under these with your “product purchase button”, and at the botton add the “related products” element.
    I’m having trouble understanding your language on your product page example so I’m not so sure what you mean by “placing the city” first, but I think you mean the drop down options for the products:
    Enfold_Support_2069.jpeg
    these can be moved in the product variations in the backend by draging them:
    Enfold_Support_2071.jpeg
    The sign up form on the example page uses the WooCommerce Box Office plugin, I don’t have experience with it but here is a link to it’s documentation. There maybe other free WordPress plugins that will do the same job but I don’t know or tested any. WooCommerce Bookings might be another option, I recommend that you research different plugins to find one that meets your needs and try to test them with Enfold before buying anything expensive as not all plugins work well with Enfold, sometimes you will need to test first to ensure there won’t be a conflict.
    I hope this helps.

    Best regards,
    Mike

    #1407360

    Hey laptophobo,
    Thank you for the link to your demo site, perhaps using a text element and a image element in the same column with Grid CSS would be a good solution:
    Enfold_Support_2063.jpeg
    Try adding the custom class grid-column to a full width column, and add the custom class grid-image-right to the image element inside the column. Then add your text element inside the column but we won’t use a custom class for it.
    Add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 768px) { 
    .grid-column {
        display: grid;
        grid-template-columns: repeat(12,1fr);
        grid-template-rows: auto;
        grid-column-gap: 1pc;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .grid-image-right {
    	display: grid;
        grid-column-start: 4;
        grid-column-end: span 9;
        grid-row: 1;
    }
    .grid-column .av_textblock_section {
    	display: grid;
        grid-column-start: 1;
        grid-column-end: span 5;
        grid-row: 1;
        padding: 8%;
        color: #000;
        background-color: #eee;
        z-index: 1;
    }
    }

    and adjust the colors to suit.
    Now below 767px, for mobile the image and text will be stacked:
    Enfold_Support_2065.jpeg
    and for tablet and above the text offset will be consistent:
    Enfold_Support_2067.jpeg
    I tried to do this with the image caption but it didn’t work well with the image element structure and the caption field doesn’t allow HTML and buttons easily like the text element so this may be more useful.

    Best regards,
    Mike

    #1407359

    Hey laptophobo,
    Thank you for the link to your demo site, perhaps using a text element and a image element in the same column with Grid CSS would be a good solution:
    Enfold_Support_2063.jpeg
    Try adding the custom class grid-column to a full width column, and add the custom class grid-image-right to the image element inside the column. Then add your text element inside the column but we won’t use a custom class for it.
    Add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 768px) { 
    .grid-column {
        display: grid;
        grid-template-columns: repeat(12,1fr);
        grid-template-rows: auto;
        grid-column-gap: 1pc;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .grid-image-right {
    	display: grid;
        grid-column-start: 4;
        grid-column-end: span 9;
        grid-row: 1;
    }
    .grid-column .av_textblock_section {
    	display: grid;
        grid-column-start: 1;
        grid-column-end: span 5;
        grid-row: 1;
        padding: 8%;
        color: #000;
        background-color: #eee;
        z-index: 1;
    }
    }

    and adjust the colors to suit.
    Now below 767px, for mobile the image and text will be stacked:
    Enfold_Support_2065.jpeg
    and for tablet and above the text offset will be consistent:
    Enfold_Support_2067.jpeg
    I tried to do this with the image caption but it didn’t work well with the image element structure and the caption field doesn’t allow HTML and buttons easily like the text element so this may be more useful.

    Best regards,
    Mike

    #1407358
    thinkjarvis
    Participant

    Hi guys,

    I am working on a site where the SEO requiremens are strict. All of the links on the clients old site have specific title attributes which I need to apply to new links on the new website based in Enfold.

    Icon List links
    I’d like to use the Icon list to create these links but there is no input box on the Icon List Element for Link title attribute. On buttons and button rows you can set your own link title attribute in the Enfold interface.

    Is it possible to have this function added to icon list links so I can set a custom title attribute for the links?

    (Tell me to go away if this isnt posible)

    I am currently using :before to add an icon before each link in a text box instead – Just so I can set title text metadate for each link.

    Hi matt507,

    Thanks for giving us admin credentials.
    I have checked it and the reason why the “Add to cart” button is not showing is because the regular price is not set.
    Once you add a regular price, add to cart shows (though not in red color, it can be changed via css).
    The regular price from B2B plugin that you use does not seem to activate the “Add to cart” button, I tried to switch to a default theme and then check on the spare parts category page (link in private content), if “Add to cart” will show up but it does not seem to show it as well.
    Enfold only shows buttons that woocommerce displays, so I think the main issue seems to be with WordPress 6.2 and B2B plugin, please try to check with B2B support as they should be able to assist you more on the issue.

    Best regards,
    Nikko

    Hey ballindigital,
    Thanks for your patience and the link to your site, to make the Add to Basket button lager and change it’s style you can try some css like this:

    #top.woocommerce-page .main_color .button[name=add-to-cart] {
    	 background-color: #ffd1ed;
    	 width: 200px;
    	 font-size: 16px;
    }

    Enfold_Support_2054.jpeg
    I’m not sure how you want to style the button, please explain further if you need more help with it.
    #2 where on the page do you want the second Add to Basket button, in the Description?
    #3 I don’t see a link to your example site, but even with only 4 images on mobile I don’t believe the info would be “above the fold” perhaps moving the images after the info on mobile would achieve what you would like? If so try this css:

    @media only screen and (max-width: 767px) { 
      #top.single-product .product {
      display: flex !important; 
      flex-wrap: wrap !important; 
      }
      #top.single-product .single-product-main-image {
          order: 2 !important; 
      }
      #top.single-product .single-product-summary {
          order: 1 !important; 
      }
    }

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

    Best regards,
    Mike

    #1407018

    Hi,
    Thanks for the feedback, when I checked your site your cookie bar had two buttons:
    Enfold_Support_2032.jpeg
    So I went to the option Enfold Theme Options ▸ Cookie Consent ▸ Cookie Handling ▸ Buttons and clicked the green plus sign to add another button:
    Enfold_Support_2034.jpeg
    and then added the Einstellungen button:
    Enfold_Support_2036.jpeg
    Now on the frontend you have three buttons, feel free to adjust to suit:
    Enfold_Support_2038.jpeg

    Best regards,
    Mike

    #1406881
    This reply has been marked as private.
    simplycoding15
    Participant

    Hello,

    I’m trying to figure out the best way to add a full width banner or series of logo images right below the main header menu. I use the enfold child theme. I want to put As Seen On …… and then have Amazon, Walmart, Costco, etc. etc for strong retail proof when visitors come and land on site. Do I just do a full length image and have a designer create it? I want all logos the same size. Or would the partner/logo element work? Thanks!

    #1406743
    This reply has been marked as private.
    #1406589

    Hi,
    I recommend following our documentation and you can have three buttons in the cookie bar and name them as you wish, just click the green plus sign to add more buttons
    Enfold_Support_1989.jpeg
    Please note that we ask that each thread stays “on topic” and different threads are used for multiple questions, this helps future users find solutions easier and multiple Moderators assist you with a solution, thank you for understanding.

    Best regards,
    Mike

    #1406585
    This reply has been marked as private.
    #1406509

    In reply to: Enfold and WPML

    Hi,

    Thank you for the info.

    It appears that the code was added to fix the default buttons on WordPress 6.1. You can find the CSS rule in the file located at themes/enfold/css/base.css around line 305:

    #top a:where(:not(.wp-element-button)) {
    	text-decoration: none;				/*	WP 6.1 fix   */
    }
    

    Please maintain the CSS modification that overrides the base style for now.

    Best regards,
    Ismael

    #1406365

    Hey BeeCee,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function trigger_alb_on_load_for_page(){
    	?>
    	<script>
    	window.addEventListener('DOMContentLoaded', function() {
    	(function($){
    		if ($('body.wp-admin.post-new-php.post-type-page').length > 0){
    			setTimeout(function(){
    			$("#avia-builder-button").trigger('click');
    			},300);
    		}
    	})(jQuery);
        });
    	</script>
    	<?php
    }
    add_action('admin_head-post-new.php', 'trigger_alb_on_load_for_page');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    In my test a timeout of 300 ms (less than half a second) is required for the ALB button to be available, so if this doesn’t work for you try increasing the “300” to a higher number.
    Also ensure you are not deferring jQuery with a caching plugin or in theme options, such as Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer

    Best regards,
    Mike

Viewing 30 results - 691 through 720 (of 11,204 total)