Viewing 30 results - 5,521 through 5,550 (of 11,214 total)
  • Author
    Search Results
  • #846508
    bitojoe
    Participant

    When you set the menu to have logo center and menu below, the header is sticky and shrinking, the menu is the new 2017 hamburger, and the overlay menu is activated, I’m running into the following problem:

    When opening the menu, the button to close the menu is nowhere to be found.

    #846464

    In reply to: Promo Box

    Hey Gail,

    Please go to Enfold theme options > Layout Builder and check “Show element options for developers” then edit your Promobox elements and give them a custom CSS class “my-custom-promo” and then try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .my-custom-promo .avia-promocontent {
        margin-right: 0;
    }
    .my-custom-promo .avia-button {
        position: initial;
        float: none;
    }
    

    Also, please feel free to request – or vote if already requested – such feature on Enfold feature request form.
    Best regards,
    Yigit

    #846432

    Dear Ismael,
    Thank you for your help. I have a look at the topic you posted above. It was a bit unclear for me at the beginning but I believe I have found a “nicer” way to include the LayerSlider in every blog post.

    For people who are interested, here are the steps:
    1.) as I am using child theme … if you don’t, then you need to modify directly the Enfold files … just be aware that after update those modification WILL DISAPPEAR … that is why it is better to use child theme
    2.) copy “single.php” to your child directory … name of the file stays the same
    3.) copy “header.php” to your child directory and give it a name “header-single.php”
    4.) in you child directory create files “layerslider-header.html” and “layerslider-main.html”
    5.) edit “single.php” and look for “get_header();” and replace it with “get_header(‘single’);”
    6.) edit “header-single.php” and look for “wp_head();” and replace it with

    wp_head();
    include('layerslider-header.html');
    

    7.) edit again “single.php” and add the following

            <?php include('layerslider-main.html'); ?>
            <div id='after_layer_slider_1' class='main_color av_default_container_wrap container_wrap fullsize'>
    

    BEFORE

    <div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    

    and REMEMBER to close the <div> at the end of a file. The end should look like this

                            </div><!--end container-->
                    </div><!-- close default .container_wrap element -->
            </div><!-- close 'after_layer_slider_1' -->
    <?php get_footer(); ?>
    

    8.) edit “layerslider-header.html” and put the following inside … just REMEMBER to change your domain name from “example.com” to the one you are using

    <link rel='stylesheet' id='layerslider-front-css'  href='http://example.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/public/front.css?ver=6.5.1' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-css'  href='http://example.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/css/layerslider.css?ver=6.5.1' type='text/css' media='all' />
    <script type='text/javascript' data-cfasync="false" src='http://example.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/js/greensock.js?ver=1.19.0'></script>
    <script type='text/javascript' data-cfasync="false" src='http://example.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/js/layerslider.kreaturamedia.jquery.js?ver=6.5.1'></script>
    <script type='text/javascript' data-cfasync="false" src='http://example.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/js/layerslider.transitions.js?ver=6.5.1'></script>
    

    9.) now edit “layerslider-main.html” and put the following inside … just REMEMBER to change your domain name from “example.com” to the one you are using

    <div id='layer_slider_1' class='avia-layerslider main_color avia-shadow  avia-builder-el-1  el_after_av_textblock  el_before_av_textblock  slider-not-first container_wrap fullsize'    style='height: 157px;' >
    <script data-cfasync="false" type="text/javascript">var lsjQuery = jQuery;</script><script data-cfasync="false" type="text/javascript">
    lsjQuery(document).ready(function() {
    if(typeof lsjQuery.fn.layerSlider == "undefined") {
    if( window._layerSlider && window._layerSlider.showNotice) { 
    window._layerSlider.showNotice('layerslider_9','jquery');
    }
    } else {
    lsjQuery("#layerslider_9").layerSlider({sliderVersion: '6.5.1', type: 'fullwidth', skin: 'fullwidth', hoverPrevNext: false, navStartStop: false, navButtons: false, showCircleTimer: false, popupWidth: 640, popupHeight: 360, skinsPath: 'http://example.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/skins/'});
    }
    });
    </script>
    <div id="layerslider_9" class="ls-wp-container fitvidsignore" style="width:1300px;height:156px;margin:0 auto;margin-bottom: 0px;">
    <div class="ls-slide" data-ls="bgcolor:#041c2c;kenburnsscale:1.2;"><img width="1158" height="795" src="http://example.com/wp-content/uploads/images/website/baner.electrical.circuit.png" class="ls-l" alt="" srcset="http://example.com/wp-content/uploads/images/website/baner.electrical.circuit.png 1158w, http://example.com/wp-content/uploads/images/website/baner.electrical.circuit-300x206.png 300w, http://example.com/wp-content/uploads/images/website/baner.electrical.circuit-768x527.png 768w, http://example.com/wp-content/uploads/images/website/baner.electrical.circuit-1030x707.png 1030w, http://example.com/wp-content/uploads/images/website/baner.electrical.circuit-705x484.png 705w, http://example.com/wp-content/uploads/images/website/baner.electrical.circuit-450x309.png 450w" sizes="(max-width: 1158px) 100vw, 1158px" style="top:18px;left:-463px;text-align:initial;font-weight:400;font-style:normal;text-decoration:none;wordwrap:false;opacity:1;mix-blend-mode:normal;" data-ls="fadein:false;clipin:0;transitionout:false;">
    </div></div></div>
    

    10.) this workaround works with WP 4.8.1, Enfold 4.1.2 and LayerSlider 6.5.1

    In simple words I have copy & pasted the generated LayerSlider code (on other page build with Advanced Layout Editor) and put it in the correct places in <header> and <body> of the single post template.

    Hope that descriptions will help some of you … Kriesi has quite a lot of room for improvements here …

    Best regards,
    MD

    • This reply was modified 8 years, 7 months ago by midudek1.
    #846405

    In reply to: Tablepress & Enfold

    Hey LiveBarnKristina,

    The top row is blue, is it the one you need to change?

    View post on imgur.com

    This will make the text the same color and change the arrows:

    
    #tablepress-1 td {
      color: #000;
    }
    .paging_simple .paginate_button.next:after, 
    .paging_simple .paginate_button.previous:before {
           text-shadow: none; 
           color: #666;
           font-weight: 400;
    }
    

    Those arrows are not from Enfold.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #846352

    Hey,

    You can try adding your buttons to the bottom row of your table using shortcodes.

    You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Or, You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
    then you can create any of them and copy/paste shortcode into any other content element or into text widget.

    Best regards,
    Yigit

    Hi R,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    @media only screen and (max-width: 480px) {
    .avia-button.avia-position-left { 
    text-align: left; }}
    

    Best regards,
    Yigit

    #846261

    Hey luckylobo10,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    
    @media only screen and (max-width: 479px) {
    #top .avia-slideshow-button {
        padding: 8px 16px;
        margin-top: 5px;
    }
    #top .av_slideshow_full li img {
        height: auto;
        width: 100%;
    }
    .caption_bottom .slideshow_caption .slideshow_inner_caption {
      padding: 0px;
    }
    #top .av_slideshow_full .avia-slideshow-inner {
        height: 150px !important;
    }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #846247

    Hi Sam,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
     #top .header_color .dropdown_widget .buttons .button {
       color: #000;
     }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #846179
    Purplenaartjie
    Participant

    Hi,

    I get these errors:

    Notice: Undefined index: index in /home/cawandsw/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth.php on line 405

    Warning: Cannot modify header information – headers already sent by (output started at /home/cawandsw/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth.php:405) in /home/cawandsw/public_html/wp-admin/post.php on line 197

    Warning: Cannot modify header information – headers already sent by (output started at /home/cawandsw/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth.php:405) in /home/cawandsw/public_html/wp-includes/pluggable.php on line 1210

    When I edit and save these pages:

    https://cawandsworth.org/crisis

    https://cawandsworth.org/get-advice/crisis/firstaid/

    https://cawandsworth.org/crisis-contact

    https://cawandsworth.org/dascas-resources
    https://cawandsworth.org/dascas-contact

    I’ve a feeling it may be some conflict with the full width button used on those pages.

    Help!!!

    #846173

    Topic: Open Link in lightbox

    in forum Enfold
    swisswetter
    Participant

    Hi to all
    I search a solution in Enfold, to open e Link from a button or a pic not in a “new Window” (or tab) – but in a lightbox!

    Like here: http://www.multipixx.com/de/demo

    Thanks for helping

    Markus

    #845936
    Bert
    Participant

    Hi,

    a have made several attempts to get a grid like in this site from the ENFOLD / DEMO 2017 / BLOG MODERN / A SMALL GALLARY

    http://kriesi.at/themedemo/?theme=enfold-overview

    1. Question: How can i display TAGS under an blog post?
    2.Question: After the share buttons there is a 2 collum and 6 post grid. How can i get this? Is it from the blogelement? Is it a widget and when yes what?

    I like the style and want it to integrate.

    Many thanks for hopefully some answers.Thank you.

    Bert

    #845890

    Hi Ismael

    Yes that sort of works now the buttons stack on top of one another which is okay

    But can you help me understand why this didn’t align “straight out of the box” so to speak. The theme should do this was there something creating this issue? Would it happen again with another site using enfold?

    nirvlior
    Participant

    I created a landing page and need to report AdWords conversion. Was given these instructions to follow https://support.google.com/adwords/answer/6331304?&hl=en but not sure how to use onclick on this instance.

    Does this solution answer my need? http://kriesi.at/documentation/enfold/add-onclick-event-to-the-contact-form-submit-button/
    If so, what should be on onclick? Where on functions.php (not using child theme) should I place the code snippet?

    #845588

    Hey codecreative,

    Thank you for using Enfold.

    Please add this css code in the Quick CSS field.

    @media only screen and (max-width: 989px) {
      /* Add your Mobile Styles here */
      .avia-button-right, .avia-button-left {
          display: block;
          float: none;
          text-align: center;
      }
    
      .avia-button.avia-position-right, .avia-button.avia-position-left {
        float: none !important;
        display: block;
        width: 50%;
        margin: 0 auto;
      }
    }

    Best regards,
    Ismael

    #845037

    Hi,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    .home button.mfp-arrow {
        display: none;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #844782

    Hi Nikki,

    You are welcome! You can simply hover on “performance” button on admin bar and purge cache there :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    Hi,

    I changed all button positions to left and then added following code to Quick CSS in Enfold theme options under General Styling tab

    .avia-caption-content .avia-button-wrap a {
        float: none;
        max-width: 205px;
        margin: auto;
    }
    .avia-caption-content .avia-button-wrap {
        width: 33.3%;
        margin-bottom: 20px;
    }

    Please review your website

    Best regards,
    Yigit

    #844565

    Hi,
    You can download the medical icons here Just press the “download pack” button and you will receive a zip file that you can upload as if it were a fontello zip file.

    You can also make a FAQ with the Accordion element, see the demo of it in the Enfold 2017 demo

    Best regards,
    Mike

    #844500

    Hey Carol,

    Thanks for contacting us!

    You can also go to this page – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990/support after logging in and can find your purchase code below “Go to item support” button :)

    Regards,
    Yigit

    #844133

    Hey web4698,

    I think the easier way to do it is to use a code block, then we can use some css codes to make the:

    <a data-sumome-listbuilder-id="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx">Click Here</a>

    look similar with Enfold buttons. Let us know if this option is good?

    Best regards,
    Nikko

    #844081
    subnoodle
    Participant

    Hi dear support,
    i’d like to customize the layout of a single portfolio-entry of the portfolio-list when calling an portfolio-category-URL.
    I found file:
    enfold\config-templatebuilder\avia-shortcodes\portfolio.php
    as well as file
    enfold\single-portfolio.php
    but didn’t get who is doing what.

    Best solution would be if i could add another list template to the portfolio-layout-selection of the portfolio-grid-element.
    When selecting this, how i am able to influence full the rendering of a single entry?
    (Should get a single columned list with image and text right of it plus button)

    How can i do this all in the child theme (do i have to copy whole class files? To which child folder then?)

    Thank you a lot!

    Cheers, Sam

    #843865
    Grégory MAINGRET
    Guest

    Hi

    Your enfold theme is lovely and I’m very interested to build my new website based on it but I’ve a question before buying it. As a wedding photographer, I create a password protected page for each of my clients so they can easily see and share their photos.

    Are password protected pages provided in this theme? I mean no user account needed, only a password, not referenced by google bots.

    I’m looking for a elegantly integrated section in the main page where the bride and groom enter their password with a “Enter” button to get redirected to their private gallery. Is it possible from the Enfold theme?

    Thanks for your help!

    #843623

    Hi,

    Did you copy the code from the site: http://kriesi.at/documentation/enfold/add-onclick-event-to-the-contact-form-submit-button/ ? Can you try manually replacing the the single quotes ‘ and double quotes ” sometimes they cause some issues when copied and pasted. Hope this helps.

    Best regards,
    Nikko

    #843456
    xprinta
    Participant

    Hi,

    I´m using the Enfold theme and I have a question (I couldn´t find the solution on the forum). I want to remove the search button from the main menu of my web, but I don´t see the option in the WP backoffice, and I don´t know if this is possible to do.

    How can i do that?

    Thanks.

    Regards.

    #843348

    Topic: inline buttons

    in forum Enfold
    clairemartindigital
    Participant

    how would one apply the solution in below thread to 2 specific buttons instead of all buttons on a site?

    https://kriesi.at/support/topic/enfold-buttons-next-to-each-other-within-same-columns/

    thanks

    #843310
    wing911207
    Participant

    Hi,
    I have some issues when I imported the Enfold 2017 demo to my site. The to-top button is not showing and when I scroll down the background of the main menu is not changing to white. The background of the main menu is still transparent which makes the white menu impossible to be seen.

    Do you have any idea what is causing those issues?
    I am using WordPress 4.4.2.

    Thanks,
    Olivia

    Edit:
    Hi, I figured it out. Some plugins are not configuration right I guess. All good now. Thanks!

    • This topic was modified 8 years, 7 months ago by wing911207.
    #843262

    I do have the same problem with an all up-to-date installation (Enfold 4.1.2, newest WooCommerce and so on…), tested in Firefox and Chrome (newest versions). There, after putting something in the cart, the cart dropdown button is first not visible but then – after loading of the page is complete – becomes visible in the menu. On changing to another page it disappears again.

    I tried the 3 solutions (CSS Code, adding snippet to functions.php and replacing the .js file in the enfold folder) proposed, none of them worked.
    You can test the behavior on my site as guest, see below.

    Also running a Cache plugin, W3 Total Cache, which seems to be connected to this issue…

    • This reply was modified 8 years, 7 months ago by joerka27.
    #842839
    gocreative
    Participant

    I’ve created a custom post type with custom templates and using Enfolds version of magnificPopup to create a popup gallery in my post list.

    The gallery initializes correctly and works as intended if I click the image inside the initialized gallery element to open the pop up, but if I use jQuery to open the gallery with a button the popup style changes, does not animate and I’ve had to overwrite the .mfp-figure element in CSS to opacity: 1 to show the images in the popup, overwriting a style in Enfold’s layout.css.

    Perhaps there is some Enfold style that doesn’t get added when opening the popup using magnificPopup(‘open’)?

    I initialize each gallery on the page using:

    $('.go_products-popup-gallery').each(function() {
    		$(this).magnificPopup({
    			delegate: 'a',
    			type: 'image',
    			tLoading: 'Loading image #%curr%...',
    			mainClass: 'mfp-img-mobile',
    			gallery: {
    				enabled: true,
    				navigateByImgClick: true,
    				preload: [0, 1] // Will preload 0 - before current, and 1 after the current image
    			},
    			image: {
    				tError: '<a href="%url%">The image #%curr%</a> could not be loaded.'
    			}
    		});
    });

    And open the gallery with the button using:

    $('.go-gallery-btn').click(function(e) {
    	e.preventDefault();
    	var id = $(this).data('id').toString();
    	$(".go_products-popup-gallery[data-id='"+id+"']").magnificPopup('open');
    });
    #842473
    PhilCl
    Participant

    Hi Enfold Team,
    how can i change the design of the portfolio sorting options above the masonry? I would like to design them as buttons via CSS.
    Also i would need to get rid of the / between the sorting options.
    Thank you
    Phil

    #842400

    In reply to: Some issues

    Hi Tobiy,

    The button should to be a separate element, not on the same menu. Maybe add it as a header widget?

    Best regards,
    Victoria

Viewing 30 results - 5,521 through 5,550 (of 11,214 total)