Viewing 30 results - 5,791 through 5,820 (of 11,218 total)
  • Author
    Search Results
  • #803397
    dekkert
    Participant

    Hi guys!

    Still love Enfold, nice updates! Two questions:

    1) I was wondering: the new burger menu option (Header > Header layout > Display as icon) seems to me like it would work great on mobile as well… How would I go about disabling the regular/old mobile menu to see if I could get the new burger menu to play nice with the theme?

    2) While using the new burger menu as mentioned above, I would like to have an extra button in the header on desktop and tablet. How would I go about this? All the snippets and function.php addition I find are for other/older menu combinations! Any help would be greatly appreciated.

    Kind regards,

    Thomas

    #803283
    infigic
    Participant

    Hello sir,

    how to configure plus minus button on your enfold theme
    please help me sir.

    #803233
    Mellisa
    Guest

    HI, hope you are well. I have been advised to purchase the Enfold Theme for our Multisite. But concerned about a few things and wanted to see if you can help me clarify a few things. Being a Multisite is there a header option to show case each site attached to this multisite – at the moment we have a custom header at the top of our current website BMXcultue | BIKE PLAY | BMXdevelopment | IBMXshop – but I want to avoid any custom work to ensure everything is always updated. check out http://www.bmxculture.com – at the top bar you will see 4 buttons (These are our 4 divisions) and they point to each domain associated to the multisite – can this theme offer a header like this? And can the main header be on all pages with a seperate menu for each domain – Looking forward to your support so I can purchase the theme and get it uploaded – Thanks Mellisa

    #803130
    hizzacked
    Participant

    Hello,

    I found a thread created by Ismael some time ago with information on how to create a custom content element block to display post meta info on the ALB when using it to create posts.

    I was wondering if someone could help me rework this code so that it ONLY shows the post date, nothing more.

    The link to the thread is here: https://kriesi.at/support/topic/post-meta-information-not-appearing-on-single-post-in-restaurant-theme-in-enfold/

    The code here:

    <?php
    /**
     * Comments Element
     * Adds a comment form to the page
     */
     
    // Don't load directly
    if ( !defined('ABSPATH') ) { die('-1'); }
     
     
     
    if ( !class_exists( 'avia_post_meta_info' ) )
    {
            class avia_post_meta_info extends aviaShortcodeTemplate{
                           
                            /**
                             * Create the config array for the shortcode button
                             */
                            function shortcode_insert_button()
                            {
                                    $this->config['name']           = __('Post Meta', 'avia_framework' );
                                    $this->config['tab']            = __('Content Elements', 'avia_framework' );
                                    $this->config['icon']           = AviaBuilder::$path['imagesURL']."sc-comments.png";
                                    $this->config['order']          = 28;
                                    $this->config['target']         = 'avia-target-insert';
                                    $this->config['shortcode']      = 'av_post_meta';
                    $this->config['tinyMCE']        = array('disable' => "true");
                                    $this->config['tooltip']        = __('Add the post meta infos', 'avia_framework' );
                    //$this->config['drag-level'] = 1;
                            }
                           
     
                             
                            /**
                             * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
                             * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
                             * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
                             *
                             *
                             * @param array $params this array holds the default values for $content and $args.
                             * @return $params the return array usually holds an innerHtml key that holds item specific markup.
                             */
                function editor_element($params)
                {
                    $params['innerHtml'] = "<img src='".$this->config['icon']."' title='".$this->config['name']."' />";
                    $params['innerHtml'].= "<div class='avia-element-label'>".$this->config['name']."</div>";
                    $params['content']       = NULL; //remove to allow content elements
                    return $params;
                }
                           
                            /**
                             * Frontend Shortcode Handler
                             *
                             * @param array $atts array of attributes
                             * @param string $content text within enclosing form of shortcode element
                             * @param string $shortcodename the shortcode found, when == callback name
                             * @return string $output returns the modified html string
                             */
                            function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
                            {
                                    $the_id = get_the_ID();
                                   
                                    $output  = '<header class="entry-content-header">';
                    $output .= "<span class='post-meta-infos'>";
                    $markup  = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
                    $output .= '<time class="date-container minor-meta updated" {$markup}>'.get_the_time(get_option('date_format'))."</time>";
                    $output .= "<span class='text-sep text-sep-date'>/</span>";
     
     
     
                        if ( get_comments_number() != "0" || comments_open() ){
     
                        $output .= "<span class='comment-container minor-meta'>";
                                            ob_start();
                                            comments_popup_link(  "0 ".__('Comments','avia_framework'),
                                              "1 ".__('Comment' ,'avia_framework'),
                                              "% ".__('Comments','avia_framework'),'comments-link',
                                              "".__('Comments Disabled','avia_framework'));
                                                                                      $comment = ob_get_clean();
                                                                                      $output .= $comment;
                        $output .= "</span>";
                        $output .= "<span class='text-sep text-sep-comment'>/</span>";
                        }
     
     
                        $taxonomies  = get_object_taxonomies(get_post_type($the_id));
                        $cats = '';
                        $excluded_taxonomies =  apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
     
                        if(!empty($taxonomies))
                        {
                            foreach($taxonomies as $taxonomy)
                            {
                                if(!in_array($taxonomy, $excluded_taxonomies))
                                {
                                    $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                                }
                            }
                        }
     
                        if(!empty($cats))
                        {
                            $output .= '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                            $output .= $cats;
                            $output .= '</span><span class="text-sep text-sep-cat">/</span>';
                        }
     
     
                        $output .= '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
                                            $markup  = avia_markup_helper(array('context' => 'author_name', 'echo'=>false));
                        $output .= '<span class="entry-author-link" $markup>';
                        $output .= '<span class="vcard author"><span class="fn">';
                                            ob_start();
                                            the_author_posts_link();
                                            $author  = ob_get_clean();
                        $output .= $author;
                        $output .= '</span></span>';
                        $output .= '</span>';
                        $output .= '</span>';
                    $output .= '</span>';
                                    $output .= '</header>';
                                   
                                   
                            return $output;
                    }              
                           
            }
    }

    Thanks in advance, would be lovely if Ismael could get me code to show only post date.

    Hi,

    Please refer to my post here – https://kriesi.at/support/topic/lightbox-for-mailchimp-form/. You can add your HTML code into slider captions

    If you would like to style your button as Enfold buttons, please add following code to Quick CSS as well

    .open-popup-link { 
        background-color: #d63e2d;
        color: #ffffff;
        border-color: #b41c0b;
        padding: 9px 10px 7px;
        font-size: 13px;
        min-width: 80px;
        text-decoration: none;
        display: inline-block;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        margin: 3px 0;
        line-height: 1.2em;
        position: relative;
        font-weight: normal;
        text-align: center;
        max-width: 100%;
    }

    Best regards,
    Yigit

    Hi Yigit,

    Thank you very much for your assistance. Now I get it. I added the code to caption and it works indeed, I was previoysly trying to add to Enfold button itself… Never mind :)

    I am an IT project manager in a company and also running my own small business, building websites for customers (95% on Enfold :P), so I know what out of scope is.

    Thank you once again Yigit for the assistance. Wish you a good luck, salary increase, awesome weekends, summer and all those good things in one bundle.

    Enfold is great!
    Kirill

    #802539

    Hi,

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

    .avia-slideshow-inner .avia-button-wrap {
        position: absolute;
        left: 40px;
    }

    Best regards,
    Rikard

    Hi,

    But I did, copy the CSS code to Enfold general styling css.

    1. It works on the page if I click on the new code block added, however I am struggling to implement this to the enfold button in the slider.
    2. I added the #test-popup tag to the button link, but that doesn’t work.

    Please help, thanks.
    Kirill

    Hi,

    Please do the modification as suggested here then copy the enfold button’s css properties and apply it the custom button.

    Best regards,
    Ismael

    #802212

    Hi,

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

    .av-woo-purchase-button form {
        width: 135px;
        margin: auto;
    }
    

    Best regards,
    Yigit

    #802029

    In reply to: Caption on slider

    Hi,

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then give your slider a custom class (“my-slider” in example below) and then add following code to Quick CSS

    .my-slider .slide-4 a.avia-slideshow-button {
        background-color: orange;
    }

    Best regards,
    Yigit

    #801969
    Enfold-User
    Participant

    Hallo,
    wie kann ich eine Checkbox, die anzukreuzen ist (… Widerrufsbelehrung gelesen …) beim Enfold Theme einfügen? Ich habe nur bei dem Kontaktforumlar das Form Element: Checkbox gefunden. Das meine ich grundsätzlich, benötige aber keinen 2. Sendenbutton ; (
    Vielen Dank für die Hilffe:

    0_o
    Participant

    Hi!
    Is there a way to make a button element or button in a slideshow open a link/page in iframe in a lightbox (Magnific or something else that plays well with Enfold)?

    Many thanks!

    Hi Enfold,

    Any luck solving my question about how to add this shortcode form to a Enfold Button element?

    Thanks!
    Kirill

    Hi Yigit,

    Thanks again, however this time nothing changed.

    So I am trying to add a #test-popup in a enfold button to open a lightbox with the contact form inside.

    Will be waiting for your reply, mega thanks!
    Kirill

    Hi Yigit,

    Bravo man! Super! Thanks!

    Last quick question, what’s the right practice to add now this to a enfold button here? Tried with a #test-pop link doesn’t work.
    https://screencast.com/t/Yg1Z82VDL

    Once again big thanks!
    Kirill

    #800960

    Hi Mike,

    Well when I used version 3.3.2 and an earlier version of woocommerce, there was no conflict using the enfold editor on product pages,
    Now after updating the woocommerce the enfold editor will still not work, so I tried doing a back-update (or re-set or what is is called)
    but it was still not working.

    I can’t switch to the default editor – when I press the button nothing happens – but the website is running just fine and the customers does not notice any issues.
    However, When adding a new product I can work with the default editor, but I would like to be able to update my current products that was built wiith enfold.

    I have now updated enfold now, it looks great and I could adjust all my changes – but the problem with the editor remains.

    Hi,
    Thank you for your answer, however I think that’s not what I want.
    1.I have a shortcode: [contact-form-7 id=”902″ title=”Contact form 1″]
    2. Enfold has button elements.
    3. Button element can include post/page/category or link – for example youtube link.
    4. The youtube link opens in a modal / lightbox window – that’s great.
    5. But I need the button to open a modal / lightbox winow with [contact-form-7 id=”902″ title=”Contact form 1″] shortcode.
    6. Video illustrating my struggles: https://screencast.com/t/btbvwZLp
    Thanks!
    Kirill

    kirillko
    Participant

    Hi,

    Building a website for my client, having troubles figuring out how to add a short code to a button in the slider or any other button on the website?

    Currently I’ve installed Modal Window plugin, but don’t understand why I need modules for that?

    Perhaps this can be done with Enfold without any plugins?

    Instructions would be welcomed.

    Thanks!
    Kirill

    #800784

    Hey foxp3,

    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: 450px) {
      #top .avia-slideshow-button {
        margin-top: 0;
      }
      .slideshow_align_caption {
        vertical-align: top;
      }
    }
    

    Let me know how do you like this suggestion :)
    If you need further assistance please let us know.
    Best regards,
    Victoria

    #800635
    mleite1
    Participant

    Hello, I saw this site made with enfold and I wondered how it put a button next to the menu. Watch. A blue button.

    LINK
    http://bodyworxhealthcare.co.nz/

    My site is – http://www.quintadaslagoas.com.br

    #800023
    EZWebdesign
    Participant

    Hi,

    I’m using your great Enfold theme. Really perfect for me. Just to help you make it even better, I’d like to submit a few cosmetical and translation issues. I don’t know if this is the place for that, just let me know otherwise how I can help.

    (some) Issues:
    – Easy Slider Full Width: button text doesn’t fit in Dutch language
    Translation missing:
    – Slider minimum height in pixel
    This is helpful on smaller screens if you got a lot of text in your slider

    I can also help you translating it to Dutch if you like.

    Regards,
    Roger

    #799845

    In reply to: Colors

    Hey Zaccc,

    Try adding this css code in Quick CSS (located in Enfold > General Styling) for the white in the cart (there are 2 buttons there):

    #top .dropdown_widget .buttons .button {
        background: #666;
    }

    As for the dropdown, it doesn’t show anything because the dropdown options are empty though I can see that there are values on the empty options. See screenshot in private content.

    Best regards,
    Nikko

    #799303

    Hi,

    After clicking the Export Theme Settings File button, you should have a config file that you can use on another installation with the Enfold theme. Go to the same Import/Export panel then click the Import Theme Settings File to apply the theme options of the previous site to the new site.

    Best regards,
    Ismael

    #799183

    Hey MassimoDiFelice,

    For 1 & 2, try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top #wrap_all .text_input, 
    #top #wrap_all .text_area, 
    #top #wrap_all .select, 
    #top #wrap_all .avia_ajax_form .button {
        border: 2px solid #fff !important;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #798849

    We have the same problem on one of our websites with the enfold theme. There is a way to edit your page anyway:

    When you open the page, and the Layout Builder loads and loads but nothing happens, click on the button “Standard Editor”, so the page is empty. Now click again on the Button “Layout Editor”. Now the editor should load.

    But this is not an solution, it is really annoying for us to do this on any page.

    I hope you can edit your page with this trick.

    #798557

    Hey folks,

    I was looking for something like this and had an idea on how to shorten the process of uploading and copying the URL for a file. By adding a WYSIWYG editor to the button shortcode, you can upload a file using the Add Media button. Uploading the file in WYSIWYG doesn’t copy the URL to the link field, but at least you could copy the link from that spot and paste it into the manual link.

    There are 4 steps to my suggestion: Copy buttons.php to child theme, modify the “Set Manually” text to say “Set Manually or Upload File”, add the WYSIWYG array below the Button Link array, and add CSS to functions.php to hide parts of the WYSIWYG editor in the button Modal Window.

    First, I copied buttons.php from Enfold>config-templatebuilder>avia-shortcodes to my child them enfold-child>shortcodes

    Second, modify buttons.php and the Button Link subtype array to say Set Manually or Upload File. :

    array(	
    "name" 	=> __("Button Link?", 'avia_framework' ),
    "desc" 	=> __("Where should your button link to?", 'avia_framework' ),
    "id" 	=> "link",
    "type" 	=> "linkpicker",
    "fetchTMPL"	=> true,
    "subtype" => array(	
    			__('Set Manually or Upload File', 'avia_framework' ) =>'manually',
    			__('Single Entry', 'avia_framework' ) =>'single',
    			__('Taxonomy Overview Page',  'avia_framework' )=>'taxonomy',
    			),
    "std" 	=> ""),

    Third, inside buttons.php add the following code right after the Button Link array:

    array(
    "name" 	=> __("Content",'avia_framework' ),
    "desc" 	=> __("Use the Add Media button to upload a file. Then copy the URL to use as a link in the Button Link field above.",'avia_framework' ),
    "id" 	=> "ContentInButtonModal",
    "type" 	=> "tiny_mce",
    "required"=> array('link','equals','manually'),
    "std" 	=> __("", "avia_framework" )
    							),

    Fourth, add the following code to your child theme’s functions.php

    //Remove the WYSIWYG content in the button Modal Window
    add_action('admin_print_scripts', 'avia_gravity_forms_admin');
    function avia_gravity_forms_admin()
    {
        echo "<style type='text/css'>";
        echo "#wp-aviaTBContentInButtonModal-editor-container, #wp-aviaTBContentInButtonModal-editor-tools .wp-editor-tabs { display: none; }";
        echo "</style>";
    }
    • This reply was modified 8 years, 10 months ago by dustingrof.
    #798403
    acadas
    Participant

    Dear support team,
    within the Enfold Contact Form I am using the color scheme “light transparent”.
    I am searching for a way changing the color of the field names and to the button to red (#a80000).
    Best regards,
    Bernd

    Hey aseque,

    Please enable debug mode to be able to see the builder shortcodes: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, then you can paste this shortcode to a new page:

    [av_section min_height='100' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='aviaTBscroll_down' id='sign-up' color='main_color' custom_bg='' src='https://test.kriesi.at/product-signup/wp-content/uploads/sites/8/2015/10/park-place.png' attachment='133' attachment_size='full' attach='parallax' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.7' overlay_color='#6a9fd5' overlay_pattern='' overlay_custom_pattern='']
    [av_three_fifth first min_height='av-equal-height-column' vertical_alignment='av-align-bottom' space='no_margin' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right']
    
    [av_image src='https://test.kriesi.at/product-signup/wp-content/uploads/sites/8/2015/10/snacks1_blur.png' attachment='164' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    
    [/av_three_fifth][av_two_fifth min_height='av-equal-height-column' vertical_alignment='av-align-bottom' space='' margin='0px' margin_sync='true' padding='20px' padding_sync='true' border='' border_color='' radius='3px' radius_sync='true' background_color='rgba(0,0,0,0.4)' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='right-to-left']
    
    [av_image src='https://test.kriesi.at/product-signup/wp-content/uploads/sites/8/2015/10/logo_landing-page1.png' attachment='31' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='top-to-bottom'][/av_image]
    
    [av_heading tag='h2' padding='0' heading='By far the easiest and best way to <strong>launch a product or service</strong>' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='28' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_contact email='' title='' button='Sign up' on_send='' sent='Thanks for registering! Your Beta invitation will be sent to the email address you provided.' link='manually,http://' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' form_align='' color='av-custom-form-color av-light-form']
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_two_third' multi_select=''][/av_contact_field]
    [/av_contact]
    
    [/av_two_fifth]
    [/av_section]
    
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='features']
    [av_cell_two_fifth vertical_align='middle' padding='30px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_icon_box position='right_content' boxed='av-no-box' icon='ue806' font='entypo-fontello' title='Great Taste' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
    [/av_icon_box]
    
    [/av_one_full][av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_icon_box position='right_content' boxed='av-no-box' icon='ue891' font='entypo-fontello' title='Easy Recycling' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_icon_box]
    
    [/av_one_full][av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_icon_box position='right_content' boxed='av-no-box' icon='ue8cf' font='entypo-fontello' title='Easy Payment' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justordiet a, venenatis vitae, justo.
    [/av_icon_box]
    
    [/av_one_full][/av_cell_two_fifth][av_cell_one_fifth vertical_align='bottom' padding='40px,0px,0px,0px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='https://test.kriesi.at/product-signup/wp-content/uploads/sites/8/2015/10/snacks_single_blue.png' attachment='159' attachment_size='full' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='pop-up'][/av_image]
    
    [/av_cell_one_fifth][av_cell_two_fifth vertical_align='middle' padding='30px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8d3' font='entypo-fontello' title='Multiple Flavors' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
    [/av_icon_box]
    
    [/av_one_full][av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8cd' font='entypo-fontello' title='Mostly Water' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_icon_box]
    
    [/av_one_full][av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue80a' font='entypo-fontello' title='Helps your body' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justordiet a, venenatis vitae, justo.
    [/av_icon_box]
    
    [/av_one_full][/av_cell_two_fifth]
    [/av_layout_row]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='customers' color='alternate_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='center right' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_heading tag='h2' padding='0' heading='What our customers say' color='' style='blockquote modern-quote modern-centered' custom_font='' size='35' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_testimonials style='slider_large' columns='2' interval='10' font_color='' custom_title='' custom_content='']
    [av_testimonial_single src='168' name='Maci Mulsta' subtitle='CEO' link='#' linktext='Supra Media']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    [/av_testimonial_single]
    [av_testimonial_single src='169' name='Sandra Funk' subtitle='Designer' link='#' linktext='Acomp']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.
    [/av_testimonial_single]
    [/av_testimonials]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='pricing' color='main_color' custom_bg='' src='https://test.kriesi.at/product-signup/wp-content/uploads/sites/8/2015/10/park-place.png' attachment='133' attachment_size='full' attach='parallax' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.5' overlay_color='#576270' overlay_pattern='' overlay_custom_pattern='']
    [av_heading tag='h2' padding='0' heading='Fair pricing. No hidden costs. Cancel anytime' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='35' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_fifth first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_table purpose='pricing' pricing_table_design='avia_pricing_minimal' pricing_hidden_cells='' caption='' responsive_styling='avia_responsive_table']
    [av_row row_style='avia-heading-row'][av_cell col_style='']Basic Package[/av_cell][av_cell col_style='']Full Package[/av_cell][/av_row]
    [av_row row_style='avia-pricing-row'][av_cell col_style='']12$<small>per month</small>[/av_cell][av_cell col_style='']24$<small>per month</small>[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']1 shipment each week[/av_cell][av_cell col_style='']2 shipments each week[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']1 drink included[/av_cell][av_cell col_style='']5 drinks included[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']no support[/av_cell][av_cell col_style='']free support[/av_cell][/av_row]
    [av_row row_style='avia-button-row'][av_cell col_style=''][av_button label='Subscribe now' link='manually,#sign-up' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_cell][av_cell col_style=''][av_button label='Subscribe now' link='manually,#sign-up' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_cell][/av_row]
    [/av_table]
    
    [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [/av_one_fifth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='faq' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_heading tag='h2' padding='0' heading='Frequently asked questions' color='' style='blockquote modern-quote modern-centered' custom_font='' size='35' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_half first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_heading tag='h3' padding='10' heading='How does the beta trial work?' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_textblock size='14' font_color='' color='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis <a href="#">dis parturient</a> montes, nascetur ridiculus mus.
    [/av_textblock]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_heading tag='h3' padding='10' heading='Can I change plans later?' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_textblock size='14' font_color='' color='']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt.
    [/av_textblock]
    
    [/av_one_half][av_one_half first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_heading tag='h3' padding='10' heading='How do you handle delivery?' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_textblock size='14' font_color='' color='']
    Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. <strong>Aliquam lorem</strong> ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='pop-up']
    
    [av_heading tag='h3' padding='10' heading='Which payment options do I have?' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_textblock size='14' font_color='' color='']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.
    [/av_textblock]
    
    [/av_one_half][/av_section][av_button_big label='Sign Up Now' description_pos='below' link='manually,#sign-up' link_target='' icon_select='yes-left-icon' icon_hover='aviaTBicon_hover' icon='ue805' font='entypo-fontello' custom_font='#ffffff' color='custom' custom_bg='#576270' color_hover='custom' custom_bg_hover='#f4ca86']
    And get access to our early beta!
    [/av_button_big]

    Best regards,
    Rikard

    #798144

    Thanks for your quick response!

    Please login to the website using the details in the private section, go to the dashboard and select “Layer Slider WP” from the side bar. Then select the slider called “Enfold – most beautiful theme ever”. When I try and select different slides the URL just adds a “#”. The same happens when I try and click any of the tabs/buttons on the slider editor.

    It also doesn’t work when I try and save the slider.

    Thanks in advance!

Viewing 30 results - 5,791 through 5,820 (of 11,218 total)