Viewing 30 results - 331 through 360 (of 7,502 total)
  • Author
    Search Results
  • Enfoldfanatic
    Participant

    Hi Guys,

    On this page > https://kriesi.at/documentation/enfold/menu/#toggle-id-163 I found the code snippet to control that the Hamburger icon appearing earlier in case the text is crossing the logo on smaller viewports. The only downside of this snippet that somehow is hides / remove the search icon which is normally nicely displayed next to the hamburger menu. Can this snippet be adjusted to ensure that the search icon remains in place?

    Thanks and regards
    S

    goldengate415
    Participant

    Hi there,
    You may remember this thread I created and that we worked on 5 years ago. It comes up #1 on Google search when looking for ways to reduce the wordpress media library size:
    https://kriesi.at/support/topic/photos-taking-up-a-huge-amount-of-space-on-my-site-storage-anything-i-can-do/

    I am once again bumping up against my 10 gig limit and realize that i really use very few of the sizes on my site. I would like to take a look at this but I see that at least one of the plugins involved is no longer supported and has some fairly signifiant issues with PHP 7+ according to support forums that are no longer monitored. :( Having said that, I still have the Simple Image Sizes plugin running on my site and it does appear I can use it to further reduce the number of photo size options.

    Has Enfold added anything in theme functionality to make it easier to seelct the default photo sizes or do we still need to do this in functions.php or the Simple Image Sizes Plugin? Any further advice before I embark on this?

    Thanks!
    Rob

    • This topic was modified 2 years, 3 months ago by goldengate415.
    #1429408

    on docu – you can find a possibility not to use for those images a different source :
    see https://kriesi.at/documentation/enfold/magazine/ and search for: image_size

    maybe we can use the avf_magazine_defaults filter to change that. … ;)
    put this to your child-theme functions.php:

    
    function avia_magazine_thumbnail($atts, $magazine){
    	$atts['image_size']['small'] = 'square';
    	return $atts;
    }
    add_filter('avf_magazine_settings', 'avia_magazine_thumbnail', 10, 2);

    Hi,
    I see three errors in the browser console:
    Enfold_Support_4327.jpeg
    the last two are:
    Google Maps JavaScript API error: InvalidKeyMapError
    Google Maps JavaScript API warning: NoApiKeys
    I believe both of these are because your map API key is not added to the page, the map API key is typically added via javascript and you should be able to find it in the page source code by searching with Ctrl+F (windows), I didn’t see it, but I don’t know your exact API key, so try search the source code for it.
    Anyways, the point that I’m getting at is the first javascript error in the browser console, a jQuery is not defined for a meta property with this link:
    /event/blazers-vs-clippers-fundraiser/?instance_id=1309
    Enfold_Support_4329.jpeg
    it seems that jQuery is treating /?instance_id=1309 as jQuery code, when it is not, and sometimes when there is a break in jQuery it stops the rest of the scripts to also break. So perhaps the javascript to add the map api is not running because of this error.
    Try removing this error first and see if that helps.
    I believe the link is your event url, so try removing ?instance_id=1309 from the link as a test and see if this solves the first error, and the map error too.

    Best regards,
    Mike

    #1429401

    Hi,
    I have not researched any plugins with this feature, but you could use this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to hide the top cart section that is not needed:

    #top.woocommerce-cart .woocommerce.wp-block-group[data-block-name="woocommerce/classic-shortcode"] {
    	display: none;
    }

    Perhaps this is the default behavior of the plugin.

    Best regards,
    Mike

    #1429271

    Hi Günter,

    Thanks for reaching out to us.

    If you are looking to change from a theme with its own layout builder to Enfold, then you would have to rebuild your content if you would like to use the layout builder which is integrated in Enfold.

    You can find all the Enfold documentation here: https://kriesi.at/documentation/enfold/

    Enfold does not come with a front-end editor, the layouts are created on the backend while editing a page or post.

    We do not have any general recommendations for security plugins, but there are many available if you search in the WordPress plugin repository, or a general search engine.

    There is no email program integrated in Enfold, you would have to use a local client or a plugin for that.

    Best regards,
    Rikard

    Hi,
    The code Ismael posted above worked for me changing the backend “portfolio” labels to “sites” after I adjusted it some:

    add_action('after_setup_theme', function() {
    	remove_action('init', 'portfolio_register');
    });
    
    add_action('init', 'portfolio_register_mod');
    function portfolio_register_mod()
    {
    	global $avia_config;
    
    	$labels = array(
    		'name' => _x('sites', 'post type general name','avia_framework'),
    		'singular_name' => _x('sites', 'post type singular name','avia_framework'),
    		'add_new' => _x('Add New', 'sites','avia_framework'),
    		'add_new_item' => __('Add New Sites Entry','avia_framework'),
    		'edit_item' => __('Edit Sites Entry','avia_framework'),
    		'new_item' => __('New Sites Entry','avia_framework'),
    		'view_item' => __('View Sites Entry','avia_framework'),
    		'search_items' => __('Search Sites Entries','avia_framework'),
    		'not_found' =>  __('No Sites Entries found','avia_framework'),
    		'not_found_in_trash' => __('No Sites Entries found in Trash','avia_framework'),
    		'parent_item_colon' => ''
    	);
    
        $permalinks = get_option('avia_permalink_settings');
        if(!$permalinks) $permalinks = array();
    
        $permalinks['portfolio_permalink_base'] = empty($permalinks['portfolio_permalink_base']) ? __('sites', 'avia_framework') : $permalinks['portfolio_permalink_base'];
        $permalinks['portfolio_entries_taxonomy_base'] = empty($permalinks['portfolio_entries_taxonomy_base']) ? __('sites_entries', 'avia_framework') : $permalinks['portfolio_entries_taxonomy_base'];
    
    	$args = array(
    		'labels' => $labels,
    		'public' => true,
    		'show_ui' => true,
    		'capability_type' => 'post',
    		'hierarchical' => false,
    		'rewrite' => array('slug'=>_x($permalinks['portfolio_permalink_base'],'URL slug','avia_framework'), 'with_front'=>true),
    		'query_var' => true,
    		'show_in_nav_menus'=> true,
    		'taxonomies' => array('post_tag'),
    		'supports' => array('title','thumbnail','excerpt','editor','comments')
    	);
    
    	$args = apply_filters('avf_portfolio_cpt_args', $args);
    	$avia_config['custom_post']['portfolio']['args'] = $args;
    
    	register_post_type( 'portfolio' , $args );
    
    	$tax_args = array(
    		"hierarchical" => true,
    		"label" => "Sites Categories",
    		"singular_label" => "Sites Category",
    		"rewrite" => array('slug'=>_x($permalinks['portfolio_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true),
    		"query_var" => true
    	);
    
     	$avia_config['custom_taxonomy']['portfolio']['portfolio_entries']['args'] = $tax_args;
    
    	register_taxonomy("portfolio_entries", array("portfolio"), $tax_args);
    
    	//deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings
    	remove_action('wp_loaded', 'avia_flush_rewrites');
    }

    but to change the permalinks from ‘portfolio-items’ to ‘sites’ you will need to adjust the permalink field and then resave the permalinks:
    Enfold_Support_4262.jpeg
    then the database will be updated:
    Enfold_Support_4264.jpeg
    You will need to do this because you can not overwrite the register-portfolio.php file in the child theme and the original file still add the portfolio function, otherwise you will have your new CPT and the portfolio CPT both showing in the permalinks options.
    Or you can try laptophobo’s plugin option.

    Best regards,
    Mike

    #1428907
    harst53
    Participant

    On a website (Enfold theme) that deals with student exchanges in Australia, we have more than a hundred descriptions of schools including an image gallery (AV-Gallery). For some time now, I have noticed that in some (not all!) of these galleries, the line grid dissolves. The first line is always complete, from the second line onwards some lines are incomplete. Sometimes there is only one picture left. A good example can be seen here (at the bottom):

    This phenomenon occurs with Safari (current version) and to a lesser extent with Firefox. I have never observed it with Chrome.
    While researching the causes, I came across this original Kriesi website via the Enfold.manual. This phenomenon of split rows in the gallery also appears there, if you open the website with the Safari Browser:

    Question: What is the cause and how can the gallery be made fully functional again in all browsers?
    Thank you for your help.

    #1428796

    Hi again, I installed the Envato plugin and deleted the previous tokens, as well as where it was initially under Enfold, so that it was only on the newly installed plugin. It is showing an error message:

    Incorrect token permissions, please generate another token or fix the permissions on the existing token.

    Please ensure only the following permissions are enabled:

    1. View and search Envato sites
    2. Download your purchased items
    3. List purchases you’ve made

    Please advise, thank you.

    #1428703

    Hi Doug,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    .search-results .blog-author,
    #top.search-results .post-meta-infos > .text-sep:nth-last-child(2) {
        display: none;
    }

    Best regards,
    Nikko

    #1427767

    Hey vbonora,
    Thanks for your question, I don’t have experience using the Learndash plugin so I don’t know if there are any issues in the backend, but I have seen questions about the frontend and mostly they seem to be minnor issues. I would not say that it is 100% compatible. Please try going to Google and search this phrase: enfold Learndash site:kriesi.at
    I don’t recall any questions about Sensei LMS but searching with this phrase gave a few results: enfold Sensei LMS site:kriesi.at
    Hopefully comparing the results will help you with your decision.

    Best regards,
    Mike

    #1427672
    James Carter
    Guest

    Hello
    I am considering buying the Enfold theme to build a WordPress website. But after searching the Internet I see users of this theme are having problems with the theme.

    As early as May 2023 a user of the theme said he pulled up his site and pages on the site were missing on his site. And a web designer also said he had pages and buttons missing when he went to design a website page. Sounds like there is a problem with the page builder that is built into the theme.

    Can you tell me if the problem with the page builder been fixed. It is now December 9, 2023. I really don’t want problems with the page builder. I understand it’s older technology and according to Theme Forest ithe theme has been updated recently.

    Thank You for your time.

    CJGVD
    Participant

    Dear Mike, dear Kriesi-Team,

    in one of your threads Mike presented a solution for my problem on a test site for Enfold (see private content). Thanks for that! However, in a Google Search the test page of Mike pops up. You can propably understand that my client is not very happy with that. Could you please delete this test page? Thanks!

    BR, CJGVD

    #1427342

    Hi,
    I asked the Dev Team if this was possible and they said that they are not sure if the new Envato API allows that, but it will require them to research this further. The Dev Team asks that you open a Github Feature Request for this so it will be in the correct channel and you can follow the request while they investigate.
    Thank you for your patience and for using Enfold.

    Best regards,
    Mike

    #1427185

    In reply to: Enfold Theme Update.

    Hey bouncy1234,

    Thank you for the inquiry.

    It’s possible that there are permissions you may have missed while creating the private token. Please review the required permissions in the following documentation.

    // https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token

    These are the required permissions.

    – View and search Envato sites (checked by default) (Required)
    – View the user’s Envato Account username
    – View the user’s email address
    – View the user’s account profile details
    – Download the user’s purchased items (Required)
    – Verify purchases of the user’s items
    – List purchases the user has made (Required)

    Best regards,
    Ismael

    #1427176

    Hi,
    Strange, I would imagine that the other thread would have lead to the solution as it seemed to be the same situation.When I check your site with the inspector emulating a mobile device and view the scripts loaded and then click the burger menu 20 additional scripts are loaded:
    Enfold_Support_4003.jpeg
    most of which I don’t think apply, such as FB, YT, reputation badge, but a few WordPress core scrips load from /wp-includes/js/ like wp-polyfill.min.js which sometimes is used as a “bridge” between scripts, so perhaps this is part of the issue.
    Try looking at these scripts and see if this helps.
    I also note that if you look at the DOM in the inspector you can see all of the scripts that get the data-rocket-status=”executed” attribute when you click the burger menu, and one that stood out to me was the variables for the avia_framework_globals
    Enfold_Support_4005.jpeg
    I’m not sure how you could allow these variables in wprocket but perhaps this is related.
    I tried to search for other threads with this issue for possible clues, but the only other one I found was the one I linked to and you have already followed those steps.
    Your not using any other plugins like Autoptimize and you tried disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression right? It looks like you are using a CDN, perhaps try disabling it for now to ensure that there is on conflict.
    The only other thing that I can think of is to disable all of the wprocket settings so the burger menu is working correctly and then enable one at a time, clearing the cache with the CDN disabled until it breaks again and reviewing it. Or perhaps try adding all of the known js files from WordPress and Enfold until the burger menu works correctly and try removing them one at a time until it breaks and you find the combination that you need.

    Best regards,
    Mike

    #1427041

    In reply to: Autorespond email

    Hey neomazic,
    To see the Autoresponder option in the Enfold contact form element please look in the Backend option:
    Enfold_Support_4075.jpeg
    the mailchimp element doesn’t have these option as you need to do this in your mailchimp account.
    Please note that the contact form element is a basic contact form and has limited Autoresponder options, if you would like more option we recommend considering the Contact Form 7 plugin and it many addon plugins.

    Best regards,
    Mike

    #1427037

    Hey tulin88,
    I have two solutions, the first is to create a “template” of each page that was created with the Advanced Layout Builder:
    Enfold_Support_4063.jpeg
    and the export the Enfold Theme Options ▸ Import/Export ▸ Export Layout Builder Templates, and then import it to your new site.
    Enfold_Support_4065.jpeg
    The second solution is to Enable the Avia Layout Builder Debugger and copy the shortcode for each page and then paste it into your new site:
    Enfold_Support_4067.jpeg
    But unfortunately both of these solutions will not translate the pages and will not import the images to the new site. For this you will need to go to WordPress ▸ Tools ▸ Export ▸ Media:
    Enfold_Support_4069.jpeg
    and then import the media into the new site using the WordPress import option:
    Enfold_Support_4071.jpeg
    and make sure you Download and import file attachments
    Enfold_Support_4073.jpeg
    Unfortunately you may need to re-choose all of the images for your imported pages because the image URLs in the shortcode will not match your new site and WordPress displays the images based on the Attachment ID, this is a unique ID number for each image, so if your new site already has a image with that number your imported image will get a new number which won’t match the shortcode. You might get lucky and the Attachment IDs all match correctly, such as when a new empty site imports a “demo”, if you are lucky then you could paste the shortcode into a text editor like VScode and perform a search & replace of the domain to match your new site, such as
    search for: https://my-old-domain.com/
    replace with: https://my-new-domain.com/
    and if the Attachment IDs are the same then this will work good, but I expect that you will need to manually re-choose all of the images after you import them, so just be ready to do this.
    Someone might have the idea to copy all of the old site images via FTP and add them to the new site via FTP, but this will not work because WordPress will not import the images and add a Attachment ID for them in the database of the new site, so this method will be a waste of time. Perhaps you will find a plugin to do this for you, but if the new site already has a image with a specific Attachment ID, your new imported image can’t have the same Attachment ID, so again this will be a waste of time.
    It looks like your site doesn’t have too many images, just the hotspot image so it should be easy for you to do this.

    Best regards,
    Mike

    #1427022

    Yes, I do and thank you. Unfortunately the touch event seems to get caught behind delayed actions no matter what I exclude.

    
    #top .dropdown_widget .buttons .button.checkout
    #top .dropdown_widget .buttons .button
    .woocommerce-mini-cart__buttons
    a.button.wc-forward
    a.button.wc-forward:hover
    .woocommerce-page .button
    #sv-rbadge-box
    #searchform
    #searchsubmit
    .avia-search-tooltip
    .inner-toolip
    .minus
    .plus
    .rating_container
    .woocommerce-product-gallery
    .header_color .avia-tt
    #top #searchform(.*)
    .avia-search-tooltip #searchform(.*)
    #top .avia-font-entypo-fontello
    .header_color .av_ajax_search_image
    .header_color .av_ajax_search_title
    .header_color .ajax_search_excerpt
    (.*).av_ajax_search_entry(.*)
    .ajax_search_response (.*)
    (.*).av_ajax_search_title
    (.*).ajax_search_excerpt
    (.*).av_ajax_search_image
    .header_color h4
    (.*).av_ajax_search_content
    .main_menu
    .menu-item-avia-special
    .av-hamburger
    .av-hamburger-box
    .av-hamburger-inner
    .av-burger-overlay
    .av-burger-overlay-scroll
    .av-burger-overlay-inner
    .av-active-burger-items
    .av-burger-overlay-active
    .av-burger-overlay-active-delayed
    .av-hamburger--spin
    .av-js-hamburger
    .avia_hidden_link_text
    .av-burger-menu-main
    #av-burger-menu-ul
    #avia-menu
    .av-width-submenu
    .current_page_item
    .current-menu-item
    .avia-menu
    .av-main-nav-wrap
    .menu
    .av-main-nav
    .sub-menu
    .av-burger-overlay-bg
    .inner-container
    #header_main
    
    
    \/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\?(.*))?( |'|"|>)
    /dynamic_avia/avia-footer-scripts-(.*).js
    /enfold/js/avia-snippet-hamburger-menu.min.js
    /enfold/js/avia.js
    /enfold/js/shortcodes.js
    /enfold/js/avia-compat.js
    /enfold/js/(.*).js
    /enfold/js/aviapopup/(.*).js
    /enfold/config-templatebuilder/avia-shortcodes/
    /wp-content/plugins/woocommerce-germanized/(.*)
    var avia_is_mobile
    

    It is a very common problem and I don´t know what the issue is but it seems that the burger-menu calls to some other function that still does get delayed.

    #1426982

    Hi,
    Sure if you wish, if it helps try these steps, if you see this Verify domain ownership via DNS record
    Verify_domain_ownership_via_DNS_record.jpeg
    and you added custom nameserver DNS URLs where you bought your domain from, like NameCheap.com
    Enfold_Support_4029.jpeg
    which points to your webhost with a cPanel, you can go to Zone Editor
    Enfold_Support_4031.jpeg
    then click “add record” ▸ “add TXT record”
    Enfold_Support_4033.jpeg
    then add the domain name like the other TXT records (without https) and paste the google code:
    Enfold_Support_4035.jpeg
    and wait a few minutes and the click “verify” on the google Verify domain ownership popup:
    Enfold_Support_4040.jpeg
    I had to wait about ten minutes and check three times on my test site, but this I got the success message:
    Enfold_Support_4038.jpeg
    then you can go to URL Inspection see the Request Indexing button which you can use to get Google to re-crawl and re-index your URL.
    But you might have to wait a day before doing this, as I found that with a new account and domain google shows the message Processing data, please check again in a day or so
    Enfold_Support_4042.jpeg
    But at least you got the ball rolling, in the future you will find the Google Search Console to be very helpful.

    Best regards,
    Mike

    #1426900

    Hey mehwishxperia,

    Please enable debug mode under Enfold->Layout Builder->Show advanced options->Debug mode. Then you can paste this shortcode into the shortcode window in a new page:

    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' 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_uid='av-flk2a2']
    [av_heading tag='h1' padding='15' heading='Our Services' color='custom-color-heading' style='blockquote modern-quote' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av_uid='av-fjbr2q'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='10px' custom_margin_bottom='10px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-fczdmi']
    
    [av_one_half first 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='' mobile_display='' av_uid='av-f6oc0i']
    
    [av_textblock size='' font_color='' color='' av_uid='av-eykr3m']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <a href="#">parturient montes</a>, nascetur ridiculus mus.
    
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_textblock]
    
    [/av_one_half][av_one_half 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='' mobile_display='' av_uid='av-etbavu']
    
    [av_textblock size='' font_color='' color='' av_uid='av-elfvya']
    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.
    
    Cras dapibus. <strong>Vivamus elementum</strong> semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula.
    [/av_textblock]
    
    [/av_one_half]
    [/av_section]
    
    [av_tab_section transition='av-tab-slide-transition' padding='large' tab_pos='av-tab-above-content' tab_padding='none' initial='5' id='Plugins' av_element_hidden_in_editor='0' av_admin_tab_active='6' bg_color='#ffffff' color='#919191' av_uid='av-eekvz6']
    
    [av_tab_sub_section tab_title='Product Photography' vertical_align='middle' icon_select='icon_top' icon='ue80f' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-e94tc2']
    
    [av_three_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='' mobile_display='' av_uid='av-e4rdwa']
    
    [av_heading tag='h1' padding='0' heading='Photography' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-dywjma'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-drfolu']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-dmdbsi']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [/av_three_fifth][av_two_fifth 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='' mobile_display='' av_uid='av-dfnwfm']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-5-845x684.jpg' attachment='354' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-dd63eq'][/av_image]
    
    [/av_two_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='Amazing Support' vertical_align='middle' icon_select='icon_top' icon='ue8b9' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-d3pdz6']
    
    [av_two_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='' mobile_display='' av_uid='av-cz9zju']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-1-845x684.jpg' attachment='350' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-crt282'][/av_image]
    
    [/av_two_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='' mobile_display='' av_uid='av-cpgqqa']
    
    [av_heading tag='h1' padding='0' heading='Amazing Support' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-cih7y2'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-cbkzzm']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-c7alci']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    [/av_textblock]
    
    [/av_three_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='Professional Web Design' vertical_align='middle' icon_select='icon_top' icon='ue8ab' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-bxv0t6']
    
    [av_three_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='' mobile_display='' av_uid='av-bv5clu']
    
    [av_heading tag='h1' padding='0' heading='Web Design' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-bopqn6'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-bfptdm']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-bcarle']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [/av_three_fifth][av_two_fifth 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='' mobile_display='' av_uid='av-b58fqa']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-3-845x684.jpg' attachment='352' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-aye57u'][/av_image]
    
    [/av_two_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='Project Planing' vertical_align='middle' icon_select='icon_top' icon='ue84b' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-audymq']
    
    [av_two_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='' mobile_display='' av_uid='av-aoipoy']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-4-845x684.jpg' attachment='353' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-ajeasy'][/av_image]
    
    [/av_two_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='' mobile_display='' av_uid='av-aauvoa']
    
    [av_heading tag='h1' padding='0' heading='Planing' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-a4n7z6'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-a0i8ju']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-9s8mte']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_textblock]
    
    [/av_three_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='SEO Basic Optimization' vertical_align='middle' icon_select='icon_top' icon='ue803' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-9nmtoi']
    
    [av_three_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='' mobile_display='' av_uid='av-9krmei']
    
    [av_heading tag='h1' padding='0' heading='Search Engine Optimization' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-9bwzq2'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-x7yii']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-8zg0wy']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [/av_three_fifth][av_two_fifth 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='' mobile_display='' av_uid='av-8tpgyi']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-5-845x684.jpg' attachment='354' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-8pml5e'][/av_image]
    
    [/av_two_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='Reliable Print Design' vertical_align='middle' icon_select='icon_top' icon='ue838' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-8imp8y']
    
    [av_two_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='' mobile_display='' av_uid='av-8bl1ay']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-6-845x684.jpg' attachment='355' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-86kya2'][/av_image]
    
    [/av_two_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='' mobile_display='' av_uid='av-82lvte']
    
    [av_heading tag='h1' padding='0' heading='Print Design' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-7wao16'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-7mwtzu']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-7jowdu']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    [/av_textblock]
    
    [/av_three_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='Cloud Service' vertical_align='middle' icon_select='icon_top' icon='ue82f' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-7es4yi']
    
    [av_two_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='' mobile_display='' av_uid='av-76e1yi']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-1-845x684.jpg' attachment='350' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-72up2y'][/av_image]
    
    [/av_two_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='' mobile_display='' av_uid='av-6w94m2']
    
    [av_heading tag='h1' padding='0' heading='Cloud Service Setup' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-6oi5ei'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-6km0ne']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-6bbct6']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    [/av_textblock]
    
    [/av_three_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='PHP Development' vertical_align='middle' icon_select='icon_top' icon='ue855' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-68g1oa']
    
    [av_three_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='' mobile_display='' av_uid='av-lthia']
    
    [av_heading tag='h1' padding='0' heading='PHP Development' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-5ts3i2'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-5ro80q']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-5kjlle']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [/av_three_fifth][av_two_fifth 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='' mobile_display='' av_uid='av-5gcyr6']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-3-845x684.jpg' attachment='352' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-576glu'][/av_image]
    
    [/av_two_fifth][/av_tab_sub_section][av_tab_sub_section tab_title='Social Media Setup' vertical_align='middle' icon_select='icon_top' icon='ue8f1' font='entypo-fontello' tab_image='' tab_image_style='' color='#35383c' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-50ivlu']
    
    [av_two_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='' mobile_display='' av_uid='av-4vesai']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/features-4-845x684.jpg' attachment='353' attachment_size='gallery' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-4nsxhu'][/av_image]
    
    [/av_two_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='' mobile_display='' av_uid='av-g94jm']
    
    [av_heading tag='h1' padding='0' heading='Social Media Managment' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-4ci24a'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-47moui']
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-3zhtmy']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla <strong>consequat</strong> massa quis enim.
    
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. <strong>Nullam</strong> dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_textblock]
    
    [/av_three_fifth][/av_tab_sub_section][/av_tab_section][av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' 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_uid='av-3vjl9m']
    [av_one_half first 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='' mobile_display='' av_uid='av-3pe0ey']
    
    [av_heading heading='Our Workflow...' tag='h2' style='blockquote modern-quote' size='40' subheading_active='' subheading_size='15' padding='0' color='' custom_font='' admin_preview_bg='' av_uid='av-3mibe2'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='10px' custom_margin_bottom='10px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-3f04je']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='' av_uid='av-39i6rm']
    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.
    
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_textblock]
    
    [/av_one_half][av_one_half 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='' mobile_display='' av_uid='av-31o2wi']
    
    [av_heading heading='What you need to provide...' tag='h2' style='blockquote modern-quote' size='40' subheading_active='' subheading_size='15' padding='0' color='' custom_font='' admin_preview_bg='' av_uid='av-2uusnm'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='10px' custom_margin_bottom='10px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-2szhte']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='' av_uid='av-2jn5si']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    
    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_textblock]
    
    [/av_one_half]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-news-alt.jpg' attachment='1057' attachment_size='full' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-2gjbk2']
    [av_one_fifth first 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='' mobile_display='' av_uid='av-26ybsy']
    
    [/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='' mobile_display='' av_uid='av-238a6q']
    
    [av_heading heading='Lorem ipsum dolor...' tag='h2' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='20' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-1udvzu'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-1t6no2']
    <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis disies nec, pellentesque eu, pretium quis, sem.</p>
    [/av_textblock]
    
    [/av_three_fifth][av_one_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='' mobile_display='' av_uid='av-1lbuca']
    
    [/av_one_fifth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='#f8f8f8' 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_element_hidden_in_editor='0' av_uid='av-1eqt5u']
    [av_heading tag='h2' padding='0' heading='What others say about us...' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av_uid='av-18etlm'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='50px' custom_margin_bottom='50px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(255, 255, 255)' av_uid='av-119rqq']
    
    [av_testimonials style='grid' columns='2' interval='5' font_color='' admin_preview_bg='' av_uid='av-xd3p6']
    [av_testimonial_single src='1961' name='Martha M. Masters' subtitle='Marketing' link='http://www.wikipedia.com' linktext='WikiTravel' av_uid='av-sj97m']
    Nulla consequat massa quis enim. Donec pede justo, frinnec, vulputate eget, arcu. In enim juerdiet a, venenatis vitae, justo.
    [/av_testimonial_single]
    [av_testimonial_single src='1959' name='Anna Vandana' subtitle='CEO' link='http://www.wikipedia.com' linktext='Media Wiki' av_uid='av-k4q0a']
    In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_testimonial_single]
    [av_testimonial_single src='1960' name='Maxi Milli' subtitle='Public Relations' link='http://www.wikipedia.com' linktext='Max Mobilcom' av_uid='av-gpbvm']
    Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.
    [/av_testimonial_single]
    [av_testimonial_single src='1958' name='Dr. Dosist' subtitle='Dean of Medicine' link='http://www.wikipedia.com' linktext='Doom Inc' av_uid='av-864gq']
    In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_testimonial_single]
    [/av_testimonials]
    [/av_section]
    

    Best regards,
    Rikard

    #1426757

    Hi,

    Thank you for the update.

    The OAuth Personal Token could not be verified. Please check that the Token has been entered correctly and has the minimum required permissions.

    The error above indicates that the token lacks the required permissions. Did you review the necessary permissions for the token?

    // https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token

    Please generate another token and make sure that it has the following permissions.

    – View and search Envato sites (checked by default) (Required)
    – View the user’s Envato Account username
    – View the user’s email address
    – View the user’s account profile details
    – Download the user’s purchased items (Required)
    – Verify purchases of the user’s items
    – List purchases the user has made (Required)

    Best regards,
    Ismael

    #1426494

    In reply to: I give up

    Hey daves1997,
    It sounds like you first created a page using the Enfold Advanced Layout Builder (ALB) and then “switched” to the Gutenberg builder, please note that this will cause trouble, they don’t work together like that. So if you want to use the Gutenberg please only use it and then add your own spacing and blocks in the Gutenberg editor, and note that the Enfold ALB spcacing will not be applied. If you want to use Gutenberg try searching on YouTube for how to add spacing and adjust the layout the way you want. I tried using Gutenberg on my test site but found it so difficult that I won’t use it, I disabled it at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor, the Classic Editor is much easier to use.

    Best regards,
    Mike

    #1426420

    In reply to: Enfold Update

    This reply has been marked as private.
    #1426378

    Hi,

    Thank you for the update.

    Did you remove the above screenshot? How did you create the custom post type? If you register the CPT manually, make sure that the post type name is wrapped in the following functions so that they can be translated to other languages.

    // https://developer.wordpress.org/reference/functions/_x/
    // https://developer.wordpress.org/reference/functions/__/

    You can find the label examples for the Portfolio post type in the /enfold/includes/admin/register-portfolio.php file around line 11.

    $labels = array(
    					'name'				=> _x( 'Portfolio Items', 'post type general name','avia_framework' ),
    					'singular_name'		=> _x( 'Portfolio Entry', 'post type singular name','avia_framework' ),
    					'add_new'			=> _x( 'Add New', 'portfolio', 'avia_framework' ),
    					'add_new_item'		=> __( 'Add New Portfolio Entry', 'avia_framework' ),
    					'edit_item'			=> __( 'Edit Portfolio Entry', 'avia_framework' ),
    					'new_item'			=> __( 'New Portfolio Entry', 'avia_framework' ),
    					'view_item'			=> __( 'View Portfolio Entry', 'avia_framework' ),
    					'search_items'		=> __( 'Search Portfolio Entries', 'avia_framework' ),
    					'not_found'			=>  __( 'No Portfolio Entries found', 'avia_framework' ),
    					'not_found_in_trash' => __( 'No Portfolio Entries found in Trash', 'avia_framework' ),
    					'parent_item_colon'	=> ''
    				);
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The function avia_which_archive, responsible for rendering the search count, is located in the enfold/framework/php/function-set-avia-frontend.php file. You can either override this function directly or utilize the avf_which_archive_output filter to modify the breadcrumb title on the search results page.

    Example:

    add_filter('avf_which_archive_output','avf_which_archive_output_mod', 10, 3);
    function avf_which_archive_output_mod($output)
    {
    	if(is_search()){
                $output = __( 'Search results for:', 'avia_framework') . ' ' . esc_attr( get_search_query() );
            } 
    	return $output;
    }
    

    Best regards,
    Ismael

    #1426238

    Hey Roland Gienger,

    Thank you for your interests in the theme.

    1.) Replacing Thrive with Enfold should be possible. Enfold is a versatile WordPress theme; although it lacks a native opt-in form feature, there are multiple ways to implement one, similar to Thrive Leads. Enfold is also compatible with Mailchimp, one of the most popular platforms for email marketing services. It is advisable to review the Enfold documentation or seek guidance from a third-party developer for specific information about adding features and external services to the theme. The desired functionality should be achievable, but it will definitely require some adjustments and modifications to the theme. If you require more comprehensive assistance, you can find freelancers who specialize in theme customization by visiting our customization page.

    2.) Aside from the documentation, there are various resources for Enfold tutorials, including potentially on platforms like YouTube. You can search for “Enfold WordPress Tutorial” or “Ferdy Korpershoek enfold theme” to find video guides and courses that can help you better understand and use Enfold. We recommend visiting Ferdy Korpershoek channel. Please check the link below.

    // https://www.youtube.com/watch?v=tpMof6O1QNw
    // https://www.youtube.com/@ferdykorpershoek

    If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

    Hey Thomas,

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

    .search-results .extra-mini-title {
      display: none; 
    }

    Best regards,
    Rikard

    #1425841

    To add – It doesnt matter whether you use the Super Speedy Search widgets or the built in Enfold search or the woocommerce search widget.

    All of them have the same behaviour.

    Something in Enfold is overriding the search results page generation process – Stopping &post_type=product from picking up the correct search results.

    #1425836
    thinkjarvis
    Participant

    Hi guys,

    I have implimented Super Speedy Search by WPIntense on the site in the private comments.

    It is set to product search only and to override the search results page.

    The search results generated by AJAX are correct but it appears a setting in Enfold loop-search.php or search.php is preventing the plugin showing the correct results.

    I had the same issue with Relevanssi.

Viewing 30 results - 331 through 360 (of 7,502 total)