Viewing 30 results - 6,061 through 6,090 (of 11,218 total)
  • Author
    Search Results
  • on your site it is in firefox osx the same thing.
    btw : You have a shift of the header element when scrolling down – is this normal enfold behavior of header not visible until you scroll down ?

    the top value of that button is for the hide button to much:

    #advanced_menu_hide {
        top: 40px;
    }

    and for me it was a bit strange to see content under the mobile nav. :
    if you place that code the hide button was imediately visible – you only have to shift it to the right place – see above

    #mobile-advanced {
        height: 100% !important;
    }
    • This reply was modified 9 years ago by Guenni007.
    #763941

    See screenshot showing the Enfold Button error

    Thanks,
    Andrea

    #763912
    RokRB
    Participant

    Hi,

    can you please help me with next problem:

    I can’t find way to change women and men collections “buttons” in fullscreen slider, here is a picture of what im thinking.
    Shrani.si

    Plus I just cant edit header and footer in page, dont know how. I did found an option in Enfold theme option but that is not it.

    Thanks for helping,

    Rok

    • This topic was modified 9 years ago by RokRB.
    #763840

    Hey Kerri PHillips,

    you go to https://kriesi.at/support/register/ and enter your purchase code. Afterwards you go to https://kriesi.at/support/forum/enfold/ and click on the big blue button “Can’t find a solution to your problem? Open a new thread”.

    Best regards,
    Andy

    aledef
    Participant

    Hi
    you made a great work with Enfold, my congrats!

    I followed these instuctions to enable Advanced Layout Builder in custom post types:

    It woks fine and I can see the Advanced Layout Builder, but it is positioned below the standard editor and there is no button to switch between standard editor and Advanced Layout Builder.

    Is there a way to enable the switch button (the one I see in Pages and Posts editing) in order to switch between standard editor and Advanced Layout Builder instead of having them both visible?

    Thanks
    Alessio

    #763698

    Hi,

    You can find the shortcodes.js file in the root folder wp-content>themes>enfold>js

    If you are looking towards the simpler solution you can add a button to your desired section and link to the target sections custom id. This is done via the ALB.

    Best regards,
    Jordan Shannon

    #763574

    well the scroll-top function is on shortcodes.js line 1552

    scroll_top: function()
    {
    	setTimeout(function()
    	{
    		var target_offset = target_wrap.offset().top - 175,
    			window_offset = win.scrollTop();
    							
    		if(window_offset > target_offset || target_offset - window_offset > 100  )
    		{
    			$('html:not(:animated),body:not(:animated)').animate({ scrollTop: target_offset }, options.timing, options.easing);
    		}
    	},10);
    },

    and stackoverflow is full of good hints for a function with scroll-bottom behavior.
    Or much simpler : place a button as you like and link to the anchor #footer (or #socket) – the anchor link is animated as well in enfold.

    #763194

    Hi,

    To make both the buttons same width please give the buttons a custom css class name “same-width” and use the css rule min width to give them both a minimum width.

    To enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    
    .same-width {
    min-width:220px;
    }

    Adjust the min width value as required.

    Best regards,
    Vinay

    #763156

    Thank you Ismael!

    Now, for Analytics tracking I’m using the code:


    <script>
    (function($){
    $(window).load(function() {
    $(‘.button-1 a’).on(‘click’, function() {
    ga(‘send’, ‘event’, ‘button’, ‘click’, ‘button-1’);
    });
    $(‘.button-2 a’).on(‘click’, function() {
    ga(‘send’, ‘event’, ‘button’, ‘click’, ‘button-2’);
    });
    $(‘.button-3 a’).on(‘click’, function() {
    ga(‘send’, ‘event’, ‘button’, ‘click’, ‘button-3’);
    });
    });
    })(jQuery);
    </script>

    Inside the Analytics Code field (in Enfold tab).

    Is there a way to implement it in the div <div class=’phone-info> that is in the header, to track onclick on the phone number?

    Thanks again!

    #762964
    Ciro
    Guest

    Good evening,

    I woud buy Enfold theme, but i would know if it’ s simple and possible to make an homepage with 2 image (nearest) with two label and two button under the label.
    I asked it because I need a web site and from the homepage i would divide a web site in two big categories.

    Thank you

    Ciro

    nulrick
    Participant

    Hi Kriesi .. I just paid for extended support just to fix this problem. I really need help here! My Lightbox problem is broken down into 2 related questions..

    1. In my grid, when clicking on the title which launches lightbox, two lightboxes are launching and overlapping each other.. One from my Enfold theme and one layered above from Essential Grid. I want to turn off the Enfold Lightbox and use Essential Grid’s, or I may buy another Lightbox plugin .. but when I turn off the Enfold Lightbox, NO light box works at all..

    I had ran into this problem some time ago and you had submitted a custom script to insert in to my settings as well as a modification to the ‘avia.js’ file. I’ve tried both again now and cannot fix this problem. The ticket can be seen here: https://themepunch.ticksy.com/ticket/258315/ or https://kriesi.at/support/topic/duplicate-lightboxes/#post-762022

    2. The second problem is that if using the Enfold Lightbox, once I load more portfolio items (LOAD MORE btn at bottom is white..) and launch Lightbox, the Lightbox arrows only cycle through the first batch of 6 portfolio posts that is loaded.. not any additional ones via the ‘load more’ button

    link: http://dev.100eight.com/portfolio_test/ (click on any post title but the first one to experience the problem)

    • This topic was modified 9 years ago by nulrick.
    #761948
    #761868

    Hi

    I was trying to use this solution but found out that the .load event has been deprecated and removed as of jquery version 3.0. In that case, how to I use a button target to open a modal/popup window? Also, I’d like to know which version of jQuery does Enfold use?

    Thanks.

    #761853

    Topic: Logo auf dem Slider

    in forum Enfold
    #761623

    Hi,

    Actually, the Enfold was developed for the developers, but you can customize what will or won`t be showed. To hide the Page builder,for example, you need to use this custom code:

    
    add_action( 'admin_print_styles', 'enfold_customization_admin', 10 );
    function enfold_customization_admin() {
    	echo '<style type = "text/css">';
    	echo '#avia-builder-button { display: none; }';
    	echo '</style>';	
    }
    

    So, you can ask me how to disable other parts of the theme and I`ll help you :)

    Best regards,
    John Torvik

    Hey!

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your images and give them a custom CSS class (“my-buttons” in example below) and then add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 767px) {
    .my-buttons img { max-width: 360px; }}

    Best regards,
    Yigit

    Hey NieuweDag,

    Please edit your color section element where you have your buttons and give it a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png (“buttons” in example below) and add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 1024px) { 
    #buttons .flex_column { width: 100% !important; margin-left: 0 !important; }
    }

    Best regards,
    Yigit

    #761388

    Hey!

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

    .contactbutton {
        position: absolute;
    }
    

    Best regards,
    Yigit

    #761333
    Filosophie
    Participant

    The theme update of Enfold created an issue with my layerslider (update of layerslider was included in the theme update):
    the buttons on my Layerslider layers moved up. Please check as example https://www.jktranslate.com/en/business-translations/

    As you can see the buttons are moved up. In the backend at LayerSlider it looks fine. Only on the frontend it is wrong now. How can I fix this issue?

    #761324

    Hi Wanted2b!

    Thank you for using Enfold.

    This is a related thread but the modification is for the contact form element.

    // https://kriesi.at/support/topic/google-analytics-event-tracking-2/

    For the newsletter subscription form, try to use jQuery, specifically the .attr() function.

    // https://kriesi.at/support/topic/trying-to-activate-event-tracking-on-buy-now-buttons/#post-749751

    Regards,
    Ismael

    #761110

    Hey Meny,

    1. Are you using chrome? you can check on this thread: http://stackoverflow.com/questions/17517600/mailto-links-do-nothing-in-chrome-but-work-in-firefox

    2. I have added this css code in QUick CSS (located in Enfold > General Styling):

    #top .avia-slideshow-button.avia-color-light {
        font-size: 22px;
    }

    3. I have commented this css code that is already in Quick CSS:

    #menu-item-144395 > a > .avia-menu-text { color: red; }

    and above it I added:

    #menu-item-144395 > a  { background-color: #ddd; }

    Just adjust the color as you see fit.

    Best regards,
    Nikko

    #760892
    zmkstudio
    Participant

    Hello Please help,

    I’ve added this code to display custom field input for pdf file download on page layout.
    this >> (i add this to enfold/includes/loop-page.php after line 31)

    if( have_rows('upload_pdf_file') )
    				{
    				echo '<table border="0" cellpadding="10" cellspacing="0">';
    				while( have_rows('upload_pdf_file') ): the_row();
    				// vars
    				$file = get_sub_field('pdf_file');	
    				$pdfcap = get_sub_field('pdf_title');
    				$url = $file['url'];
    				$title = $file['title'];
    				$caption = $file['caption'];
    				
    				echo '<tr class="pdfbutton"><td width="70%">';
    				echo '<span>'.$pdfcap.'</span></td>';
    					if( $url )
    					{
    					echo '<td align="center"><a href="'.$url.'" title="'.$title.'" target="_blank">';
    					}
    					echo 'Download PDF';
    					if( $url )
    					{
    						echo '</a>';
    					}
    					echo '</td></tr>';
    					endwhile;
    					echo '</table>';
    				}
    

    but it able to show only some page and some page just disappear even I put content to acf via backend already.
    please help, I need this code above to show on every page.

    Thanks so much!

    #760770
    NetphoriaInc
    Participant

    See the Private content for the links.
    I am trying to build a site using the Enfold theme.

    how can I get the slide copy and buttons to look like my design? I would like to have the text and buttons centered to the right like the design and then be able to change the colors of the buttons like in my design. The theme does not appear to have this ability??

    #760735

    Hi,

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

    .avia_cart_buttons {
        opacity: 1;
    }
    

    Best regards,
    Yigit

    #760673

    Hey Rio1,

    maybe this one could help:

    Otherwise you need to search for a plugin with such a function or hire a freelance developer who can implement such customization for you.

    Feel free to make a feature request for Kriesi here: https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Andy

    #760635

    Hey DROR,

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

    .rtl .avia-multi-slideshow-button.avia-slideshow-button {
        margin-right: 0;
        margin-left: 20px;
    }
    

    Best regards,
    Yigit

    #760618
    Sjaak
    Guest

    Hi,

    I would like to rollback my Enfold theme to the last version before the 4.0 release, as my client is having problems with the preview section and the ‘Update’ button disappearing. Could you send me a link to a download?

    Thanks!

    Sjaak

    Hey!

    I’m sorry but the following link is invalid. Please visit the link again then click the “remove frame” button located at the top right corner of the page in order to get the actual link of the demo page.

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

    If you need to display excerpt in the Portfolio Grid element, edit it then set the Excerpt setting to Title and Excerpt. Make sure that you’re portfolio items contains an excerpt. And if possible, please provide a screenshot of the layout that you have in mind.

    Cheers!
    Ismael

    lucky19
    Participant

    Hello,

    I love the new update, except that some of my icon lists and testimonial sliders just disappear. When I go in the back end they are still there and sometimes if I just open the element and close it and hit the page update button it comes back. Then disappears again randomly.

    The testimonial slider is different. I can’t get that one to show up on my page at all. I’m not sure what to do.

    Please let me know if you need login creds. I’ve included my website in the private content section.

    Thanks for your help!

    -Andrea

    Hey,
    I hope it’s okay to answer to this topic.
    I’ve got the same problem but it doesn’t seem to work any longer with the following code you provided for hiding the templates in avia layout architekt.

    add_action('admin_head', function() {
    if(current_user_can('editor')){
    	?>
    	<style>
    	 	a.save-template-button.button, span.avia-delete-template {
    	    	display: none;
    		}
    	</style>
        <?php
       }
    });

    Can you provide a updated code which works on the newer enfold versions?

    Thanks in advance!
    Regards.

Viewing 30 results - 6,061 through 6,090 (of 11,218 total)