Viewing 30 results - 1 through 30 (of 50 total)
  • Author
    Search Results
  • #1429582

    Thank you, Mike, for the work you are doing to help us. Two questions.

    1) In your earlier comments, you recommended that we turn off Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files. Have you done that on our site or should we still do that?

    2) Regarding the errors you found in other elements, our practice generally is to create new pages by opening a new draft of an existing page. Do we do better by creating new pages and adding in templated elements? Or would those templated elements carry with them the errors you spotted?

    Best regards,

    Cliff

    #1406029
    tedfinch
    Participant

    The button to submit a review in WooCommerce does not show up. I had a problem with the stars not showing up in the reviews, and it turned out to be a problem with Enfold–which you fixed on my site and later included the fix in the subsequent Enfold update. The button has been there before (over 70 reviews posted), but it is gone.

    Here is an example. Go to this page: https://chanimaluniversity.com/product/certified-channel-manager-ccm/
    click on the Reviews tab. and you’ll see comments, but the “Submit Review” button that used to be there is gone. All the settings are correct, it worked before, but after an Enfold update the button is gone. BTW, you can see the stars are back (thank you), but the alignment is off–but I can live with that.

    I’ll post a login to the live site so you can investigate.Thanks.

    • This topic was modified 1 year, 11 months ago by tedfinch.
    #1398724

    In reply to: Blog posts 3 questions

    Hey tom_on_wheels,

    Thank you for the inquiry.

    1.) These elements will only be enabled or will only be visible in the single post page. If you want to adjust grid layout, you have to modify the shortcode templates in the enfold\config-templatebuilder\avia-shortcodes\postslider file directly.

    2.) Since you are using the Advance Layout Builder (ALB) for the post, you have to add the Comments element manually in the builder or the editor in order to display the discussions and the comment form.

    3.) You can add this filter in the functions.php file to adjust the layout of the archive or category pages.

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
    function avia_change_category_blog_layout($layout, $context){
       if($context == 'archive') $layout = 'blog-grid';
       return $layout;
    }
    

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Thanks Ismael.
    I’ve tested the above code and nothing really changed for me. I’ve also tried to disable File Compression (both css, javascript) but no change.

    1. This gives lot of empty space between these two widgets which is not proper
    2. The default comments text is too big. See image:

    Also if possible I would like to not turn off any performance options in favor of this or install additional plugins.

    The default wordpres widget should support this nicely https://wordpress.com/support/widgets/recent-comments-widget/ Is there way how to overwrite the one Enfold has? I’m not sure why Enfold would choose to not use this default wordpres widget when it has much better options.

    #1327290

    Hi,
    thanks but there is no if(isset($avia_config[‘use_child_theme_functions_only’])) return; in the functions.php file.

    Se all the code below:
    <?php

    /**
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    *
    * Remove the comments before or around the sample functions and code to use theme.
    * @link http://kriesi.at/documentation/enfold/using-a-child-theme/
    */

    /**
    * Add filter to add or replace Enfold ALB shortcodes with new folder contents
    *
    * Note that the shortcodes must be in the same format as those in
    * enfold/config-templatebuilder/avia-shortcodes
    *
    * @link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
    */

    add_filter(‘avia_load_shortcodes’, ‘avia_include_shortcode_template’, 15, 1);
    function avia_include_shortcode_template($paths)
    {
    $template_url = get_stylesheet_directory();
    array_unshift($paths, $template_url.’/shortcodes/’);

    return $paths;
    }

    /**
    * Turn on Custom CSS Class field for all Avia Layout Builder elements
    * @link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    */
    //add_theme_support(‘avia_template_builder_custom_css’);

    /**
    * Remove the Import dummy data button from theme options
    * @link http://kriesi.at/documentation/enfold/remove-the-import-dummy-data-button/
    */
    //add_theme_support(‘avia_disable_dummy_import’);

    /**
    * Enable Avia Layout Builder Debug
    * @link http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    */
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug() {
    return “debug”;
    }

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter(“kriesi_backlink”,”new_nolink”);
    function new_nolink(){
    $kriesi_at_backlink = “”;
    return $kriesi_at_backlink;
    }

    add_filter( ‘avf_modify_thumb_size’, ‘enfold_customization_modify_thumb_size’, 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size[‘masonry’] = array(‘width’=>1500, ‘height’=>250);
    $size[‘entry_without_sidebar’] = array(‘width’=>1210, ‘height’=>1210 , ‘crop’ => false);
    return $size;
    }

    function av_title_sc( ){
    $output = “<h1 class=’page-title’>”. get_the_title() .”</h1>”;
    return $output;
    }
    add_shortcode( ‘av_page_title’, ‘av_title_sc’ );

    function av_author_sc(){
    $current_user = wp_get_current_user();
    $output = “<h6 class=’ra-author’>AN ARTICLE BY ” . $current_user->user_firstname . “</h6>”;
    return $output;
    }
    add_shortcode(‘av_author’,’av_author_sc’);

    function av_excerpt( ){
    $excerpt = get_the_excerpt( $post );
    $output = “<span class=’related-excerpt’>”.$excerpt.”</span>”;
    return $output;
    }
    add_shortcode( ‘av_post_exc’, ‘av_excerpt’ );

    function avia_post_created(){
    $output = “<span class=’post-date’>”. get_the_date( $format, $post_id ) .”</span>”;
    return $output;
    }
    add_shortcode( ‘avia_created’, ‘avia_post_created’ );

    add_action( ‘after_setup_theme’, ‘ava_enfold_builder_layout_mod’ );
    function ava_enfold_builder_layout_mod(){
    add_filter(‘avf_builder_elements’, ‘avf_enfold_builder_layout_settings_mod’);
    }

    function avf_enfold_builder_layout_settings_mod($elements)
    {
    $counter = 0;
    foreach($elements as $element)
    {

    // Layout > Header visibility and transparency
    if($element[‘id’] == ‘header_transparency’) {
    /**
    *
    * Available Options
    * No transparency =
    * Transparent Header = ‘header_transparent’
    * Transparent Header with border = ‘header_transparent header_with_border’
    * Transparent & Glassy Header = ‘header_transparent header_glassy ‘
    * Header is invisible and appears once the users scrolls down = ‘header_transparent header_scrolldown ‘
    * Hide Header on this page = ‘header_transparent header_hidden ‘
    * MOD: Set the Layout > Header visibility and transparency settings to “Hide both”Header is invisible and appears once the users scrolls down”
    *
    **/
    $elements[$counter][‘std’] = ‘header_transparent’;
    }

    $counter++;
    }
    return $elements;
    }

    function av_single_fo(){
    ?>
    <script>
    var header = jQuery(“.single-post #main .avia-section .content”);
    jQuery(window).scroll(function() {
    var scroll = jQuery(window).scrollTop();

    if (scroll >= 250) {
    header.addClass(“single-header”);
    } else {
    header.removeClass(“single-header”);
    }
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘av_single_fo’);

    add_filter( ‘style_loader_src’, ‘t5_remove_version’ );
    add_filter( ‘script_loader_src’, ‘t5_remove_version’ );

    function t5_remove_version( $url )
    {
    return remove_query_arg( ‘ver’, $url );
    }

    function raboff_custom_checkbox(){
    ?>
    <script>

    jQuery(window).load(function(){
    jQuery(‘h2.avia-caption-title’).after(‘<p class=”close-caption”> </p>’);
    jQuery( “.close-caption”).click(function() {
    var closeTheCap = jQuery(this).closest(“.slideshow_align_caption”);
    closeTheCap.hide(“slow”);
    });
    });

    jQuery(window).scroll(function(){
    var numberNotChecked = jQuery(‘fieldset.alacarte-form input:checkbox:not(“:checked”)’).length;
    console.log(numberNotChecked, “Hello, world!”);

    if (numberNotChecked >= 16) {
    jQuery(“.one-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.one-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 15 && numberNotChecked >= 8 ) {
    jQuery(“.two-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.two-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 7 ) {
    jQuery(“.three-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.three-day”).removeClass(“p-highlight”);
    }

    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘raboff_custom_checkbox’);

    function avia_add_custom_social_icon($icons) {
    $icons[‘Turning Torso’] = ‘turning_torso’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    #1261204
    jeanejones
    Participant

    Visitors to my blog were suddenly unable to leave comments on pages created with ALB using the Enfold theme. When they clicked “Post Comment,” their text disappeared. I was able to replicate the problem. However, the issue was intermittent and did not affect all visitors. It appears to have cleared up when I turned off the Jetpack option to allow people to comment using a social media profile. (Thanks for a wonderful, versatile theme!)

    #1248282
    npmcgrew
    Participant

    Hello,

    I currently have our gravatars turned off as most of our users do not have a gravatar associated with their account. That said, I was wondering if there is any way to add your own default user icon/gravatar for the sake of reviews and comments on the website with Enfold?

    Also, if there are any good plugins or demos that you would recommend for better highlighting user reviews, I would appreciate any input regarding that as well.

    Thank you!

    #1243138
    hylandgraphics
    Participant

    Hello,

    I recently updated to the newest version of enfold. Since that update there is a problem in the header of my site. I have a transparent header that turns into a sticky/shrinking header upon scroll. Suddenly the logo is now misaligned and being cut off as soon as the sticky header appears. Can you tell me how to get this fixed ASAP please? Link to site in private comments. Thanks!

    tedfinch
    Participant

    This continues the discussion that was started by another customer here: https://kriesi.at/support/topic/learndash-quiz-results-display-issue-2-0/#post-1230927

    Here are my original comments so we can add onto them:

    I have an identical problem with LearnDash and Enfold and I also get a crash with the code you provided above when I put it in my functions.php file. Only my error says, “There has been a critical error on your website.” (English–not translated from German as RawoAT stated his was).

    I do not have his code which you describe above in my functions.php file–so I do not think that is the reason for the crash. So it may be the code you supplied that is crashing.

    (BTW, the code he shows looks like it is to increase the default memory and goes in your PHP-config file to increase the memory size as per comments from LearnDash (WordPress default is 40mb, but it needs to be 128mb or higher if you use LearnDash and WooCommerce together).

    An interesting thing happens when your code is installed. After a quiz, LearnDash has a progress bar as it is calculating the quiz results–then it displays the quiz results and the ability to re-take, move on, etc. WHEN it is working correctly. When it is not working, it freezes about 90% through–that is the problem (I can’t continue). BTW, it works fine for about 2 – 3 quizzes in a row and THEN it freezes. So you must continue that way

    When I added your code, the test shows the results immediately and allows me to continue–but the progress bar still freezes at about 90% (again, you have to take 2 – 3 quizzes in a row before this happens (seems to work fine the first few times). Because the bar freezes–it may show the test score and display the buttons, but it may have not have written the results to the database. So it appears to work fine for 2 – 3 more quizzes and then it crashes and gives the “there has been a critical error on your website” error.

    BTW, this is only the behavior when you are logged in as a USER. I did not have the same results when I was logged in as an Administrator. In fact, I had the problem as an Admin and thought it would be the same as a USER. However, my problem as an administrator was resolved with an earlier fix in this forum. All I had to do was add the function,

    dd.course_progress {
    width: 100%;
    }

    I added this code to the theme’s “Quick CSS” section. When I did EVERYTHING worked fine for the ADMIN.

    But logging in as a user gave me the same problem–and your code fixed it (sort of), but then crashed the site.

    BTW, the support team at LearnDash worked on this off and on for several times (logging into my site). We turned all the plug-ins off but LearnDash and WooCommerce. They then used another theme and everything worked flawlessly. They tried a second basic free WordPress theme and everything worked flawlessly.

    So it was definitely something with Enfold. I also turned off the performance features, all cache is turned off, all plugins were turned off except WooCommerce (required) and LearnDash–and it was something in the theme. This ONLY happens when both of these two high-resource plugins are working–but they work together on THOUSANDS of sites just fine–so again, back to the Enfold theme.

    I have been struggling with this for over a month! I just continued adding my content, but now I am at an impass–if I want to keep the Enfold theme. I’m not using a child theme because I have never had a problem with Enfold enough to have to modify any of the original files–but I was willing to set it up if this fix worked (but it didn’t)–but I’m fine if we install it.

    I still have the QuickCSS code installed:
    dd.course_progress {
    width: 100%;
    }

    I have included login, etc. credentials in the private content below. Please document any changes if you make any..

    #1230821

    I have an identical problem with LearnDash and Enfold and I also get a crash with the code you provided above when I put it in my functions.php file. Only my error says, “There has been a critical error on your website.” (English–not translated from German as RawoAT stated his was).

    I do not have his code which you describe above in my functions.php file–so I do not think that is the reason for the crash. So it may be the code you supplied that is crashing.

    (BTW, the code he shows looks like it is to increase the default memory and goes in your PHP-config file to increase the memory size as per comments from LearnDash (WordPress default is 40mb, but it needs to be 128mb or higher if you use LearnDash and WooCommerce together).

    An interesting thing happens when your code is installed. After a quiz, LearnDash has a progress bar as it is calculating the quiz results–then it displays the quiz results and the ability to re-take, move on, etc. WHEN it is working correctly. When it is not working, it freezes about 90% through–that is the problem (I can’t continue). BTW, it works fine for about 2 – 3 quizzes in a row and THEN it freezes. So you must continue that way

    When I added your code, the test shows the results immediately and allows me to continue–but the progress bar still freezes at about 90% (again, you have to take 2 – 3 quizzes in a row before this happens (seems to work fine the first few times). Because the bar freezes–it may show the test score and display the buttons, but it may have not have written the results to the database. So it appears to work fine for 2 – 3 more quizzes and then it crashes and gives the “there has been a critical error on your website” error.

    BTW, this is only the behavior when you are logged in as a USER. I did not have the same results when I was logged in as an Administrator. In fact, I had the problem as an Admin and thought it would be the same as a USER. However, my problem as an administrator was resolved with an earlier fix in this forum. All I had to do was add the function,

    dd.course_progress {
    width: 100%;
    }

    I added this code to the theme’s “Quick CSS” section. When I did EVERYTHING worked fine for the ADMIN.

    But logging in as a user gave me the same problem–and your code fixed it (sort of), but then crashed the site.

    BTW, the support team at LearnDash worked on this off and on for several times (logging into my site). We turned all the plug-ins off but LearnDash and WooCommerce. They then used another theme and everything worked flawlessly. They tried a second basic free WordPress theme and everything worked flawlessly.

    So it was definitely something with Enfold. I also turned off the performance features, all cache is turned off, all plugins were turned off except WooCommerce (required) and LearnDash–and it was something in the theme. This ONLY happens when both of these two high-resource plugins are working–but they work together on THOUSANDS of sites just fine–so again, back to the Enfold theme.

    I have been struggling with this for over a month! I just continued adding my content, but now I am at an impass–if I want to keep the Enfold theme. I’m not using a child theme because I have never had a problem with Enfold enough to have to modify any of the original files–but I was willing to set it up if this fix worked (but it didn’t)–but I’m fine if we install it.

    I still have the QuickCSS code installed:
    dd.course_progress {
    width: 100%;
    }

    I have included login, etc. credentials in the private content below. Please document any changes.

    #1219116

    Hi Ismael,

    Seems like I took a step forward: They are caused by the webapplication firewall which is included in Plesk (Atomic Secured Linux by Atomicorp – https://atomicorp.com/atomic-secured-linux-now-available-plesk-users/). When I turn this firewall off both Third-Party-Requests as well as one cookie are deactivated.

    My hoster told me that it seems that this happens on Plesk with all WordPress installations (but e.g. not with Joomla installations).

    I have contacted Atomicorp in order to find out what these Third-Party-Requests as well as the cookie are doing. But I was just told that I will have either pay 225$ for a one-year-support-license or have to pay 150$ per hour as such questions are not covered under my license (which is the Plesk license as the software if delivered with Plesk).

    If there is anybody out there with such a license who would be willing to ask this question for me I would really be happy. Turning off a firewall probably is not a good idea. But accepting Third-Party-Requests and Cookies of which you do not know what they are doing might not be a good idea in Europe in times of GDPR either.

    But to make a long story short: This is not an Enfold issue. I’d appreciate if you could leave the ticket open for comments anyhow in case there is somebody who could help me with this Atomicorp ticket. But no action necessary from your side.

    Thank you!!!!

    Best regards…

    #1155092
    domainarchitect
    Participant

    Recently, the edit pages feature stopped working. To troubleshoot, I applied a default theme and it worked. I restored the enfold theme and turned off all the plugins and I still had a white screen. I am including login details in the private comments. Any assistance would be greatly appreciated. Thank you!

    #1101066

    Topic: Masonry Subtitles

    in forum Enfold
    Office_SP
    Participant

    Dear community and support

    I have extensive Masonry Galleries on our Website and would like to use my comments when displaying the gallery both in the overview as well as in the Lightbox.

    For this, I have manually added comments, directly underneath the pictures in the Masonry editor. These comments are additional to the file title as per upload into the media center (which seem to be used as standard for this purpose).

    Current behavior (Desktop) is:
    – On MOUSE STILL: “Tooltip” showing the file name as per media center upload (imported as “Title” into the Masonry Gallery)
    – On MOUSE OVER: Comment (as defined underneath the picture when editing the Masonry Gallery) appearing underneath the picture
    Current behavior (Mobile, Portrait) is:
    – On OPENING the Gallery: Comment appearing underneath picture (and sometimes hiding most of the picture unfortunately)

    Intended behavior (Desktop) would be:
    – On MOUSE STILL: “Tooltip” showing the COMMENT (as defined when editing the Masonry Gallery) instead of the title
    – On MOUSE OVER: Nothing (I know, I can just de-activate the comments/title in the Masonry Options)
    – On OPENING THE LIGHTBOX: Showing the COMMENT instead of the title

    Questions:
    1) How do I make sure my manually added comments (subtitles) are visible as “Tooltip” when hovering over the picture? I used to add some code in the functions.php file to fix this but it doesn’t work any more with the current Enfold version
    2) How can I make sure the COMMENT appears when opening the Lightbox of a picture (instead of the ‘title’)
    3) (How) is it possible to turn off masonry gallery comments (subtitles) in the mobile view? My comments (subtitles) relate to artworks and are quite extensive. Hence, they hide almost every picture in the mobile view (e.g. mobile portrait view) if they are activated.

    Thanks for your help
    Samuel

    #1022977

    Aha, ok, sorry here comes the functions.php file
    <?php

    /**
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    *
    * Remove the comments before or around the sample functions and code to use theme.
    * @link http://kriesi.at/documentation/enfold/using-a-child-theme/
    */

    /**
    * Add filter to add or replace Enfold ALB shortcodes with new folder contents
    *
    * Note that the shortcodes must be in the same format as those in
    * enfold/config-templatebuilder/avia-shortcodes
    *
    * @link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
    */

    add_filter(‘avia_load_shortcodes’, ‘avia_include_shortcode_template’, 15, 1);
    function avia_include_shortcode_template($paths)
    {
    $template_url = get_stylesheet_directory();
    array_unshift($paths, $template_url.’/shortcodes/’);

    return $paths;
    }

    /**
    * Turn on Custom CSS Class field for all Avia Layout Builder elements
    * @link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    */
    //add_theme_support(‘avia_template_builder_custom_css’);

    /**
    * Remove the Import dummy data button from theme options
    * @link http://kriesi.at/documentation/enfold/remove-the-import-dummy-data-button/
    */
    //add_theme_support(‘avia_disable_dummy_import’);

    /**
    * Enable Avia Layout Builder Debug
    * @link http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    */
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug() {
    return “debug”;
    }

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter(“kriesi_backlink”,”new_nolink”);
    function new_nolink(){
    $kriesi_at_backlink = “”;
    return $kriesi_at_backlink;
    }

    add_filter( ‘avf_modify_thumb_size’, ‘enfold_customization_modify_thumb_size’, 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size[‘masonry’] = array(‘width’=>1500, ‘height’=>250);
    $size[‘entry_without_sidebar’] = array(‘width’=>1210, ‘height’=>1210 , ‘crop’ => false);
    return $size;
    }

    function av_title_sc( ){
    $output = “<h1 class=’page-title’>”. get_the_title() .”</h1>”;
    return $output;
    }
    add_shortcode( ‘av_page_title’, ‘av_title_sc’ );

    function av_author_sc(){
    $current_user = wp_get_current_user();
    $output = “<h6 class=’ra-author’>AN ARTICLE BY ” . $current_user->user_firstname . “</h6>”;
    return $output;
    }
    add_shortcode(‘av_author’,’av_author_sc’);

    function av_excerpt( ){
    $excerpt = get_the_excerpt( $post );
    $output = “<span class=’related-excerpt’>”.$excerpt.”</span>”;
    return $output;
    }
    add_shortcode( ‘av_post_exc’, ‘av_excerpt’ );

    function avia_post_created(){
    $output = “<span class=’post-date’>”. get_the_date( $format, $post_id ) .”</span>”;
    return $output;
    }
    add_shortcode( ‘avia_created’, ‘avia_post_created’ );

    add_action( ‘after_setup_theme’, ‘ava_enfold_builder_layout_mod’ );
    function ava_enfold_builder_layout_mod(){
    add_filter(‘avf_builder_elements’, ‘avf_enfold_builder_layout_settings_mod’);
    }

    function avf_enfold_builder_layout_settings_mod($elements)
    {
    $counter = 0;
    foreach($elements as $element)
    {

    // Layout > Header visibility and transparency
    if($element[‘id’] == ‘header_transparency’) {
    /**
    *
    * Available Options
    * No transparency =
    * Transparent Header = ‘header_transparent’
    * Transparent Header with border = ‘header_transparent header_with_border’
    * Transparent & Glassy Header = ‘header_transparent header_glassy ‘
    * Header is invisible and appears once the users scrolls down = ‘header_transparent header_scrolldown ‘
    * Hide Header on this page = ‘header_transparent header_hidden ‘
    * MOD: Set the Layout > Header visibility and transparency settings to “Hide both”Header is invisible and appears once the users scrolls down”
    *
    **/
    $elements[$counter][‘std’] = ‘header_transparent’;
    }

    $counter++;
    }
    return $elements;
    }

    function av_single_fo(){
    ?>
    <script>
    var header = jQuery(“.single-post #main .avia-section .content”);
    jQuery(window).scroll(function() {
    var scroll = jQuery(window).scrollTop();

    if (scroll >= 250) {
    header.addClass(“single-header”);
    } else {
    header.removeClass(“single-header”);
    }
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘av_single_fo’);

    add_filter( ‘style_loader_src’, ‘t5_remove_version’ );
    add_filter( ‘script_loader_src’, ‘t5_remove_version’ );

    function t5_remove_version( $url )
    {
    return remove_query_arg( ‘ver’, $url );
    }

    function raboff_custom_checkbox(){
    ?>
    <script>

    jQuery(window).load(function(){
    jQuery(‘h2.avia-caption-title’).after(‘<p class=”close-caption”> </p>’);
    jQuery( “.close-caption”).click(function() {
    var closeTheCap = jQuery(this).closest(“.slideshow_align_caption”);
    closeTheCap.hide(“slow”);
    });
    });

    jQuery(window).scroll(function(){
    var numberNotChecked = jQuery(‘fieldset.alacarte-form input:checkbox:not(“:checked”)’).length;
    console.log(numberNotChecked, “Hello, world!”);

    if (numberNotChecked >= 16) {
    jQuery(“.one-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.one-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 15 && numberNotChecked >= 8 ) {
    jQuery(“.two-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.two-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 7 ) {
    jQuery(“.three-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.three-day”).removeClass(“p-highlight”);
    }

    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘raboff_custom_checkbox’);

    function avia_add_custom_social_icon($icons) {
    $icons[‘Turning Torso’] = ‘turning_torso’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    #1016952

    Topic: Help required on html

    in forum Enfold
    bauchope
    Participant

    Morning,
    Yesterday I made the following site live for my client http://www.events-intelligence.com/
    He has now come back to me with a list of html queries that I really don’t understand. (see attached) I build WP website but I am not a developer which is why i love using Enfold for my sites.
    Could you help me sort out his requests? I have dealt with the “build site” issue but not surew about RSS and all the other queries.

    I look forward to hearing form you shortly
    Kim

    he has sent me this
    Can we delete the references to build site in the HTML header, tidy up the RSS (there is none), and delete the comments about theme (assume these are unnecessary, and provide attack vectors),

    Also why is there API access to the site (https://www.events-intelligence.com/wp-json/) spits back a JSON file

    Can you also delete the author/admin page – the API’s refer to an obsolete part of the site – e.g. if you issue a GET to the following URL https://www.events-intelligence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.events-intelligence.com%2F you get the following link back amongst all the other bumpf – https://www.events-intelligence.com/author/admin/. Please delete this and other unused pages.

    html as follows:

    <head>
    <meta charset=”UTF-8″>
    <meta name=”robots” content=”index, follow”>

    <!– mobile setting –>
    <meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>

    <!– Scripts/CSS and wp_head hook –>
    <title>A Build Site: Events Intelligence – Growing exhibitions through data</title>
    <link rel=”dns-prefetch” href=”//s.w.org”>
    <link rel=”alternate” type=”application/rss+xml” title=”A Build Site: Events Intelligence » Feed” href=”https://www.events-intelligence.com/feed/”&gt;
    <link rel=”alternate” type=”application/rss+xml” title=”A Build Site: Events Intelligence » Comments Feed” href=”https://www.events-intelligence.com/comments/feed/”&gt;
    <link rel=”alternate” type=”application/rss+xml” title=”A Build Site: Events Intelligence » Home Comments Feed” href=”https://www.events-intelligence.com/home-2/feed/”&gt;

    <!– google webfont font replacement –>

    <script type=”text/javascript” async=”” src=”https://www.google-analytics.com/analytics.js”></script><script type=”text/javascript”>
    if(!document.cookie.match(/aviaPrivacyGoogleWebfontsDisabled/)){
    (function() {
    var f = document.createElement(‘link’);

    f.type = ‘text/css’;
    f.rel = ‘stylesheet’;
    f.href = ‘//fonts.googleapis.com/css?family=Lato:300,400,700%7COswald’;
    f.id = ‘avia-google-webfont’;

    document.getElementsByTagName(‘head’)[0].appendChild(f);
    })();
    }
    </script><link type=”text/css” rel=”stylesheet” href=”//fonts.googleapis.com/css?family=Lato:300,400,700%7COswald” id=”avia-google-webfont”>
    <script type=”text/javascript”>
    window._wpemojiSettings = {“baseUrl”:”https:\/\/s.w.org\/images\/core\/emoji\/11\/72×72\/”,”ext”:”.png”,”svgUrl”:”https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/”,”svgExt”:”.svg”,”source”:{“concatemoji”:”https:\/\/www.events-intelligence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.9.8″}};
    !function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline=”top”,l.font=”600 32px Arial”,a){case”flag”:return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case”emoji”:return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement(“script”);c.src=a,c.defer=c.type=”text/javascript”,b.getElementsByTagName(“head”)[0].appendChild(c)}var g,h,i,j,k=b.createElement(“canvas”),l=k.getContext&&k.getContext(“2d”);for(j=Array(“flag”,”emoji”),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],”flag”!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener(“DOMContentLoaded”,h,!1),a.addEventListener(“load”,h,!1)):(a.attachEvent(“onload”,h),b.attachEvent(“onreadystatechange”,function(){“complete”===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
    </script><script src=”https://www.events-intelligence.com/wp-includes/js/wp-emoji-release.min.js?ver=4.9.8&#8243; type=”text/javascript” defer=””></script>
    <style type=”text/css”>
    img.wp-smiley,
    img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 .07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
    }
    </style>
    <link rel=”stylesheet” id=”avia-merged-styles-css” href=”https://www.events-intelligence.com/wp-content/uploads/dynamic_avia/avia-merged-styles-c14a0af1d687c05c1dcc32792cc2249f.css&#8221; type=”text/css” media=”all”>
    <script type=”text/javascript” src=”https://www.events-intelligence.com/wp-includes/js/jquery/jquery.js?ver=1.12.4″></script&gt;
    <script type=”text/javascript” src=”https://www.events-intelligence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1″></script&gt;
    <link rel=”https://api.w.org/&#8221; href=”https://www.events-intelligence.com/wp-json/”&gt;
    <link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”https://www.events-intelligence.com/xmlrpc.php?rsd”&gt;
    <link rel=”wlwmanifest” type=”application/wlwmanifest+xml” href=”https://www.events-intelligence.com/wp-includes/wlwmanifest.xml”&gt;
    <meta name=”generator” content=”WordPress 4.9.8″>
    <link rel=”canonical” href=”https://www.events-intelligence.com/”&gt;
    <link rel=”shortlink” href=”https://www.events-intelligence.com/”&gt;
    <link rel=”alternate” type=”application/json+oembed” href=”https://www.events-intelligence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.events-intelligence.com%2F”&gt;
    <link rel=”alternate” type=”text/xml+oembed” href=”https://www.events-intelligence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.events-intelligence.com%2F&format=xml”&gt;
    <!– Global site tag (gtag.js) – Google Analytics –>
    <script async=”” src=”https://www.googletagmanager.com/gtag/js?id=UA-28528641-10″></script&gt;
    <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag(‘js’, new Date());

    gtag(‘config’, ‘UA-28528641-10′);
    </script><link rel=”profile” href=”http://gmpg.org/xfn/11″&gt;
    <link rel=”alternate” type=”application/rss+xml” title=”A Build Site: Events Intelligence RSS2 Feed” href=”https://www.events-intelligence.com/feed/”&gt;
    <link rel=”pingback” href=”https://www.events-intelligence.com/xmlrpc.php”&gt;
    <!–[if lt IE 9]><script src=”https://www.events-intelligence.com/wp-content/themes/enfold/js/html5shiv.js”></script>&lt;![endif]–>
    <link rel=”icon” href=”http://www.events-intelligence.com/wp-content/uploads/2018/09/ei-16×16.png&#8221; type=”image/png”>
    <style type=”text/css”>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>

    <!– To speed up the rendering and to display the site as fast as possible to the user we include some styles and scripts for above the fold content inline –>
    <script type=”text/javascript”>’use strict’;var avia_is_mobile=!1;if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)&&’ontouchstart’ in document.documentElement){avia_is_mobile=!0;document.documentElement.className+=’ avia_mobile ‘}
    else{document.documentElement.className+=’ avia_desktop ‘};document.documentElement.className+=’ js_active ‘;(function(){var e=[‘-webkit-‘,’-moz-‘,’-ms-‘,”],n=”;for(var t in e){if(e[t]+’transform’ in document.documentElement.style){document.documentElement.className+=’ avia_transform ‘;n=e[t]+’transform’};if(e[t]+’perspective’ in document.documentElement.style)document.documentElement.className+=’ avia_transform3d ‘};if(typeof document.getElementsByClassName==’function’&&typeof document.documentElement.getBoundingClientRect==’function’&&avia_is_mobile==!1){if(n&&window.innerHeight>0){setTimeout(function(){var e=0,o={},a=0,t=document.getElementsByClassName(‘av-parallax’),i=window.pageYOffset||document.documentElement.scrollTop;for(e=0;e<t.length;e++){t[e].style.top=’0px’;o=t[e].getBoundingClientRect();a=Math.ceil((window.innerHeight+i-o.top)*0.3);t[e].style[n]=’translate(0px, ‘+a+’px)’;t[e].style.top=’auto’;t[e].className+=’ enabled-parallax ‘}},50)}}})();</script><style type=”text/css”>
    @font-face {font-family: ‘entypo-fontello’; font-weight: normal; font-style: normal;
    src: url(‘https://www.events-intelligence.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot&#8217;);
    src: url(‘https://www.events-intelligence.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?#iefix&#8217;) format(’embedded-opentype’),
    url(‘https://www.events-intelligence.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff&#8217;) format(‘woff’),
    url(‘https://www.events-intelligence.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf&#8217;) format(‘truetype’),
    url(‘https://www.events-intelligence.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg#entypo-fontello&#8217;) format(‘svg’);
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont=’entypo-fontello’]:before{ font-family: ‘entypo-fontello’; }
    </style>

    <!–
    Debugging Info for Theme support:

    Theme: Enfold
    Version: 4.4.1
    Installed: enfold
    AviaFramework Version: 4.7
    AviaBuilder Version: 0.9.5
    aviaElementManager Version: 1.0.1
    ML:256-PU:42-PLA:5
    WP:4.9.8
    Compress: CSS:all theme files – JS:all theme files
    Updates: disabled
    PLAu:5
    –>
    </head>

    Munford
    Participant

    HI my site was down after I did a restore to a backup this morning. It got corrupted last night after I was trying out some code in the child theme
    I was seeing this:

    `Notice: Undefined variable: post in /www/wp-content/themes/enfold-child/functions.php on line 106 Notice: Trying to get property of non-object in /www/wp-content/themes/enfold-child/functions.php on line 106 Notice: Undefined variable: post in /www/wp-content/themes/enfold-child/functions.php on line 107 Notice: Trying to get property of non-object in /www/wp-content/themes/enfold-child/functions.php on line 107 Notice: Undefined variable: display_child_pages in /www/wp-content/themes/enfold-child/functions.php on line 108 Notice: Undefined variable: sidebar_menu in /www/wp-content/themes/enfold-child/functions.php on line 108 Notice: Undefined variable: children in /www/wp-content/themes/enfold-child/functions.php on line 110 Notice: The called constructor method for WP_Widget in WPAC_Nav_Menu_Widget is deprecated since version 4.3.0! Use
    __construct()
    instead. in /www/wp-includes/functions.php on line 3916

    Fatal error: Cannot redeclare av_countdown_events_fallback() (previously declared in /www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php:16) in /www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown.php on line 8`

    If I read that right, the error is in the child theme functions.php, correct?
    I see the code error is here in the file:

    /*==========MAGAZINE ELEMENT add excerpt under title al l===========*/
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_custom_fields', 1);
    function avf_portfolio_add_custom_fields($args) {
            $args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'custom-fields', 'page-attributes');
            return $args;
    }
    
    $default_sidebar = false;
    				$parent = get_the_title($post->post_parent);
    				$parentlink = get_the_permalink($post->post_parent);
                    $sidebar_menu .= "<nav class='widget widget_nav_menu $display_child_pages'><ul class='nested_nav'>";
    				$sidebar_menu .= "<h3 class='widgettitle'><a href='{$parentlink}'>$parent</a></h3>";
                    $sidebar_menu .= $children;
                    $sidebar_menu .= "</ul></nav>";
    
    add_filter('widget_text', 'do_shortcode');

    I’m not sure I need that code anymore since I think I edited the magazine.php which I have in my child theme to show the excerpts instead with this code that you gave me:

    if(empty($this->atts['thumbnails']))
    				{
    					 $image = "";
    					 $extraClass = "av-magazine-no-thumb";
    				}
    			}
    			
    		
    				$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');. 

    Also I have commented out the code and the excerpt are still showing fine (see page below). Not sure what to do there, if anything

    I reinstalled the theme and that seems to have fixed the error with the events-countdown.php file that was giving me that FATAL ERROR. When the debug was still on (it’s off now) I was getting these notices:

    Notice: Undefined index: index in /www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php on line 468 Notice: Undefined index: index in /www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php on line 471 Notice: Undefined index: index in /www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php on line 472

    Notice: Undefined index: index in /www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 421

    Should I do something about that those things? The site seems to be displaying OK now.
    thanks for your help

    Nancy

    • This topic was modified 6 years, 7 months ago by Munford.
    Bernd
    Participant

    Found a workaround so far, but some minor things left. Later I will open a new topic for that :-)

    I told Mike about the bunch of issues I have:
    Meanwhile I did a Word Press reset, deinstalled most of the plugins and turned the rest of the plugins off. Then I write 2 new posts. Nothing changes. Same issues as before :-(.
    (I moved the original Website to a lokal server)

    The following images are screenshots from the Webseite before I made a reset. But to explain the issues they are still good.

    As long as I only use the “Standard Editor” everything will displayed (like Category, Headline, Featured Image with copyright link (still in two lines), Comments, Tags, similar posts. In the grid as well as in the single post. I even dont have to fill some Text into the excerpt field.


    As soon as I save the single post only one time with the “Advanced Layout Editor” everything except the post text is gone in the single post. The grid seems to be okay but now I have to fill some Text into the excerpt field.


    The grid always shows 3 rows although i switched to 2 rows. And it shows 9 prieviews although i choosed 8 previews.

    If Sidebar Navigation is activated, the infos of the next post will displayed in the footer. But only if the post previously was edited with the “Advanced Layout Editor”. If I switch the sidebar of, there is no text in footer. But that isnt a final solution, isnt it?

    And another strange thing: If I activate enfold theme (or child theme) I get a red dot behind Plugins. But there is nothing to update. If i use the standard Template the dot disappears.

    Hopefuly awaiting your response

    Thank you in advance,
    Bernd

    • This topic was modified 6 years, 10 months ago by Bernd. Reason: Found a workaround

    Hi Ismael,
    Thanks for the message. Looking at the CSS for the contact page with CF7 it seems we have the following for the input fields.
    its frustrating that we can’t use the WPCF7 CSS with the other fields as well.

    Name (required) – causes other text input fields in ENFOLD to use this styling
    #top .main_color input[type=’text’],

    Email (required) – WORKS
    #top .main_color input[type=’email’],

    Subject – causes other text input fields in ENFOLD to use this styling
    #top .main_color input[type=’text’],

    Message (required) – WORKS!!
    #top .main_color .wpcf7 textarea,

    ————
    It seems that Solution #2 as we call it has to be used to make the name and subject fields work. But it also makes any other text field input within enfold follow the same styling.

    Here;s what we have:-

    #top .main_color .input-text,
    #top .main_color input[type=’text’],
    #top .main_color input[type=’input’],
    #top .main_color input[type=’password’],
    #top .main_color input[type=’email’],
    #top .main_color input[type=’number’],
    #top .main_color input[type=’url’],
    #top .main_color input[type=’tel’],
    #top .main_color input[type=’search’],
    #top .main_color textarea,
    #top .main_color select {
    border-color: #232323;
    border-radius: 3px;
    margin-top: 5px;
    }
    —————

    *I have the search results CSS fix – that works great – thanks.

    *The others input field borders that need to be maintained with the default E1E1E1 border colour are:-

    1. Search field at top right on my NEWS sidebar – See screenshot below.
    2. Any Comment fields on posts, media etc throughout the site. – any ideas on how to do this as well ?

    https://screencast.com/t/kCZRXBCHz

    https://screencast.com/t/AF6Do1N1
    P.S. IS THERE A WAY TO TURN OFF COMMENTS SECTION FOR MEDIA SUCH IS THIS IMAGE ?

    Thanks for all your help.

    Regards
    Pete

    #950861
    npmcgrew
    Participant

    First off, the new update seems great and I am excited to dig into all of the new features of Enfold 4.3

    That said, comments are acting odd for me. They seem to be working well on products or pages, however, in my latest blog post, I tried commenting from a couple of different user accounts with no success. After hitting ‘Post a Comment’, a quick loading circle appears and the entire comment section becomes no longer visible.

    I made sure to enable comments in the post settings, in the settings -> discussion. I used to require my approval, but even turned that off yesterday in hopes of finding a solution. From the 4 comments I have tried to post, none have shown on the post itself or in the comments section of the backend.

    Thank you again for all of the help!

    – Neil

    actually, this didn’t resolve the issue. one of the other users had configured an offset on the blog posts content element to make it look like the order by was working and I didn’t realise.

    So we are upgraded to the latest version and the following code has been applied to Functions.php

    
    /*
     *  Change Order By of Blog Posts in content element
     *  https://kriesi.at/documentation/enfold/change-the-sort-order-of-blog-posts-elements/
     */
    add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_desc');
    function avia_modify_post_grid_query_desc( $query ) {
    $query['orderby'] = 'date';
    $query['order'] = 'ASC';
    return $query;
    }
    

    there is a login posted previously in the private comments section of comment https://kriesi.at/support/topic/blog-posts-content-element-display-newest-posts-first/#post-922000

    #895683

    Hi,
    I can’t seem to figure out where I insert the code for freshdesk chat. I have read the above comments and don’t understand why I would have to ‘turn off’ Enfold to insert the code. Can you please let me know where and/or how to insert the code?
    Thanks

    #884220

    Hi Mike:
    I’m can’t try this just yet, but when I do, I have a few questions:

    1) I should add this to the functions file in the Child Theme, correct?

    2) Right now in the blog, the author meta is disabled, as well as the comments section. Will this code allow me to turn those and other post features on and off in the Enfold theme options?

    Thanks.

    #828915

    Hi,
    I reinstalled enfold via ftp, I disabled Layerslider as mentioned here: http://kriesi.at/documentation/enfold/deactivate-the-layerslider-plugin/ – and then I turned WP_DEBUG off.

    Result: Not working. Failure-Message: Fatal error: Declaration of avia_sc_comments_list::shortcode_handler() must be compatible with that of aviaShortcodeTemplate::shortcode_handler() in /kunden/328876_8001/web/1680744/A1680744/umshaus.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments.php on line 14

    Can you pls help out?

    Thanks a lot, Christoph.

    #766788

    Hi Ismael,

    I turned off enfold lightbox for the page and changed to Pro Lightbox in NextGen settings (so we have social media buttons, comments on pictures etc.). Everything worked fine on high-resolution displays but then there occured a big problem: On smaller displays (e.g. Surface Pro 3 using chrome [firefox and edge working!!] and my iPhone) this error gets displayed when I am opening an image:
    ‘fatal error: could not extract a stage height from CSS. Traced height: 0px’
    After some research I found several users using enfold with the same problem (if I switch to standard theme everything works great; on enfold support forums I was able to find 2 threads about this). The only working solution (I was able to find) was this:
    – turn off enfold lightbox in the whole theme
    – add ‘height: 100%’ at .galleria-theme-nextgen_pro_lightbox .galleria-stage in this file: /wp-content/plugins/nextgen-gallery-plus/modules/nextgen_pro_lightbox/static/theme/galleria.nextgen_pro_lightbox.css
    Solution found here: https://kriesi.at/support/topic/fatal-error-with-nextgen-plus-1-3-0/
    Well, if anything would work now it would be great and yeah everything is still fine on big displays but I think the solution caused the following problem:
    – on mobile displays not the full picture gets displayed (there is some kind of ‘zoom’ into the picture)
    – using chrome on my surface the image does not get scaled and centered correctly. I display comments initially as without the user might not see the function (more detailed screenshot you can see in private content).

    Could you tell me whats going wrong? How can I fix this? We are in urgent need of this function.
    The edited block with height 100% looks like this at the moment:
    .galleria-theme-nextgen_pro_lightbox .galleria-stage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 100%;
    }
    Should I edit something more in here?

    #752927
    Renko
    Participant

    Hi there, we are happily using the enfold theme for a new customer. But he likes to get rid of the date and the comment count at the blog template at his starting page.

    I unchecked the »show date« at our enfold child theme, but it still is showing.

    For the Comments count I found the Custom CSS at this thread:

    .blog-categories, .slide-meta-comments {
      display:none !important;
    }

    This works now. But we still want to get rid of the date. Do you have a Custom CSS for this too? Or any other solution?

    Kind regards,
    Renko

    Here is what the blog template looks like now, we want to get rid of everything below the button »Weiterlesen« (=read more):

    • This topic was modified 8 years, 1 month ago by Renko. Reason: Image not showing
    #744564

    Here is a copy of the source for the page not loading all the way:

    
    <!DOCTYPE html>
    <html lang="en-US" class="html_stretched responsive av-preloader-disabled av-default-lightbox  html_header_top html_logo_left html_main_nav_header html_menu_right html_custom html_header_sticky html_header_shrinking_disabled html_header_transparency html_mobile_menu_tablet html_disabled html_header_searchicon_disabled html_content_align_center html_header_unstick_top html_header_stretch html_minimal_header html_minimal_header_shadow html_elegant-blog html_entry_id_1028 ">
    <head>
    <meta charset="UTF-8" />
    <meta name="robots" content="index, follow" />
    
    <!-- mobile setting -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    
    <!-- Scripts/CSS and wp_head hook -->
    <title>Daylite Series II – Halo Fishing Rods</title>
    <link rel='dns-prefetch' href='//s.w.org' />
    <link rel="alternate" type="application/rss+xml" title="Halo Fishing Rods &raquo; Feed" href="http://localhost/halo/feed/" />
    <link rel="alternate" type="application/rss+xml" title="Halo Fishing Rods &raquo; Comments Feed" href="http://localhost/halo/comments/feed/" />
    
    <!-- google webfont font replacement -->
    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Oswald%7CLato:300,400,700' type='text/css' media='all'/> 
    		<script type="text/javascript">
    			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/localhost\/halo\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.7.2"}};
    			!function(a,b,c){function d(a){var b,c,d,e,f=String.fromCharCode;if(!k||!k.fillText)return!1;switch(k.clearRect(0,0,j.width,j.height),k.textBaseline="top",k.font="600 32px Arial",a){case"flag":return k.fillText(f(55356,56826,55356,56819),0,0),!(j.toDataURL().length<3e3)&&(k.clearRect(0,0,j.width,j.height),k.fillText(f(55356,57331,65039,8205,55356,57096),0,0),b=j.toDataURL(),k.clearRect(0,0,j.width,j.height),k.fillText(f(55356,57331,55356,57096),0,0),c=j.toDataURL(),b!==c);case"emoji4":return k.fillText(f(55357,56425,55356,57341,8205,55357,56507),0,0),d=j.toDataURL(),k.clearRect(0,0,j.width,j.height),k.fillText(f(55357,56425,55356,57341,55357,56507),0,0),e=j.toDataURL(),d!==e}return!1}function e(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i,j=b.createElement("canvas"),k=j.getContext&&j.getContext("2d");for(i=Array("flag","emoji4"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
    		</script>
    		<style type="text/css">
    img.wp-smiley,
    img.emoji {
    	display: inline !important;
    	border: none !important;
    	box-shadow: none !important;
    	height: 1em !important;
    	width: 1em !important;
    	margin: 0 .07em !important;
    	vertical-align: -0.1em !important;
    	background: none !important;
    	padding: 0 !important;
    }
    </style>
    <link rel='stylesheet' id='avia-woocommerce-css-css'  href='http://localhost/halo/wp-content/themes/enfold/config-woocommerce/woocommerce-mod.css?ver=4.7.2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-grid-css'  href='http://localhost/halo/wp-content/themes/enfold/css/grid.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-base-css'  href='http://localhost/halo/wp-content/themes/enfold/css/base.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-layout-css'  href='http://localhost/halo/wp-content/themes/enfold/css/layout.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-scs-css'  href='http://localhost/halo/wp-content/themes/enfold/css/shortcodes.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-popup-css-css'  href='http://localhost/halo/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-media-css'  href='http://localhost/halo/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-print-css'  href='http://localhost/halo/wp-content/themes/enfold/css/print.css?ver=1' type='text/css' media='print' />
    <link rel='stylesheet' id='avia-dynamic-css'  href='http://localhost/halo/wp-content/uploads/dynamic_avia/bcs.css?ver=58994b57897ed' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-custom-css'  href='http://localhost/halo/wp-content/themes/enfold/css/custom.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-style-css'  href='http://localhost/halo/wp-content/themes/bcs/style.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-gravity-css'  href='http://localhost/halo/wp-content/themes/enfold/config-gravityforms/gravity-mod.css?ver=1' type='text/css' media='screen' />
    <script type='text/javascript' src='http://localhost/halo/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
    <script type='text/javascript' src='http://localhost/halo/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
    <script type='text/javascript' src='http://localhost/halo/wp-content/themes/enfold/js/avia-compat.js?ver=2'></script>
    <link rel='https://api.w.org/' href='http://localhost/halo/wp-json/' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/halo/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/halo/wp-includes/wlwmanifest.xml" /> 
    <meta name="generator" content="WordPress 4.7.2" />
    <meta name="generator" content="WooCommerce 2.6.14" />
    <link rel="canonical" href="http://localhost/halo/daylite-series-ii/" />
    <link rel='shortlink' href='http://localhost/halo/?p=1028' />
    <link rel="alternate" type="application/json+oembed" href="http://localhost/halo/wp-json/oembed/1.0/embed?url=http%3A%2F%2Flocalhost%2Fhalo%2Fdaylite-series-ii%2F" />
    <link rel="alternate" type="text/xml+oembed" href="http://localhost/halo/wp-json/oembed/1.0/embed?url=http%3A%2F%2Flocalhost%2Fhalo%2Fdaylite-series-ii%2F&format=xml" />
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="alternate" type="application/rss+xml" title="Halo Fishing Rods RSS2 Feed" href="http://localhost/halo/feed/" />
    <link rel="pingback" href="http://localhost/halo/xmlrpc.php" />
    
    <style type='text/css' media='screen'>
     #top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_link{ height:70px; line-height: 70px; }
     .html_top_nav_header .av-logo-container{ height:70px;  }
     .html_header_top.html_header_sticky #top #wrap_all #main{ padding-top:70px; } 
    </style>
    <!--[if lt IE 9]><script src="http://localhost/halo/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
    
    <!--
    Debugging Info for Theme support: 
    
    Theme: Enfold
    Version: 3.8.4
    Installed: enfold
    AviaFramework Version: 4.6
    AviaBuilder Version: 0.9.4
    - - - - - - - - - - -
    ChildTheme: BCS
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold
    
    ML:128-PU:51-PLA:2
    WP:4.7.2
    Updates: disabled
    -->
    
    <style type='text/css'>
    @font-face {font-family: 'entypo-fontello'; font-weight: normal; font-style: normal;
    src: url('http://localhost/halo/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3');
    src: url('http://localhost/halo/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), 
    url('http://localhost/halo/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), 
    url('http://localhost/halo/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), 
    url('http://localhost/halo/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg');
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; }
    
    @font-face {font-family: 'flaticon-sports'; font-weight: normal; font-style: normal;
    src: url('http://localhost/halo/wp-content/uploads/avia_fonts/flaticon-sports/flaticon-sports.eot');
    src: url('http://localhost/halo/wp-content/uploads/avia_fonts/flaticon-sports/flaticon-sports.eot?#iefix') format('embedded-opentype'), 
    url('http://localhost/halo/wp-content/uploads/avia_fonts/flaticon-sports/flaticon-sports.woff') format('woff'), 
    url('http://localhost/halo/wp-content/uploads/avia_fonts/flaticon-sports/flaticon-sports.ttf') format('truetype'), 
    url('http://localhost/halo/wp-content/uploads/avia_fonts/flaticon-sports/flaticon-sports.svg#flaticon-sports') format('svg');
    } #top .avia-font-flaticon-sports, body .avia-font-flaticon-sports, html body [data-av_iconfont='flaticon-sports']:before{ font-family: 'flaticon-sports'; }
    </style>
    </head>
    
    <body id="top" class="page-template-default page page-id-1028 stretched oswald lato " itemscope="itemscope" itemtype="https://schema.org/WebPage" >
    
    	
    	<div id='wrap_all'>
    
    	
    <header id='header' class='all_colors header_color dark_bg_color  av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky av_header_shrinking_disabled av_header_stretch av_mobile_menu_tablet av_header_transparency av_header_searchicon_disabled av_header_unstick_top av_seperator_big_border av_minimal_header av_minimal_header_shadow av_bottom_nav_disabled  av_alternate_logo_active'  role="banner" itemscope="itemscope" itemtype="https://schema.org/WPHeader" >
    
    <a id="advanced_menu_toggle" href="#" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a><a id="advanced_menu_hide" href="#" 	aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a>		<div  id='header_main' class='container_wrap container_wrap_logo'>
    	
            <ul  class = 'cart_dropdown ' data-success='was added to the cart'><li class='cart_dropdown_first'><a class='cart_dropdown_link' href='http://localhost/halo/cart/'><span aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></span><span class='av-cart-counter'>0</span><span class='avia_hidden_link_text'>Shopping Cart</span></a><!--<span class='cart_subtotal'><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span></span>--><div class='dropdown_widget dropdown_widget_cart'><div class='avia-arrow'></div><div class="widget_shopping_cart_content"></div></div></li></ul><div class='container av-logo-container'><div class='inner-container'><strong class='logo'><a href='http://localhost/halo/'><img height='100' width='300' src='http://localhost/halo/wp-content/uploads/2017/02/HALO-TRANSPARENT-LOGO-1.png' alt='Halo Fishing Rods' /><span class='subtext'><img src='http://localhost/halo/wp-content/uploads/2017/02/HALO-TRANSPARENT-LOGO-1.png' class='alternate' alt='' title='' /></span></a></strong><nav class='main_menu' data-selectname='Select a page'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia-menu av-main-nav-wrap av_menu_icon_beside"><ul id="avia-menu" class="menu av-main-nav"><li id="menu-item-780" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-top-level menu-item-top-level-1"><a href="http://localhost/halo/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Home</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-871" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-top-level menu-item-top-level-2"><a href="#" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Rods</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-1164" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/crankin-series-ii/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Crankin Series II</span></a></li>
    	<li id="menu-item-1046" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1028 current_page_item"><a href="http://localhost/halo/daylite-series-ii/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Daylite Series II</span></a></li>
    	<li id="menu-item-1194" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/kryptonite/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Kryptonite</span></a></li>
    	<li id="menu-item-1160" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/rave/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Rave</span></a></li>
    	<li id="menu-item-1179" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/titanium-series/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Titanium Series</span></a></li>
    	<li id="menu-item-1026" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/twilite-series-ii/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Twilite Series II</span></a></li>
    </ul>
    </li>
    <li id="menu-item-1340" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-top-level menu-item-top-level-3"><a itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Shop</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-1341" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/shop/apparel/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Apparel</span></a></li>
    	<li id="menu-item-1343" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/shop/casting-rods/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Casting Rods</span></a></li>
    	<li id="menu-item-1342" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/halo/shop/spinning-rods/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Spinning Rods</span></a></li>
    </ul>
    </li>
    <li id="menu-item-783" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-mega-parent  menu-item-top-level menu-item-top-level-4"><a href="http://localhost/halo/about/team/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Pro Staff</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-781" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-5"><a href="http://localhost/halo/about/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">About</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-785" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-6"><a href="http://localhost/halo/contact/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Contact</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    </ul></div><ul class='noLightbox social_bookmarks icon_count_3'><li class='social_bookmarks_facebook av-social-link-facebook social_icon_1'><a  href='#' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Facebook'><span class='avia_hidden_link_text'>Facebook</span></a></li><li class='social_bookmarks_instagram av-social-link-instagram social_icon_2'><a  href='#' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Instagram'><span class='avia_hidden_link_text'>Instagram</span></a></li><li class='social_bookmarks_mail av-social-link-mail social_icon_3'><a  href='#' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Mail'><span class='avia_hidden_link_text'>Mail</span></a></li></ul></nav></div> </div> 
    		<!-- end container_wrap-->
    		</div>
    		
    		<div class='header_bg'></div>
    
    <!-- end header -->
    </header>
    		
    	<div id='main' class='all_colors' data-scroll-offset='70'>
    
    	
    			<div class="single-product" data-product-page-preselected-id="0">
    
    				
    
    <div itemscope itemtype="http://schema.org/Product" id="product-813" class="post-813 product type-product status-publish has-post-thumbnail product_cat-spinning first instock taxable shipping-taxable purchasable product-type-variable has-default-attributes has-children">
    
    	<div class='single-product-main-image alpha'><div class="images">
    	<a href="http://localhost/halo/wp-content/uploads/2017/01/daylight-thumb.jpg" itemprop="image" class="woocommerce-main-image zoom" title=""  rel="prettyPhoto"><img width="450" height="366" src="http://localhost/halo/wp-content/uploads/2017/01/daylight-thumb-450x366.jpg" class="attachment-shop_single size-shop_single wp-post-image" alt="" title="" srcset="http://localhost/halo/wp-content/uploads/2017/01/daylight-thumb-450x366.jpg 450w, http://localhost/halo/wp-content/uploads/2017/01/daylight-thumb-300x244.jpg 300w, http://localhost/halo/wp-content/uploads/2017/01/daylight-thumb-768x624.jpg 768w, http://localhost/halo/wp-content/uploads/2017/01/daylight-thumb-705x573.jpg 705w, http://localhost/halo/wp-content/uploads/2017/01/daylight-thumb.jpg 800w" sizes="(max-width: 450px) 100vw, 450px" /></a></div>
    </div><div class='single-product-summary'>
    	<div class="summary entry-summary">
    
    		<h1 itemprop="name" class="product_title entry-title">Daylight Series II Spinning Rods</h1><div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    
    	<p class="price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>99.99</span></p>
    
    	<meta itemprop="price" content="99.99" />
    	<meta itemprop="priceCurrency" content="USD" />
    	<link itemprop="availability" href="http://schema.org/InStock" />
    
    </div>
    <div itemprop="description">
    	<div class="rod-description">
    The ALL NEW Series 2 Daylite rods offer big improvements for the same great affordable price!</p>
    <ul>
    <li>Quality Graphite Blank</li>
    <li>Super Light Weight & Sensitive</li>
    <li>Quality Stainless Steel SIC Guides</li>
    <li>Quality Build at an Affordable Price</li>
    <li>Premium Quality Cork Handle</li>
    </ul>
    </div>
    <table class="rodSpecsTable" style="width: 100%;">
    <tbody>
    <tr>
    <th>Rod Code</th>
    <th>Power</th>
    <th>Length</th>
    <th>Lure Weight</th>
    <th>Line Weight</th>
    </tr>
    <tr>
    <td>HFDS272MS</td>
    <td>Medium</td>
    <td>7′ 2″</td>
    <td>1/16 – 1/2 oz</td>
    <td>6 – 12 lb</td>
    </tr>
    <tr>
    <td>HFDS272MHS</td>
    <td>Med Heavy</td>
    <td>7′ 2″</td>
    <td>1/8 – 3/4 oz</td>
    <td>8 – 15 lb</td>
    </tr>
    </tbody>
    </table>
    </div>
    
    <form class="variations_form cart" method="post" enctype='multipart/form-data' data-product_id="813" data-product_variations="[{&quot;variation_id&quot;:814,&quot;variation_is_visible&quot;:true,&quot;variation_is_active&quot;:true,&quot;is_purchasable&quot;:true,&quot;display_price&quot;:99.99,&quot;display_regular_price&quot;:99.99,&quot;attributes&quot;:{&quot;attribute_models&quot;:&quot;HFDS272MHS&quot;},&quot;image_src&quot;:&quot;&quot;,&quot;image_link&quot;:&quot;&quot;,&quot;image_title&quot;:&quot;&quot;,&quot;image_alt&quot;:&quot;&quot;,&quot;image_caption&quot;:&quot;&quot;,&quot;image_srcset&quot;:&quot;&quot;,&quot;image_sizes&quot;:&quot;&quot;,&quot;price_html&quot;:&quot;&quot;,&quot;availability_html&quot;:&quot;&quot;,&quot;sku&quot;:&quot;&quot;,&quot;weight&quot;:&quot; lbs&quot;,&quot;dimensions&quot;:&quot;&quot;,&quot;min_qty&quot;:1,&quot;max_qty&quot;:null,&quot;backorders_allowed&quot;:false,&quot;is_in_stock&quot;:true,&quot;is_downloadable&quot;:false,&quot;is_virtual&quot;:false,&quot;is_sold_individually&quot;:&quot;no&quot;,&quot;variation_description&quot;:&quot;<table class=\&quot;rod-info\&quot; style=\&quot;width: 100%\&quot;>\n<tr>\n<th>Rod Type<\/th>\n<th>Power<\/th>\n<th>Length<\/th>\n<th>Lure Weight<\/th>\n<th>Line Weight<\/th>\n<\/tr>\n<tr>\n<td>Spinning<\/td>\n<td>Med Heavy<\/td>\n<td>7\u2032 2\u2033<\/td>\n<td>1\/8 \u2013 3\/4 oz<\/td>\n<td>8 \u2013 15 lb<\/td>\n<\/tr>\n<\/table>\n&quot;},{&quot;variation_id&quot;:815,&quot;variation_is_visible&quot;:true,&quot;variation_is_active&quot;:true,&quot;is_purchasable&quot;:true,&quot;display_price&quot;:99.99,&quot;display_regular_price&quot;:99.99,&quot;attributes&quot;:{&quot;attribute_models&quot;:&quot;HFDS272MS&quot;},&quot;image_src&quot;:&quot;&quot;,&quot;image_link&quot;:&quot;&quot;,&quot;image_title&quot;:&quot;&quot;,&quot;image_alt&quot;:&quot;&quot;,&quot;image_caption&quot;:&quot;&quot;,&quot;image_srcset&quot;:&quot;&quot;,&quot;image_sizes&quot;:&quot;&quot;,&quot;price_html&quot;:&quot;&quot;,&quot;availability_html&quot;:&quot;&quot;,&quot;sku&quot;:&quot;&quot;,&quot;weight&quot;:&quot; lbs&quot;,&quot;dimensions&quot;:&quot;&quot;,&quot;min_qty&quot;:1,&quot;max_qty&quot;:null,&quot;backorders_allowed&quot;:false,&quot;is_in_stock&quot;:true,&quot;is_downloadable&quot;:false,&quot;is_virtual&quot;:false,&quot;is_sold_individually&quot;:&quot;no&quot;,&quot;variation_description&quot;:&quot;<table class=\&quot;rod-info\&quot; style=\&quot;width: 100%\&quot;>\n<tr>\n<th>Rod Type<\/th>\n<th>Power<\/th>\n<th>Length<\/th>\n<th>Lure Weight<\/th>\n<th>Line Weight<\/th>\n<\/tr>\n<tr>\n<td>Spinning<\/td>\n<td>Medium<\/td>\n<td>7\u2032 2\u2033<\/td>\n<td>1\/16 \u2013 1\/2 oz<\/td>\n<td>6 \u2013 12 lb<\/td>\n<\/tr>\n<\/table>\n&quot;}]">
    	
    			<table class="variations" cellspacing="0">
    			<tbody>
    									<tr>
    						<td class="label"><label for="models">Models</label></td>
    						<td class="value">
    							<select id="models" class="" name="attribute_models" data-attribute_name="attribute_models"" data-show_option_none="yes"><option value="">Choose an option</option><option value="HFDS272MS" >HFDS272MS</option><option value="HFDS272MHS" >HFDS272MHS</option></select><a class="reset_variations" href="#">Clear</a>						</td>
    					</tr>
    							</tbody>
    		</table>
    
    		
    		<div class="single_variation_wrap">
    			<div class="woocommerce-variation single_variation"></div><div class="woocommerce-variation-add-to-cart variations_button">
    			<div class="quantity">
    	<input type="number" step="1" min="" max="" name="quantity" value="1" title="Qty" class="input-text qty text" size="4" pattern="[0-9]*" inputmode="numeric" />
    </div>
    		<button type="submit" class="single_add_to_cart_button button alt">Add to cart</button>
    	<input type="hidden" name="add-to-cart" value="813" />
    	<input type="hidden" name="product_id" value="813" />
    	<input type="hidden" name="variation_id" class="variation_id" value="0" />
    </div>
    		</div>
    
    			
    	</form>
    
    <div class="product_meta">
    
    	
    	
    		<span class="sku_wrapper">SKU: <span class="sku" itemprop="sku">N/A</span></span>
    
    	
    	<span class="posted_in">Category: <a href="http://localhost/halo/product-category/fishing-rods/spinning/" rel="tag">Spinning Rods</a></span>
    	
    	
    </div>
    
    	</div><!-- .summary -->
    
    	
    	<div class="woocommerce-tabs wc-tabs-wrapper">
    		<ul class="tabs wc-tabs">
    							<li class="additional_information_tab">
    					<a href="#tab-additional_information">Additional Information</a>
    				</li>
    							<li class="reviews_tab">
    					<a href="#tab-reviews">Reviews (0)</a>
    				</li>
    					</ul>
    					<div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--additional_information panel entry-content wc-tab" id="tab-additional_information">
    				
    	<h2>Additional Information</h2>
    
    <table class="shop_attributes">
    
    	
    		
    		
    	
    			<tr class="">
    			<th>Models</th>
    			<td><p>HFDS272MS, HFDS272MHS</p>
    </td>
    		</tr>
    	
    </table>
    			</div>
    					<div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--reviews panel entry-content wc-tab" id="tab-reviews">
    				<div id="reviews" class="woocommerce-Reviews">
    	<div id="comments">
    		<h2 class="woocommerce-Reviews-title">Reviews</h2>
    
    		
    			<p class="woocommerce-noreviews">There are no reviews yet.</p>
    
    			</div>
    
    	
    		<div id="review_form_wrapper">
    			<div id="review_form">
    					<div id="respond" class="comment-respond">
    		<h3 id="reply-title" class="comment-reply-title">Be the first to review &ldquo;Daylight Series II Spinning Rods&rdquo; <small><a rel="nofollow" id="cancel-comment-reply-link" href="/halo/daylite-series-ii/#respond" style="display:none;">Cancel reply</a></small></h3>			<form action="http://localhost/halo/wp-comments-post.php" method="post" id="commentform" class="comment-form">
    				<p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> Required fields are marked <span class="required">*</span></p><p class="comment-form-rating"><label for="rating">Your Rating</label><select name="rating" id="rating" aria-required="true" required>
    							<option value="">Rate&hellip;</option>
    							<option value="5">Perfect</option>
    							<option value="4">Good</option>
    							<option value="3">Average</option>
    							<option value="2">Not that bad</option>
    							<option value="1">Very Poor</option>
    						</select></p><p class="comment-form-comment"><label for="comment">Your Review <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" aria-required="true" required /></p>
    <p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" aria-required="true" required /></p>
    <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Submit" /> <input type='hidden' name='comment_post_ID' value='813' id='comment_post_ID' />
    <input type='hidden' name='comment_parent' id='comment_parent' value='0' />
    </p>			</form>
    			</div><!-- #respond -->
    				</div>
    		</div>
    
    	
    	<div class="clear"></div>
    </div>
    			</div>
    			</div>
    
    </div> 
    rosewoodva
    Participant

    Hi,

    I am getting this error message below when trying to update Plugins. This is after updating to most recent version of WordPress. Then I got the login screen that said WP Database was out of date. That went fine. But now I can’t update Plugins:

    Update Failed: <!DOCTYPE html> <!–[if IE 8]> <![endif]–> <!–[if !(IE 8) ]><!–> <!–<![endif]–> LiveSite Pack ‹ Rosewood Virtual Admin — WordPress addLoadEvent = function(func){if(typeof jQuery!=”undefined”)jQuery(document).ready(func);else if(typeof wpOnload!=’function’){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; var ajaxurl = ‘/wp-admin/admin-ajax.php’, pagenow = ‘toplevel_page_live-site’, typenow = ”, adminpage = ‘toplevel_page_live-site’, thousandsSeparator = ‘,’, decimalPoint = ‘.’, isRtl = 0; img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } <!–[if lte IE 7]> <![endif]–> window._wpemojiSettings = {“baseUrl”:”https:\/\/s.w.org\/images\/core\/emoji\/2\/72×72\/”,”ext”:”.png”,”svgUrl”:”https:\/\/s.w.org\/images\/core\/emoji\/2\/svg\/”,”svgExt”:”.svg”,”source”:{“concatemoji”:”http:\/\/rosewoodva.ca\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.6.1″}}; !function(a,b,c){function d(a){var c,d,e,f,g,h=b.createElement(“canvas”),i=h.getContext&&h.getContext(“2d”),j=String.fromCharCode;if(!i||!i.fillText)return!1;switch(i.textBaseline=”top”,i.font=”600 32px Arial”,a){case”flag”:return i.fillText(j(55356,56806,55356,56826),0,0),!(h.toDataURL().length<3e3)&&(i.clearRect(0,0,h.width,h.height),i.fillText(j(55356,57331,65039,8205,55356,57096),0,0),c=h.toDataURL(),i.clearRect(0,0,h.width,h.height),i.fillText(j(55356,57331,55356,57096),0,0),d=h.toDataURL(),c!==d);case”diversity”:return i.fillText(j(55356,57221),0,0),e=i.getImageData(16,16,1,1).data,f=e[0]+”,”+e[1]+”,”+e[2]+”,”+e[3],i.fillText(j(55356,57221,55356,57343),0,0),e=i.getImageData(16,16,1,1).data,g=e[0]+”,”+e[1]+”,”+e[2]+”,”+e[3],f!==g;case”simple”:return i.fillText(j(55357,56835),0,0),0!==i.getImageData(16,16,1,1).data[0];case”unicode8″:return i.fillText(j(55356,57135),0,0),0!==i.getImageData(16,16,1,1).data[0];case”unicode9″:return i.fillText(j(55358,56631),0,0),0!==i.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement(“script”);c.src=a,c.type=”text/javascript”,b.getElementsByTagName(“head”)[0].appendChild(c)}var f,g,h,i;for(i=Array(“simple”,”flag”,”unicode8″,”diversity”,”unicode9″),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],”flag”!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener(“DOMContentLoaded”,g,!1),a.addEventListener(“load”,g,!1)):(a.attachEvent(“onload”,g),b.attachEvent(“onreadystatechange”,function(){“complete”===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings); /* <![CDATA[ */ var avia_framework_globals = avia_framework_globals || {}; avia_framework_globals.frameworkUrl = ‘http://rosewoodva.ca/wp-content/themes/enfold-test/framework/&#8217;; avia_framework_globals.installedAt = ‘http://rosewoodva.ca/wp-content/themes/enfold-test/&#8217;; avia_framework_globals.ajaxurl = ‘http://rosewoodva.ca/wp-admin/admin-ajax.php&#8217;; /* ]]> */ /* <![CDATA[ */ var AtD_l10n_r0ar = {“menu_title_spelling”:”Spelling”,”menu_title_repeated_word”:”Repeated Word”,”menu_title_no_suggestions”:”No suggestions”,”menu_option_explain”:”Explain…”,”menu_option_ignore_once”:”Ignore suggestion”,”menu_option_ignore_always”:”Ignore always”,”menu_option_ignore_all”:”Ignore all”,”menu_option_edit_selection”:”Edit Selection…”,”button_proofread”:”proofread”,”button_edit_text”:”edit text”,”button_proofread_tooltip”:”Proofread Writing”,”message_no_errors_found”:”No writing errors were found.”,”message_server_error”:”There was a problem communicating with the Proofreading service. Try again in one minute.”,”message_server_error_short”:”There was an error communicating with the proofreading service.”,”dialog_replace_selection”:”Replace selection with:”,”dialog_confirm_post_publish”:”The proofreader has suggestions for this post. Are you sure you want to publish it?\n\nPress OK to publish your post, or Cancel to view the suggestions and edit your post.”,”dialog_confirm_post_update”:”The proofreader has suggestions for this post. Are you sure you want to update it?\n\nPress OK to update your post, or Cancel to view the suggestions and edit your post.”}; /* ]]> */ /* <![CDATA[ */ var ls_PHPVAR_livesite = {“ls_admin_url”:”http:\/\/rosewoodva.ca\/wp-admin\/”,”ls_locale”:”en_US”,”ls_module_nonce”:”bd8e0a3374″,”ls_site_url”:”http:\/\/rosewoodva.ca”}; /* ]]> */ /* <![CDATA[ */ var userSettings = {“url”:”\/”,”uid”:”1″,”time”:”1477593071″,”secure”:””};var quicktagsL10n = {“closeAllOpenTags”:”Close all open tags”,”closeTags”:”close tags”,”enterURL”:”Enter the URL”,”enterImageURL”:”Enter the URL of the image”,”enterImageDescription”:”Enter a description of the image”,”textdirection”:”text direction”,”toggleTextdirection”:”Toggle Editor Text Direction”,”dfw”:”Distraction-free writing mode”,”strong”:”Bold”,”strongClose”:”Close bold tag”,”em”:”Italic”,”emClose”:”Close italic tag”,”link”:”Insert link”,”blockquote”:”Blockquote”,”blockquoteClose”:”Close blockquote tag”,”del”:”Deleted text (strikethrough)”,”delClose”:”Close deleted text tag”,”ins”:”Inserted text”,”insClose”:”Close inserted text tag”,”image”:”Insert image”,”ul”:”Bulleted list”,”ulClose”:”Close bulleted list tag”,”ol”:”Numbered list”,”olClose”:”Close numbered list tag”,”li”:”List item”,”liClose”:”Close list item tag”,”code”:”Code”,”codeClose”:”Close code tag”,”more”:”Insert Read More tag”};/* ]]> */ /* <![CDATA[ */ var avia_shortcode_preview = ‘d1c0f741b7’; /* ]]> */ <!– Debugging Info for Theme support: Theme: Enfold Test Version: 3.6.1 Installed: enfold-test AviaFramework Version: 4.5.3 AviaBuilder Version: 0.8 – – – – – – – – – – – ChildTheme: Enfold-Test Child ChildTheme Version: 3.6.1 ChildTheme Installed: enfold-test ML:256-PU:64-PLA:14 WP:4.6.1 Updates: disabled –> function aioseop_show_pointer(handle, value) { if (typeof( jQuery ) != ‘undefined’) { var p_edge = ‘bottom’; var p_align = ‘center’; if (typeof( jQuery(value.pointer_target).pointer) != ‘undefined’) { if (typeof( value.pointer_edge ) != ‘undefined’) p_edge = value.pointer_edge; if (typeof( value.pointer_align ) != ‘undefined’) p_align = value.pointer_align; jQuery(value.pointer_target).pointer({ content: value.pointer_text, position: { edge: p_edge, align: p_align }, close: function () { jQuery.post(ajaxurl, { pointer: handle, action: ‘dismiss-wp-pointer’ }); } }).pointer(‘open’); } } } /* <![CDATA[ */ var wpNotesIsJetpackClient = true; var wpNotesIsJetpackClientV2 = true; /* ]]> */ if ( window.history.replaceState ) { window.history.replaceState( null, null, document.getElementById( ‘wp-admin-canonical’ ).href + window.location.hash ); } var _wpColorScheme = {“icons”:{“base”:”#82878c”,”focus”:”#00a0d2″,”current”:”#fff”}}; .aioseop_edit_button { margin: 0 0 0 5px; opacity: 0.6; width: 12px; } .aioseop_edit_link { display: inline-block; position: absolute; } .aioseop_mpc_SEO_admin_options_edit img { margin: 3px 2px; opacity: 0.7; } .aioseop_mpc_admin_meta_options { float: left; display: block; opacity: 1; max-height: 75px; overflow: hidden; width: 100%; } .aioseop_mpc_admin_meta_options.editing { max-height: initial; overflow: visible; } .aioseop_mpc_admin_meta_content { float: left; width: 100%; margin: 0 0 10px 0; } td.seotitle.column-seotitle, td.seodesc.column-seodesc, td.seokeywords.column-seokeywords { overflow: visible; } @media screen and (max-width: 782px) { body.wp-admin th.column-seotitle, th.column-seodesc, th.column-seokeywords, td.seotitle.column-seotitle, td.seodesc.column-seodesc, td.seokeywords.column-seokeywords { display: none; } } //<![CDATA[ var aioseopadmin = { blogUrl: “http://rosewoodva.ca&#8221;, pluginUrl: “http://rosewoodva.ca/wp-content/plugins/all-in-one-seo-pack/&#8221;, requestUrl: “http://rosewoodva.ca/wp-admin/admin-ajax.php&#8221;, imgUrl: “http://rosewoodva.ca/wp-content/plugins/all-in-one-seo-pack/images/&#8221;, Edit: “Edit”, Post: “Post”, Save: “Save”, Cancel: “Cancel”, postType: “post”, pleaseWait: “Please wait…”, slugEmpty: “Slug may not be empty!”, Revisions: “Revisions”, Time: “Insert time” } //]]> #wpadminbar { display:none; } document.body.className = document.body.className.replace(‘no-js’,’js’); (function() { var request, b = document.body, c = ‘className’, cs = ‘customize-support’, rcs = new RegExp(‘(^|\\s+)(no-)?’+cs+'(\\s+|$)’); request = true; b[c] = b[c].replace( rcs, ‘ ‘ ); b[c] += ( window.postMessage && request ? ‘ ‘ : ‘ no-‘ ) + cs; }()); Skip to main content Skip to toolbar Dashboard DashboardHomeUpdates 3 All in One SEO All in One SEOGeneral SettingsPerformanceFeature Manager Jetpack JetpackDashboardSettingsSite StatsAkismet LiveSite LiveSiteLiveSiteSettingsBackofficeContact FormLiveSite Widget Posts PostsAll PostsAdd NewCategoriesTags Media MediaLibraryAdd NewWP Smush Pages PagesAll PagesAdd New Comments 0 Portfolio Items Portfolio ItemsPortfolio ItemsAdd NewTagsPortfolio Categories Enfold-Test Child Contact ContactContact FormsAdd NewIntegration Appearance AppearanceThemesCustomizeWidgetsMenusEdit CSSEditor Plugins 0 Plugins 0Installed PluginsAdd NewEditor Users UsersAll UsersAdd NewYour Profile Tools ToolsAvailable ToolsImportExportSEO Data ImportBackupsBackup Settings SettingsGeneralWritingReadingDiscussionMediaPermalinksWP Content Copy Protection (YOOPlugins)Easy TableSharingXML-Sitemap Shortcodes ShortcodesSettingsExamplesCheatsheetAdd-ons Google Analytics Google AnalyticsGoogle AnalyticsOther Plugins LayerSlider WP LayerSlider WPAll SlidersSkin EditorCSS EditorTransition BuilderCollapse menu Menu About WordPress About WordPress WordPress.org Documentation Support Forums Feedback Rosewood Virtual Admin Visit Site 33 Theme Updates 00 comments awaiting moderation New Post Media Page Portfolio Entry User LayerSlider Theme Options General Layout General Styling Advanced Styling Header Sidebar Settings Footer Blog Layout Social Profiles Newsletter Demo Import Import/Export Theme Update SEO Upgrade To Pro Performance Feature Manager #adminbar-search::-webkit-input-placeholder, #adminbar-search:-moz-placeholder, #adminbar-search::-moz-placeholder, #adminbar-search:-ms-input-placeholder { text-shadow: none; } Howdy, deannasimone deannasimone Edit My Profile Log Out Notifications Log Out Logged in as: (Email address hidden if logged out) | Rate us: <!– –><!– –><!– –><!– –> Lead Capturing Contact Form Part of vCita LiveSite Pack Lead Capturing Contact Form is part of vCita LiveSite Pack Your LiveSite Modules: Contact Form Create beautiful forms using a simple Drag & Drop editor. Edit Livesite Widget Encourage clients to take actions and capture twice as many leads Edit Payments Button Offer your clients a simple way to pay for your services Add Scheduler Self service appointment scheduling for your clients Add One Platform which enables all modules Backoffice All livesite modules plug into a single business management dashboard Go to Backoffice <!– –> SDK for Developers To achieve maximum flexibility use our LiveSite SDK Go to SDK Documentation <!– –> Partner Program Join over 8500 partners who leverage the vCita web engagement solution to extend their brand Learn More Account Settings Disconnect Rate US Support <!– wpbody-content –> <!– wpbody –> <!– wpcontent –> Thank you for creating with WordPress. Version 4.6.1 Close dialog Session expired Please log in again. The login page will open in a new window. After logging in you can close it and return to this page. /* <![CDATA[ */ var jpTracksAJAX = {“ajaxurl”:”http:\/\/rosewoodva.ca\/wp-admin\/admin-ajax.php”,”jpTracksAJAX_nonce”:”dfff5d7dd8″}; /* ]]> */ /* <![CDATA[ */ var commonL10n = {“warnDelete”:”You are about to permanently delete these items.\n ‘Cancel’ to stop, ‘OK’ to delete.”,”dismiss”:”Dismiss this notice.”};var heartbeatSettings = {“nonce”:”9006d09a94″};var authcheckL10n = {“beforeunload”:”Your session has expired. You can log in again from this page or go to the login page.”,”interval”:”180″};var wpAjax = {“noPerm”:”Sorry, you are not allowed to do that.”,”broken”:”An unidentified error has occurred.”};var wpPointerL10n = {“dismiss”:”Dismiss”};/* ]]> */ <!– wpwrap –> if(typeof wpOnload==’function’)wpOnload();

    #662352
    L-mobileGroup
    Participant

    Dear support

    since a few weeks we have the problem that our company mainpage changes “over night” from our our regular mainpage to a view where only header and footer is available and in main content: “registration closed”. We are using a Multisite wordpress installation with main domain and several subdomains.

    When I go in the backend to enfold settings and change “Frontpage settings” and change it back and save (after this clearing cache from gator cache) — regular mainpage is shown again.

    I enclosed a screenshot from the mainpage when problem occurs. Also source code of corrupted site. This problem always occurs between two days — I have a look to the page at the evening everything is fine — next morning page shows corrupted mainpage.

    • UPDATE: yesterday this problem occurs within the day – from one minute to another mainpage showed only “registration closed” within footer and header
    • main content missing
    • header and footer still there
    • CSS data is loaded
    • What issue could be the problem?

    Source code:

    <!DOCTYPE html>
    <html lang="de-DE" class="html_stretched responsive av-preloader-disabled av-default-lightbox  html_header_top html_logo_left html_main_nav_header html_menu_right html_custom html_header_sticky html_header_shrinking_disabled html_header_topbar_active html_mobile_menu_tablet html_header_mobile_behavior html_header_searchicon html_content_align_center html_header_unstick_top_disabled html_header_stretch_disabled html_minimal_header html_minimal_header_shadow html_entry_id_66 ">
    <head>
    <meta charset="UTF-8" />
    
    <!-- mobile setting -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    
    <!-- Scripts/CSS and wp_head hook -->
    <title>L-mobile macht Geschäftsprozesse mobil - L-mobile</title>
    <link rel="alternate" hreflang="de-DE" href="https://www.l-mobile.com/" />
    <link rel="alternate" hreflang="en-US" href="https://www.l-mobile.com/en/" />
    <link rel="alternate" hreflang="hu-HU" href="https://www.l-mobile.com/hu/" />
    
    <!-- This site is optimized with the Yoast SEO Premium plugin v3.3.3 - https://yoast.com/wordpress/plugins/seo/ -->
    <meta name="description" content="Am Anfang von L-mobile stand die Idee komplexe und starre Datenerfassungssysteme einfach und mobil - und damit transparenter und produktiver zu machen. "/>
    <meta name="robots" content="noodp"/>
    <link rel="canonical" href="https://www.l-mobile.com/" />
    <meta property="DC.date.issued" content="2015-12-03T14:50:53+02:00" />
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"WebSite","url":"https:\/\/www.l-mobile.com\/","name":"L-mobile GmbH","potentialAction":{"@type":"SearchAction","target":"https:\/\/www.l-mobile.com\/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"Organization","url":"https:\/\/www.l-mobile.com\/","sameAs":[],"name":"L-mobile GmbH","logo":"https:\/\/www.l-mobile.com\/wp-content\/uploads\/2015\/12\/L-mobile_Web.png"}</script>
    <!-- / Yoast SEO Premium plugin. -->
    
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Kommentar-Feed" href="https://www.l-mobile.com/comments/feed/" />
    
    <!-- google webfont font replacement -->
    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Open+Sans:400,600' type='text/css' media='all'/> 
    		<script type="text/javascript">
    			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"https:\/\/www.l-mobile.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.5.3"}};
    			!function(a,b,c){function d(a){var c,d,e,f=b.createElement("canvas"),g=f.getContext&&f.getContext("2d"),h=String.fromCharCode;if(!g||!g.fillText)return!1;switch(g.textBaseline="top",g.font="600 32px Arial",a){case"flag":return g.fillText(h(55356,56806,55356,56826),0,0),f.toDataURL().length>3e3;case"diversity":return g.fillText(h(55356,57221),0,0),c=g.getImageData(16,16,1,1).data,d=c[0]+","+c[1]+","+c[2]+","+c[3],g.fillText(h(55356,57221,55356,57343),0,0),c=g.getImageData(16,16,1,1).data,e=c[0]+","+c[1]+","+c[2]+","+c[3],d!==e;case"simple":return g.fillText(h(55357,56835),0,0),0!==g.getImageData(16,16,1,1).data[0];case"unicode8":return g.fillText(h(55356,57135),0,0),0!==g.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i;for(i=Array("simple","flag","unicode8","diversity"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
    		</script>
    		<style type="text/css">
    img.wp-smiley,
    img.emoji {
    	display: inline !important;
    	border: none !important;
    	box-shadow: none !important;
    	height: 1em !important;
    	width: 1em !important;
    	margin: 0 .07em !important;
    	vertical-align: -0.1em !important;
    	background: none !important;
    	padding: 0 !important;
    }
    </style>
    <link rel='stylesheet' id='contact-form-7-css'  href='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.4.2' type='text/css' media='all' />
    <link rel='stylesheet' id='dashicons-css'  href='https://www.l-mobile.com/wp-includes/css/dashicons.min.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-reset-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/css/reset.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-style-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/styles/twentyfourteen.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='credit-tracker-plugin-styles-css'  href='https://www.l-mobile.com/wp-content/plugins/credit-tracker/css/ct-public.css?ver=1.1.9' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-wpml-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-wpml/wpml-mod.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-grid-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/grid.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-base-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/base.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-layout-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/layout.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-scs-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/shortcodes.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-popup-css-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-media-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-print-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/print.css?ver=1' type='text/css' media='print' />
    <link rel='stylesheet' id='avia-dynamic-css'  href='https://www.l-mobile.com/wp-content/uploads/dynamic_avia/enfold_child.css?ver=578730a74c186' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-custom-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/custom.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-style-css'  href='https://www.l-mobile.com/wp-content/themes/enfold-child/style.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/css/layerslider.css?ver=5.6.8' type='text/css' media='all' />
          <script>
          if (document.location.protocol != "https:") {
              document.location = document.URL.replace(/^http:/i, "https:");
          }
          </script>
          <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/credit-tracker/js/ct-public.js?ver=1.1.9'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia-compat.js?ver=2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/greensock.js?ver=1.11.8'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var LS_Meta = {"v":"5.6.8"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js?ver=5.6.8'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.transitions.js?ver=5.6.8'></script>
    <meta name="generator" content="Powered by LayerSlider 5.6.8 - Multi-Purpose, Responsive, Parallax, Mobile-Friendly Slider Plugin for WordPress." />
    <!-- LayerSlider updates and docs at: https://kreaturamedia.com/layerslider-responsive-wordpress-slider-plugin/ -->
    <link rel='https://api.w.org/' href='https://www.l-mobile.com/wp-json/' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.l-mobile.com/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.l-mobile.com/wp-includes/wlwmanifest.xml" /> 
    <meta name="generator" content="WordPress 4.5.3" />
    <link rel='shortlink' href='https://www.l-mobile.com/' />
    <link rel="alternate" type="application/json+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F" />
    <link rel="alternate" type="text/xml+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F&format=xml" />
    
    <style type="text/css">
    <!--
    /* Styles by My Calendar - Joseph C Dolson http://www.joedolson.com/ */
    
    .mc-main .mc_allgemein .event-title, .mc-main .mc_allgemein .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_allgemein .event-title a:hover, .mc-main .mc_allgemein .event-title a:focus { background: #232121;}
    .mc-main .mc_projects .event-title, .mc-main .mc_projects .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_projects .event-title a:hover, .mc-main .mc_projects .event-title a:focus { background: #232121;}
    .mc-main .mc_warehouse .event-title, .mc-main .mc_warehouse .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_warehouse .event-title a:hover, .mc-main .mc_warehouse .event-title a:focus { background: #232121;}
    .mc-main .mc_trace .event-title, .mc-main .mc_trace .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_trace .event-title a:hover, .mc-main .mc_trace .event-title a:focus { background: #232121;}
    .mc-main .mc_service .event-title, .mc-main .mc_service .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_service .event-title a:hover, .mc-main .mc_service .event-title a:focus { background: #232121;}
    .mc-main .mc_industrie-4-0 .event-title, .mc-main .mc_industrie-4-0 .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_industrie-4-0 .event-title a:hover, .mc-main .mc_industrie-4-0 .event-title a:focus { background: #232121;}
    .mc-main .mc_crm-und-sales .event-title, .mc-main .mc_crm-und-sales .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_crm-und-sales .event-title a:hover, .mc-main .mc_crm-und-sales .event-title a:focus { background: #232121;}
    .mc-main .mc_infrastructure .event-title, .mc-main .mc_infrastructure .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_infrastructure .event-title a:hover, .mc-main .mc_infrastructure .event-title a:focus { background: #232121;}
    .mc-main .mc_production .event-title, .mc-main .mc_production .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_production .event-title a:hover, .mc-main .mc_production .event-title a:focus { background: #232121;}
    .mc-main .mc_l-mobile-hungary .event-title, .mc-main .mc_l-mobile-hungary .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_l-mobile-hungary .event-title a:hover, .mc-main .mc_l-mobile-hungary .event-title a:focus { background: #232121;}
    .mc-event-visible {
    display: block!important;
    }
    -->
    </style>
    <script type='text/javascript'>
    	jQuery('html').addClass('mcjs');
    	jQuery(document).ready( function($) { $('html').removeClass('mcjs') } );
    </script>
    <meta name="generator" content="WPML ver:3.4.1 stt:1,3,23;" />
    
    <style type="text/css">#lang_sel a, #lang_sel a.lang_sel_sel{color:#444444;}#lang_sel a:hover, #lang_sel a.lang_sel_sel:hover{color:#000000;}#lang_sel a.lang_sel_sel, #lang_sel a.lang_sel_sel:visited{background-color:#ffffff;}#lang_sel a.lang_sel_sel:hover{background-color:#eeeeee;}#lang_sel li ul a, #lang_sel li ul a:visited{color:#444444;}#lang_sel li ul a:hover{color:#000000;}#lang_sel li ul a, #lang_sel li ul a:link, #lang_sel li ul a:visited{background-color:#ffffff;}#lang_sel li ul a:hover{background-color:#eeeeee;}#lang_sel a, #lang_sel a:visited{border-color:#EEEEEE;} #lang_sel ul ul{border-top:1px solid #EEEEEE;}</style>
    
    <style type="text/css">#lang_sel img, #lang_sel_list img, #lang_sel_footer img { display: inline; }
    </style><link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile RSS2 Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="pingback" href="https://www.l-mobile.com/xmlrpc.php" />
    
    <style type='text/css' media='screen'>
     #top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_link{ height:70px; line-height: 70px; }
     .html_top_nav_header .av-logo-container{ height:70px;  }
     .html_header_top.html_header_sticky #top #wrap_all #main{ padding-top:100px; } 
    </style>
    <!--[if lt IE 9]><script src="https://www.l-mobile.com/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
    <link rel="icon" href="https://www.l-mobile.com/wp-content/uploads/2015/12/favicon.ico" type="image/x-icon">
    <link rel='canonical' href='https://www.l-mobile.com/' />
    <meta name='robots' content='noindex,follow' />
    	<style type="text/css">
    		.mu_register { width: 90%; margin:0 auto; }
    		.mu_register form { margin-top: 2em; }
    		.mu_register .error { font-weight:700; padding:10px; color:#333333; background:#FFEBE8; border:1px solid #CC0000; }
    		.mu_register input[type="submit"],
    			.mu_register #blog_title,
    			.mu_register #user_email,
    			.mu_register #blogname,
    			.mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; }
    		.mu_register #site-language { display: block; }
    		.mu_register .prefix_address,
    			.mu_register .suffix_address {font-size: 18px;display:inline; }
    		.mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; }
    		.mu_register label.checkbox { display:inline; }
    		.mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; }
    	</style>
    	
    
    <!--
    Debugging Info for Theme support: 
    
    Theme: Enfold
    Version: 3.6.1
    Installed: enfold
    AviaFramework Version: 4.5.3
    AviaBuilder Version: 0.8
    - - - - - - - - - - -
    ChildTheme: Enfold Child
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold
    
    ML:512-PU:23-PLA:1
    WP:4.5.3
    Updates: enabled
    -->
    
    <style type='text/css'>
    @font-face {font-family: 'entypo-fontello'; font-weight: normal; font-style: normal;
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3');
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg');
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; }
    </style><!-- WiredMinds eMetrics tracking with LeadLab V6.3 START -->
    <script type="text/javascript"><!--
    var wiredminds = [];
    wiredminds.push(["setTrackParam", "wm_custnum", "cd4beaad1ea6fe59"]);
    // Begin own parameters.
    wiredminds.push(["setTrackParam", "wm_campaign_key", "utm_campaign"]);
    var wmDynamicConf = [];
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/mitarbeiter/.*", ["setTrackParam", "wm_milestone", "Mitarbeiter"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/karriere/.*|.*unternehmen-l-mobile/jobs/.*", ["setTrackParam", "wm_milestone", "Karriere"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/standorte/.*", ["setTrackParam", "wm_milestone", "Standorte"]]);
    wmDynamicConf.push(["wm_page_url",".*referenzen/.*", ["setTrackParam", "wm_milestone", "Referenzen"]]);
    wmDynamicConf.push(["wm_page_url",".*partner/.*", ["setTrackParam", "wm_milestone", "Partner"]]);
    wmDynamicConf.push(["wm_page_url",".*kontakt/.*", ["setTrackParam", "wm_milestone", "Kontakt"]]);
    wiredminds.push(["setDynamicParams", wmDynamicConf]); 
    wiredminds.push(["setTrackParam", "wm_content_width", 1000]); // For centered layouts set content width
    wiredminds.push(["registerHeatmapEvent", "mousedown"]);
    // End own parameters.
    wiredminds.push(["count"]); 
    (function() {
    	function wm_async_load() {
    		var wm = document.createElement("script");
    		wm.type = "text/javascript";
    		wm.async = true;
    		wm.src = "//wm2.wiredminds.de/track/count.js";
    		var el = document.getElementsByTagName('script')[0];
    		el.parentNode.insertBefore(wm, el);
    	}
    	if (window.addEventListener) {
    		window.addEventListener('load', wm_async_load, false);
    	} else if (window.attachEvent){
    		window.attachEvent('onload', wm_async_load);
    	}
    })();
    // -->
    </script>
    <noscript>
    <div>
    <a href="http://www.wiredminds.de"><img
     src="//wm2.wiredminds.de/track/ctin.php?wm_custnum=cd4beaad1ea6fe59&nojs=1"
     alt="" style="border:0px;"/></a></div></noscript>
    <!-- WiredMinds eMetrics tracking with LeadLab V6.3 END -->
    
    <!-- Google Analytics START -->
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    
      ga('create', 'UA-68037290-1', 'auto');
      ga('require', 'linkid');
      ga('send', 'pageview');
    
    </script>
    <!-- Google Analytics END -->
    </head>
    
    <body id="top" class="home page page-id-66 page-template-default stretched open_sans " itemscope="itemscope" itemtype="https://schema.org/WebPage" >
    
    	
    	<div id='wrap_all'>
    
    	
    <header id='header' class='all_colors header_color light_bg_color  av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_seperator_small_border av_minimal_header av_minimal_header_shadow av_bottom_nav_disabled '  role="banner" itemscope="itemscope" itemtype="https://schema.org/WPHeader" >
    
    <a id="advanced_menu_toggle" href="#" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a><a id="advanced_menu_hide" href="#" 	aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a>		<div id='header_meta' class='container_wrap container_wrap_meta  av_icon_active_right av_extra_header_active av_secondary_right av_phone_active_left av_entry_id_66'>
    		
    			      <div class='container'>
    			      <ul class='noLightbox social_bookmarks icon_count_2'><li class='social_bookmarks_xing av-social-link-xing social_icon_1'><a target='_blank' href='https://www.xing.com/company/l-mobile' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Xing'><span class='avia_hidden_link_text'>Xing</span></a></li></ul><nav class='sub_menu'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><ul id="avia2-menu" class="menu"><li id="menu-item-959" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-959"><a href="https://www.l-mobile.com/">L-mobile Produktportfolio ∇</a>
    <ul class="sub-menu">
    	<li id="menu-item-961" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-961"><a href="http://warehouse.l-mobile.com">L-mobile warehouse</a></li>
    	<li id="menu-item-965" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-965"><a href="http://trace.l-mobile.com">L-mobile trace</a></li>
    	<li id="menu-item-964" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-964"><a href="http://production.l-mobile.com">L-mobile production</a></li>
    	<li id="menu-item-963" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-963"><a href="http://industrie40.l-mobile.com">L-mobile industrie 4.0</a></li>
    	<li id="menu-item-966" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-966"><a href="http://crm-sales.l-mobile.com">L-mobile CRM & sales</a></li>
    	<li id="menu-item-962" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-962"><a href="http://service.l-mobile.com">L-mobile service</a></li>
    	<li id="menu-item-969" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-969"><a href="http://projects.l-mobile.com">L-mobile projects</a></li>
    	<li id="menu-item-967" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-967"><a href="http://infrastructure.l-mobile.com">L-mobile infrastructure</a></li>
    </ul>
    </li>
    </ul><ul class='avia_wpml_language_switch avia_wpml_language_switch_extra'><li class='language_de avia_current_lang'><a href='https://www.l-mobile.com/'>	<span class='language_flag'><img title='Deutsch' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/de.png' alt='Deutsch' /></span>	<span class='language_native'>Deutsch</span>	<span class='language_translated'>Deutsch</span>	<span class='language_code'>de</span></a></li><li class='language_en '><a href='https://www.l-mobile.com/en/'>	<span class='language_flag'><img title='English' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/en.png' alt='English' /></span>	<span class='language_native'>English</span>	<span class='language_translated'>Englisch</span>	<span class='language_code'>en</span></a></li><li class='language_hu '><a href='https://www.l-mobile.com/hu/'>	<span class='language_flag'><img title='Magyar' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/hu.png' alt='Magyar' /></span>	<span class='language_native'>Magyar</span>	<span class='language_translated'>Ungarisch</span>	<span class='language_code'>hu</span></a></li></ul></nav><div class='phone-info with_nav'><span>Rufen Sie uns an <strong>+49 (0) 7193 93 12-0</strong></span></div>			      </div>
    		</div>
    
    		<div  id='header_main' class='container_wrap container_wrap_logo'>
    	
            <div class='container av-logo-container'><div class='inner-container'><strong class='logo'><a href='https://www.l-mobile.com/'><img height='100' width='300' src='https://www.l-mobile.com/wp-content/uploads/2016/01/L-mobile_Web.jpg' alt='L-mobile' /></a></strong><nav class='main_menu' data-selectname='Seite auswählen'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia-menu av-main-nav-wrap"><ul id="avia-menu" class="menu av-main-nav"><li id="menu-item-151" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile Produktportfolio</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-159" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://warehouse.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile warehouse</span></a></li>
    	<li id="menu-item-160" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://production.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile production</span></a></li>
    	<li id="menu-item-161" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://industrie40.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile industrie 4.0</span></a></li>
    	<li id="menu-item-162" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://trace.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile trace</span></a></li>
    	<li id="menu-item-163" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://service.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile service</span></a></li>
    	<li id="menu-item-164" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://crm-sales.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile CRM & sales</span></a></li>
    	<li id="menu-item-165" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://projects.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile projects</span></a></li>
    	<li id="menu-item-166" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://infrastructure.l-mobile.com/?" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile infrastructure</span></a></li>
    </ul>
    </li>
    <li id="menu-item-169" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/unternehmen-l-mobile/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Das Unternehmen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-172" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/unternehmensphilosophie/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Unternehmensphilosophie</span></a></li>
    	<li id="menu-item-190" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/auszeichnungen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Auszeichnungen</span></a></li>
    	<li id="menu-item-1912" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/event-kalender/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Event Kalender</span></a></li>
    	<li id="menu-item-206" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/standorte/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Wo finden Sie L-mobile</span></a></li>
    	<li id="menu-item-223" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/mitarbeiter/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Mitarbeiter</span></a></li>
    	<li id="menu-item-248" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/karriere/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Karriere</span></a></li>
    	<li id="menu-item-332" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Jobbörse</span></a></li>
    </ul>
    </li>
    <li id="menu-item-448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-3"><a href="https://www.l-mobile.com/referenzen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Referenzen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-469" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-4"><a href="https://www.l-mobile.com/partner/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Partner</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-466" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-5"><a href="https://www.l-mobile.com/kontakt/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Kontakt</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">
    							<a href="?s=" rel="nofollow" data-avia-search-tooltip="
    
    <form action=&quot;https://www.l-mobile.com/&quot; id=&quot;searchform&quot; method=&quot;get&quot; class=&quot;&quot;>
    	<div>
    		<input type=&quot;submit&quot; value=&quot;&quot; id=&quot;searchsubmit&quot; class=&quot;button avia-font-entypo-fontello&quot; />
    		<input type=&quot;text&quot; id=&quot;s&quot; name=&quot;s&quot; value=&quot;&quot; placeholder='Suche' />
    			</div>
    </form>" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Suche</span></a>
    	        		   </li></ul></div></nav></div> </div> 
    		<!-- end container_wrap-->
    		</div>
    		
    		<div class='header_bg'></div>
    
    <!-- end header -->
    </header>
    		
    	<div id='main' class='all_colors' data-scroll-offset='70'>
    
    	<div id="signup-content" class="widecolumn">
    <div class="mu_register wp-signup-container">
    Die Registrierung wurde deaktiviert.</div>
    </div>
    
    						<div class='container_wrap footer_color' id='footer'>
    
    					<div class='container'>
    
    						<div class='flex_column av_one_fourth  first el_before_av_one_fourth'><section id="text_icl-6" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Praxis-Info</h3>        <div class="textwidget">Alles über mobile Geschäftsprozesse.<br/><a title="L-mobile Praxis-Info" target="_blank" href="http://praxis-info.l-mobile.com/f/16463-86716/">Anmelden</a> für die L-mobile Praxis-Info!</div>
    <span class="seperator extralight-border"></span></section><section id="text_icl-47" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile downloadcenter</h3>        <div class="textwidget">Alle Dokumente im Überblick finden Sie im <a title="L-mobile downloadcenter" href="http://downloadcenter.l-mobile.com/">Downloadcenter</a>.</div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-4" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Jobbörse</h3>        <div class="textwidget">Wir sind ständig auf der Suche nach neuen Kollegen.<br/><a title="L-mobile GmbH Jobbörse" target="_blank" href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/">Hier zur Jobbörse</a></div>
    <span class="seperator extralight-border"></span></section><section id="avia_partner_widget-2" class="widget clearfix avia_partner_widget"><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background  avia_partner1 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/top_company.png" title="" alt=""/></a><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background avia_partner2 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/open_company.png" title="" alt=""/></a><span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-30" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Veranstaltungen</h3>        <div class="textwidget"><ul id='upcoming-events' class='upcoming-events'>
    <li class="future-event mc_crm-und-sales"><strong>26. Juli 2016</strong>, 10:00:<br/> <a title='CRM und sales Webcast' href='https://www.l-mobile.com/event-kalender/crm-und-sales-webcast-14/?mc_id=76'>CRM und sales Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_industrie-4-0"><strong>3. August 2016</strong>, 10:00:<br/> <a title='industrie 4.0 Webcast' href='https://www.l-mobile.com/event-kalender/industrie-4-0-webcast-13/?mc_id=68'>industrie 4.0 Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_projects"><strong>4. August 2016</strong>, 10:00:<br/> <a title='projects Webcast' href='https://www.l-mobile.com/event-kalender/projects-webcast-20/?mc_id=57'>projects Webcast</a><div style='height:5px'>&nbsp;</div></li>
    </ul></div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-2" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile Online Präsentation</h3>        <div class="textwidget"><div class="teamviewer">
    
    <div class="link-exe">
    
    <a target="_blank" href="https://go.teamviewer.com/l-mobile" title="Online-Präsentation in der App">App für Windows</a>
    </div>
    <hr style="border:solid #fff 1px;margin:0 7px 0 70px;">
    <div class="link-browser">
    <a target="_blank" title="Online-Präsentation im Browser" href="https://go.teamviewer.com/v11/flash.aspx?lng=de">Im Browser starten</a>
    
    </div>
    
    <div class="link-beratung">
    
    <a target="_blank" title="Persönlichen Termin vereinbaren" href="https://www.l-mobile.com/online-praesentation-wie-sie-es-wuenschen/">Persönlichen Termin vereinbaren</a>
    </div>
    </div>
    
    </div>
    <span class="seperator extralight-border"></span></section></div>
    
    					</div>
    
    				<!-- ####### END FOOTER CONTAINER ####### -->
    				</div>
    
    	
    
    			
    
    			
    				<footer class='container_wrap socket_color' id='socket'  role="contentinfo" itemscope="itemscope" itemtype="https://schema.org/WPFooter" >
                        <div class='container'>
    
                            <span class='copyright'>© Copyright 2016 - L-mobile | mobile Softwarelösungen</span>
    
                            <nav class='sub_menu_socket'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia3-menu"><ul id="avia3-menu" class="menu"><li id="menu-item-60" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com/impressum/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Impressum</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-2027" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/datenschutzerklaerung/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Datenschutzerklärung</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    </ul></div></nav>
                        </div>
    
    	            <!-- ####### END SOCKET CONTAINER ####### -->
    				</footer>
    
    					<!-- end main -->
    		</div>
    		
    		<!-- end wrap_all --></div>
    
     <script type='text/javascript'>
     /* <![CDATA[ */  
    var avia_framework_globals = avia_framework_globals || {};
        avia_framework_globals.frameworkUrl = 'https://www.l-mobile.com/wp-content/themes/enfold/framework/';
        avia_framework_globals.installedAt = 'https://www.l-mobile.com/wp-content/themes/enfold/';
        avia_framework_globals.ajaxurl = 'https://www.l-mobile.com/wp-admin/admin-ajax.php?lang=de';
    /* ]]> */ 
    </script>
     
     <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var _wpcf7 = {"loaderUrl":"https:\/\/www.l-mobile.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","recaptchaEmpty":"Bitte best\u00e4tige, dass du nicht eine Maschine bist.","sending":"Senden ...","cached":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.4.2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/shortcodes.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=2'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var mejsL10n = {"language":"de-DE","strings":{"Close":"Schlie\u00dfen","Fullscreen":"Vollbild","Download File":"Datei herunterladen","Download Video":"Video herunterladen","Play\/Pause":"Abspielen\/Pause","Mute Toggle":"Stumm schalten","None":"Keine","Turn off Fullscreen":"Vollbild ausschalten","Go Fullscreen":"Vollbild einschalten","Unmute":"Laut schalten","Mute":"Stumm","Captions\/Subtitles":"Untertitel"}};
    var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.18.1-a'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/wp-mediaelement.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/comment-reply.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/wp-embed.min.js?ver=4.5.3'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var icl_vars = {"current_language":"de","icl_home":"https:\/\/www.l-mobile.com\/","ajax_url":"https:\/\/www.l-mobile.com\/wp-admin\/admin-ajax.php","url_type":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/js/sitepress.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-grid.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-list.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-mini.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-ajax.js?ver=4.5.3'></script>
    <a href='#top' title='Nach oben scrollen' id='scroll-top-link' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Nach oben scrollen</span></a>
    
    <div id="fb-root"></div>
    </body>
    </html>
    
    <!-- Gator Cached page on [2016-07-17 13:01:37] -->
    <!-- Served by Advanced Cache www.l-mobile.com -->
    #661206
    L-mobileGroup
    Participant

    Hallo Zusammen

    wir haben seit einiger Zeit das Problem das sich quasi über Nacht in unserer Firmen Multisite Installation die Startseite ändert… Dies geschieht tatsächlich jeweils über Nacht…. Wir bringen das Problem mit Enfold in Verbindung da sich hier in den Theme Einstellungen das Problem auch wieder beheben lässt, jedoch leider nur für kurze Zeit.

    Ich habe einen Screenshot angefügt um das Problem zu veranschaulichen. Wir erhalten gerade nahezu jeden Morgen die unerfreuliche Startseiten Ansicht “Die Registrierung wurde deaktiviert”.

    • Content der Startseite fehlt
    • Header und Footer sind da
    • CSS Dateien werden geladen

    Das Problem kann behoben werden in dem wir im wordpress Backend unter ENFOLD –> Enfold Child (DE) Optionen –> Frontpage Settings –> die Startseiten Auswahl abändern wieder zurückstellen und dann speichern –> wir leeren dann noch den Cache von Gator Cache –> Startseite wieder da……

    Gibt es da bekannte Ursachen/ mögliche Zusammenhänge für das Problem?

    Grüße und Danke für Eure Hilfe Marc Bracher

    Source code:

    
    <!DOCTYPE html>
    <html lang="de-DE" class="html_stretched responsive av-preloader-disabled av-default-lightbox  html_header_top html_logo_left html_main_nav_header html_menu_right html_custom html_header_sticky html_header_shrinking_disabled html_header_topbar_active html_mobile_menu_tablet html_header_mobile_behavior html_header_searchicon html_content_align_center html_header_unstick_top_disabled html_header_stretch_disabled html_minimal_header html_minimal_header_shadow html_entry_id_66 ">
    <head>
    <meta charset="UTF-8" />
    
    <!-- mobile setting -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    
    <!-- Scripts/CSS and wp_head hook -->
    <title>L-mobile macht Geschäftsprozesse mobil - L-mobile</title>
    <link rel="alternate" hreflang="de-DE" href="https://www.l-mobile.com/" />
    <link rel="alternate" hreflang="en-US" href="https://www.l-mobile.com/en/" />
    <link rel="alternate" hreflang="hu-HU" href="https://www.l-mobile.com/hu/" />
    
    <!-- This site is optimized with the Yoast SEO Premium plugin v3.3.3 - https://yoast.com/wordpress/plugins/seo/ -->
    <meta name="description" content="Am Anfang von L-mobile stand die Idee komplexe und starre Datenerfassungssysteme einfach und mobil - und damit transparenter und produktiver zu machen. "/>
    <meta name="robots" content="noodp"/>
    <link rel="canonical" href="https://www.l-mobile.com/" />
    <meta property="DC.date.issued" content="2015-12-03T14:50:53+02:00" />
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"WebSite","url":"https:\/\/www.l-mobile.com\/","name":"L-mobile GmbH","potentialAction":{"@type":"SearchAction","target":"https:\/\/www.l-mobile.com\/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"Organization","url":"https:\/\/www.l-mobile.com\/","sameAs":[],"name":"L-mobile GmbH","logo":"https:\/\/www.l-mobile.com\/wp-content\/uploads\/2015\/12\/L-mobile_Web.png"}</script>
    <!-- / Yoast SEO Premium plugin. -->
    
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Kommentar-Feed" href="https://www.l-mobile.com/comments/feed/" />
    
    <!-- google webfont font replacement -->
    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Open+Sans:400,600' type='text/css' media='all'/> 
    		<script type="text/javascript">
    			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"https:\/\/www.l-mobile.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.5.3"}};
    			!function(a,b,c){function d(a){var c,d,e,f=b.createElement("canvas"),g=f.getContext&&f.getContext("2d"),h=String.fromCharCode;if(!g||!g.fillText)return!1;switch(g.textBaseline="top",g.font="600 32px Arial",a){case"flag":return g.fillText(h(55356,56806,55356,56826),0,0),f.toDataURL().length>3e3;case"diversity":return g.fillText(h(55356,57221),0,0),c=g.getImageData(16,16,1,1).data,d=c[0]+","+c[1]+","+c[2]+","+c[3],g.fillText(h(55356,57221,55356,57343),0,0),c=g.getImageData(16,16,1,1).data,e=c[0]+","+c[1]+","+c[2]+","+c[3],d!==e;case"simple":return g.fillText(h(55357,56835),0,0),0!==g.getImageData(16,16,1,1).data[0];case"unicode8":return g.fillText(h(55356,57135),0,0),0!==g.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i;for(i=Array("simple","flag","unicode8","diversity"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
    		</script>
    		<style type="text/css">
    img.wp-smiley,
    img.emoji {
    	display: inline !important;
    	border: none !important;
    	box-shadow: none !important;
    	height: 1em !important;
    	width: 1em !important;
    	margin: 0 .07em !important;
    	vertical-align: -0.1em !important;
    	background: none !important;
    	padding: 0 !important;
    }
    </style>
    <link rel='stylesheet' id='contact-form-7-css'  href='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.4.2' type='text/css' media='all' />
    <link rel='stylesheet' id='dashicons-css'  href='https://www.l-mobile.com/wp-includes/css/dashicons.min.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-reset-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/css/reset.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-style-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/styles/twentyfourteen.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='credit-tracker-plugin-styles-css'  href='https://www.l-mobile.com/wp-content/plugins/credit-tracker/css/ct-public.css?ver=1.1.9' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-wpml-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-wpml/wpml-mod.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-grid-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/grid.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-base-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/base.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-layout-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/layout.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-scs-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/shortcodes.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-popup-css-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-media-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-print-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/print.css?ver=1' type='text/css' media='print' />
    <link rel='stylesheet' id='avia-dynamic-css'  href='https://www.l-mobile.com/wp-content/uploads/dynamic_avia/enfold_child.css?ver=578730a74c186' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-custom-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/custom.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-style-css'  href='https://www.l-mobile.com/wp-content/themes/enfold-child/style.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/css/layerslider.css?ver=5.6.8' type='text/css' media='all' />
          <script>
          if (document.location.protocol != "https:") {
              document.location = document.URL.replace(/^http:/i, "https:");
          }
          </script>
          <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/credit-tracker/js/ct-public.js?ver=1.1.9'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia-compat.js?ver=2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/greensock.js?ver=1.11.8'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var LS_Meta = {"v":"5.6.8"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js?ver=5.6.8'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.transitions.js?ver=5.6.8'></script>
    <meta name="generator" content="Powered by LayerSlider 5.6.8 - Multi-Purpose, Responsive, Parallax, Mobile-Friendly Slider Plugin for WordPress." />
    <!-- LayerSlider updates and docs at: https://kreaturamedia.com/layerslider-responsive-wordpress-slider-plugin/ -->
    <link rel='https://api.w.org/' href='https://www.l-mobile.com/wp-json/' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.l-mobile.com/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.l-mobile.com/wp-includes/wlwmanifest.xml" /> 
    <meta name="generator" content="WordPress 4.5.3" />
    <link rel='shortlink' href='https://www.l-mobile.com/' />
    <link rel="alternate" type="application/json+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F" />
    <link rel="alternate" type="text/xml+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F&format=xml" />
    
    <style type="text/css">
    <!--
    /* Styles by My Calendar - Joseph C Dolson http://www.joedolson.com/ */
    
    .mc-main .mc_allgemein .event-title, .mc-main .mc_allgemein .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_allgemein .event-title a:hover, .mc-main .mc_allgemein .event-title a:focus { background: #232121;}
    .mc-main .mc_projects .event-title, .mc-main .mc_projects .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_projects .event-title a:hover, .mc-main .mc_projects .event-title a:focus { background: #232121;}
    .mc-main .mc_warehouse .event-title, .mc-main .mc_warehouse .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_warehouse .event-title a:hover, .mc-main .mc_warehouse .event-title a:focus { background: #232121;}
    .mc-main .mc_trace .event-title, .mc-main .mc_trace .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_trace .event-title a:hover, .mc-main .mc_trace .event-title a:focus { background: #232121;}
    .mc-main .mc_service .event-title, .mc-main .mc_service .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_service .event-title a:hover, .mc-main .mc_service .event-title a:focus { background: #232121;}
    .mc-main .mc_industrie-4-0 .event-title, .mc-main .mc_industrie-4-0 .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_industrie-4-0 .event-title a:hover, .mc-main .mc_industrie-4-0 .event-title a:focus { background: #232121;}
    .mc-main .mc_crm-und-sales .event-title, .mc-main .mc_crm-und-sales .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_crm-und-sales .event-title a:hover, .mc-main .mc_crm-und-sales .event-title a:focus { background: #232121;}
    .mc-main .mc_infrastructure .event-title, .mc-main .mc_infrastructure .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_infrastructure .event-title a:hover, .mc-main .mc_infrastructure .event-title a:focus { background: #232121;}
    .mc-main .mc_production .event-title, .mc-main .mc_production .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_production .event-title a:hover, .mc-main .mc_production .event-title a:focus { background: #232121;}
    .mc-main .mc_l-mobile-hungary .event-title, .mc-main .mc_l-mobile-hungary .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_l-mobile-hungary .event-title a:hover, .mc-main .mc_l-mobile-hungary .event-title a:focus { background: #232121;}
    .mc-event-visible {
    display: block!important;
    }
    -->
    </style>
    <script type='text/javascript'>
    	jQuery('html').addClass('mcjs');
    	jQuery(document).ready( function($) { $('html').removeClass('mcjs') } );
    </script>
    <meta name="generator" content="WPML ver:3.4.1 stt:1,3,23;" />
    
    <style type="text/css">#lang_sel a, #lang_sel a.lang_sel_sel{color:#444444;}#lang_sel a:hover, #lang_sel a.lang_sel_sel:hover{color:#000000;}#lang_sel a.lang_sel_sel, #lang_sel a.lang_sel_sel:visited{background-color:#ffffff;}#lang_sel a.lang_sel_sel:hover{background-color:#eeeeee;}#lang_sel li ul a, #lang_sel li ul a:visited{color:#444444;}#lang_sel li ul a:hover{color:#000000;}#lang_sel li ul a, #lang_sel li ul a:link, #lang_sel li ul a:visited{background-color:#ffffff;}#lang_sel li ul a:hover{background-color:#eeeeee;}#lang_sel a, #lang_sel a:visited{border-color:#EEEEEE;} #lang_sel ul ul{border-top:1px solid #EEEEEE;}</style>
    
    <style type="text/css">#lang_sel img, #lang_sel_list img, #lang_sel_footer img { display: inline; }
    </style><link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile RSS2 Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="pingback" href="https://www.l-mobile.com/xmlrpc.php" />
    
    <style type='text/css' media='screen'>
     #top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_link{ height:70px; line-height: 70px; }
     .html_top_nav_header .av-logo-container{ height:70px;  }
     .html_header_top.html_header_sticky #top #wrap_all #main{ padding-top:100px; } 
    </style>
    <!--[if lt IE 9]><script src="https://www.l-mobile.com/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
    <link rel="icon" href="https://www.l-mobile.com/wp-content/uploads/2015/12/favicon.ico" type="image/x-icon">
    <link rel='canonical' href='https://www.l-mobile.com/' />
    <meta name='robots' content='noindex,follow' />
    	<style type="text/css">
    		.mu_register { width: 90%; margin:0 auto; }
    		.mu_register form { margin-top: 2em; }
    		.mu_register .error { font-weight:700; padding:10px; color:#333333; background:#FFEBE8; border:1px solid #CC0000; }
    		.mu_register input[type="submit"],
    			.mu_register #blog_title,
    			.mu_register #user_email,
    			.mu_register #blogname,
    			.mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; }
    		.mu_register #site-language { display: block; }
    		.mu_register .prefix_address,
    			.mu_register .suffix_address {font-size: 18px;display:inline; }
    		.mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; }
    		.mu_register label.checkbox { display:inline; }
    		.mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; }
    	</style>
    	
    
    <!--
    Debugging Info for Theme support: 
    
    Theme: Enfold
    Version: 3.6.1
    Installed: enfold
    AviaFramework Version: 4.5.3
    AviaBuilder Version: 0.8
    - - - - - - - - - - -
    ChildTheme: Enfold Child
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold
    
    ML:512-PU:23-PLA:1
    WP:4.5.3
    Updates: enabled
    -->
    
    <style type='text/css'>
    @font-face {font-family: 'entypo-fontello'; font-weight: normal; font-style: normal;
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3');
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg');
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; }
    </style><!-- WiredMinds eMetrics tracking with LeadLab V6.3 START -->
    <script type="text/javascript"><!--
    var wiredminds = [];
    wiredminds.push(["setTrackParam", "wm_custnum", "cd4beaad1ea6fe59"]);
    // Begin own parameters.
    wiredminds.push(["setTrackParam", "wm_campaign_key", "utm_campaign"]);
    var wmDynamicConf = [];
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/mitarbeiter/.*", ["setTrackParam", "wm_milestone", "Mitarbeiter"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/karriere/.*|.*unternehmen-l-mobile/jobs/.*", ["setTrackParam", "wm_milestone", "Karriere"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/standorte/.*", ["setTrackParam", "wm_milestone", "Standorte"]]);
    wmDynamicConf.push(["wm_page_url",".*referenzen/.*", ["setTrackParam", "wm_milestone", "Referenzen"]]);
    wmDynamicConf.push(["wm_page_url",".*partner/.*", ["setTrackParam", "wm_milestone", "Partner"]]);
    wmDynamicConf.push(["wm_page_url",".*kontakt/.*", ["setTrackParam", "wm_milestone", "Kontakt"]]);
    wiredminds.push(["setDynamicParams", wmDynamicConf]); 
    wiredminds.push(["setTrackParam", "wm_content_width", 1000]); // For centered layouts set content width
    wiredminds.push(["registerHeatmapEvent", "mousedown"]);
    // End own parameters.
    wiredminds.push(["count"]); 
    (function() {
    	function wm_async_load() {
    		var wm = document.createElement("script");
    		wm.type = "text/javascript";
    		wm.async = true;
    		wm.src = "//wm2.wiredminds.de/track/count.js";
    		var el = document.getElementsByTagName('script')[0];
    		el.parentNode.insertBefore(wm, el);
    	}
    	if (window.addEventListener) {
    		window.addEventListener('load', wm_async_load, false);
    	} else if (window.attachEvent){
    		window.attachEvent('onload', wm_async_load);
    	}
    })();
    // -->
    </script>
    <noscript>
    <div>
    <a href="http://www.wiredminds.de"><img
     src="//wm2.wiredminds.de/track/ctin.php?wm_custnum=cd4beaad1ea6fe59&nojs=1"
     alt="" style="border:0px;"/></a></div></noscript>
    <!-- WiredMinds eMetrics tracking with LeadLab V6.3 END -->
    
    <!-- Google Analytics START -->
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    
      ga('create', 'UA-68037290-1', 'auto');
      ga('require', 'linkid');
      ga('send', 'pageview');
    
    </script>
    <!-- Google Analytics END -->
    </head>
    
    <body id="top" class="home page page-id-66 page-template-default stretched open_sans " itemscope="itemscope" itemtype="https://schema.org/WebPage" >
    
    	
    	<div id='wrap_all'>
    
    	
    <header id='header' class='all_colors header_color light_bg_color  av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_seperator_small_border av_minimal_header av_minimal_header_shadow av_bottom_nav_disabled '  role="banner" itemscope="itemscope" itemtype="https://schema.org/WPHeader" >
    
    <a id="advanced_menu_toggle" href="#" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a><a id="advanced_menu_hide" href="#" 	aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a>		<div id='header_meta' class='container_wrap container_wrap_meta  av_icon_active_right av_extra_header_active av_secondary_right av_phone_active_left av_entry_id_66'>
    		
    			      <div class='container'>
    			      <ul class='noLightbox social_bookmarks icon_count_2'><li class='social_bookmarks_xing av-social-link-xing social_icon_1'><a target='_blank' href='https://www.xing.com/company/l-mobile' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Xing'><span class='avia_hidden_link_text'>Xing</span></a></li></ul><nav class='sub_menu'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><ul id="avia2-menu" class="menu"><li id="menu-item-959" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-959"><a href="https://www.l-mobile.com/">L-mobile Produktportfolio ∇</a>
    <ul class="sub-menu">
    	<li id="menu-item-961" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-961"><a href="http://warehouse.l-mobile.com">L-mobile warehouse</a></li>
    	<li id="menu-item-965" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-965"><a href="http://trace.l-mobile.com">L-mobile trace</a></li>
    	<li id="menu-item-964" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-964"><a href="http://production.l-mobile.com">L-mobile production</a></li>
    	<li id="menu-item-963" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-963"><a href="http://industrie40.l-mobile.com">L-mobile industrie 4.0</a></li>
    	<li id="menu-item-966" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-966"><a href="http://crm-sales.l-mobile.com">L-mobile CRM & sales</a></li>
    	<li id="menu-item-962" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-962"><a href="http://service.l-mobile.com">L-mobile service</a></li>
    	<li id="menu-item-969" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-969"><a href="http://projects.l-mobile.com">L-mobile projects</a></li>
    	<li id="menu-item-967" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-967"><a href="http://infrastructure.l-mobile.com">L-mobile infrastructure</a></li>
    </ul>
    </li>
    </ul><ul class='avia_wpml_language_switch avia_wpml_language_switch_extra'><li class='language_de avia_current_lang'><a href='https://www.l-mobile.com/'>	<span class='language_flag'><img title='Deutsch' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/de.png' alt='Deutsch' /></span>	<span class='language_native'>Deutsch</span>	<span class='language_translated'>Deutsch</span>	<span class='language_code'>de</span></a></li><li class='language_en '><a href='https://www.l-mobile.com/en/'>	<span class='language_flag'><img title='English' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/en.png' alt='English' /></span>	<span class='language_native'>English</span>	<span class='language_translated'>Englisch</span>	<span class='language_code'>en</span></a></li><li class='language_hu '><a href='https://www.l-mobile.com/hu/'>	<span class='language_flag'><img title='Magyar' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/hu.png' alt='Magyar' /></span>	<span class='language_native'>Magyar</span>	<span class='language_translated'>Ungarisch</span>	<span class='language_code'>hu</span></a></li></ul></nav><div class='phone-info with_nav'><span>Rufen Sie uns an <strong>+49 (0) 7193 93 12-0</strong></span></div>			      </div>
    		</div>
    
    		<div  id='header_main' class='container_wrap container_wrap_logo'>
    	
            <div class='container av-logo-container'><div class='inner-container'><strong class='logo'><a href='https://www.l-mobile.com/'><img height='100' width='300' src='https://www.l-mobile.com/wp-content/uploads/2016/01/L-mobile_Web.jpg' alt='L-mobile' /></a></strong><nav class='main_menu' data-selectname='Seite auswählen'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia-menu av-main-nav-wrap"><ul id="avia-menu" class="menu av-main-nav"><li id="menu-item-151" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile Produktportfolio</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-159" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://warehouse.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile warehouse</span></a></li>
    	<li id="menu-item-160" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://production.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile production</span></a></li>
    	<li id="menu-item-161" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://industrie40.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile industrie 4.0</span></a></li>
    	<li id="menu-item-162" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://trace.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile trace</span></a></li>
    	<li id="menu-item-163" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://service.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile service</span></a></li>
    	<li id="menu-item-164" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://crm-sales.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile CRM & sales</span></a></li>
    	<li id="menu-item-165" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://projects.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile projects</span></a></li>
    	<li id="menu-item-166" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://infrastructure.l-mobile.com/?" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile infrastructure</span></a></li>
    </ul>
    </li>
    <li id="menu-item-169" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/unternehmen-l-mobile/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Das Unternehmen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-172" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/unternehmensphilosophie/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Unternehmensphilosophie</span></a></li>
    	<li id="menu-item-190" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/auszeichnungen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Auszeichnungen</span></a></li>
    	<li id="menu-item-1912" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/event-kalender/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Event Kalender</span></a></li>
    	<li id="menu-item-206" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/standorte/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Wo finden Sie L-mobile</span></a></li>
    	<li id="menu-item-223" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/mitarbeiter/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Mitarbeiter</span></a></li>
    	<li id="menu-item-248" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/karriere/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Karriere</span></a></li>
    	<li id="menu-item-332" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Jobbörse</span></a></li>
    </ul>
    </li>
    <li id="menu-item-448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-3"><a href="https://www.l-mobile.com/referenzen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Referenzen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-469" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-4"><a href="https://www.l-mobile.com/partner/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Partner</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-466" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-5"><a href="https://www.l-mobile.com/kontakt/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Kontakt</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">
    							<a href="?s=" rel="nofollow" data-avia-search-tooltip="
    
    <form action=&quot;https://www.l-mobile.com/&quot; id=&quot;searchform&quot; method=&quot;get&quot; class=&quot;&quot;>
    	<div>
    		<input type=&quot;submit&quot; value=&quot;&quot; id=&quot;searchsubmit&quot; class=&quot;button avia-font-entypo-fontello&quot; />
    		<input type=&quot;text&quot; id=&quot;s&quot; name=&quot;s&quot; value=&quot;&quot; placeholder='Suche' />
    			</div>
    </form>" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Suche</span></a>
    	        		   </li></ul></div></nav></div> </div> 
    		<!-- end container_wrap-->
    		</div>
    		
    		<div class='header_bg'></div>
    
    <!-- end header -->
    </header>
    		
    	<div id='main' class='all_colors' data-scroll-offset='70'>
    
    	<div id="signup-content" class="widecolumn">
    <div class="mu_register wp-signup-container">
    Die Registrierung wurde deaktiviert.</div>
    </div>
    
    						<div class='container_wrap footer_color' id='footer'>
    
    					<div class='container'>
    
    						<div class='flex_column av_one_fourth  first el_before_av_one_fourth'><section id="text_icl-6" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Praxis-Info</h3>        <div class="textwidget">Alles über mobile Geschäftsprozesse.<br/><a title="L-mobile Praxis-Info" target="_blank" href="http://praxis-info.l-mobile.com/f/16463-86716/">Anmelden</a> für die L-mobile Praxis-Info!</div>
    <span class="seperator extralight-border"></span></section><section id="text_icl-47" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile downloadcenter</h3>        <div class="textwidget">Alle Dokumente im Überblick finden Sie im <a title="L-mobile downloadcenter" href="http://downloadcenter.l-mobile.com/">Downloadcenter</a>.</div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-4" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Jobbörse</h3>        <div class="textwidget">Wir sind ständig auf der Suche nach neuen Kollegen.<br/><a title="L-mobile GmbH Jobbörse" target="_blank" href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/">Hier zur Jobbörse</a></div>
    <span class="seperator extralight-border"></span></section><section id="avia_partner_widget-2" class="widget clearfix avia_partner_widget"><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background  avia_partner1 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/top_company.png" title="" alt=""/></a><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background avia_partner2 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/open_company.png" title="" alt=""/></a><span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-30" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Veranstaltungen</h3>        <div class="textwidget"><ul id='upcoming-events' class='upcoming-events'>
    <li class="future-event mc_crm-und-sales"><strong>26. Juli 2016</strong>, 10:00:<br/> <a title='CRM und sales Webcast' href='https://www.l-mobile.com/event-kalender/crm-und-sales-webcast-14/?mc_id=76'>CRM und sales Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_industrie-4-0"><strong>3. August 2016</strong>, 10:00:<br/> <a title='industrie 4.0 Webcast' href='https://www.l-mobile.com/event-kalender/industrie-4-0-webcast-13/?mc_id=68'>industrie 4.0 Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_projects"><strong>4. August 2016</strong>, 10:00:<br/> <a title='projects Webcast' href='https://www.l-mobile.com/event-kalender/projects-webcast-20/?mc_id=57'>projects Webcast</a><div style='height:5px'>&nbsp;</div></li>
    </ul></div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-2" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile Online Präsentation</h3>        <div class="textwidget"><div class="teamviewer">
    
    <div class="link-exe">
    
    <a target="_blank" href="https://go.teamviewer.com/l-mobile" title="Online-Präsentation in der App">App für Windows</a>
    </div>
    <hr style="border:solid #fff 1px;margin:0 7px 0 70px;">
    <div class="link-browser">
    <a target="_blank" title="Online-Präsentation im Browser" href="https://go.teamviewer.com/v11/flash.aspx?lng=de">Im Browser starten</a>
    
    </div>
    
    <div class="link-beratung">
    
    <a target="_blank" title="Persönlichen Termin vereinbaren" href="https://www.l-mobile.com/online-praesentation-wie-sie-es-wuenschen/">Persönlichen Termin vereinbaren</a>
    </div>
    </div>
    
    </div>
    <span class="seperator extralight-border"></span></section></div>
    
    					</div>
    
    				<!-- ####### END FOOTER CONTAINER ####### -->
    				</div>
    
    	
    
    			
    
    			
    				<footer class='container_wrap socket_color' id='socket'  role="contentinfo" itemscope="itemscope" itemtype="https://schema.org/WPFooter" >
                        <div class='container'>
    
                            <span class='copyright'>© Copyright 2016 - L-mobile | mobile Softwarelösungen</span>
    
                            <nav class='sub_menu_socket'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia3-menu"><ul id="avia3-menu" class="menu"><li id="menu-item-60" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com/impressum/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Impressum</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-2027" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/datenschutzerklaerung/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Datenschutzerklärung</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    </ul></div></nav>
                        </div>
    
    	            <!-- ####### END SOCKET CONTAINER ####### -->
    				</footer>
    
    					<!-- end main -->
    		</div>
    		
    		<!-- end wrap_all --></div>
    
     <script type='text/javascript'>
     /* <![CDATA[ */  
    var avia_framework_globals = avia_framework_globals || {};
        avia_framework_globals.frameworkUrl = 'https://www.l-mobile.com/wp-content/themes/enfold/framework/';
        avia_framework_globals.installedAt = 'https://www.l-mobile.com/wp-content/themes/enfold/';
        avia_framework_globals.ajaxurl = 'https://www.l-mobile.com/wp-admin/admin-ajax.php?lang=de';
    /* ]]> */ 
    </script>
     
     <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var _wpcf7 = {"loaderUrl":"https:\/\/www.l-mobile.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","recaptchaEmpty":"Bitte best\u00e4tige, dass du nicht eine Maschine bist.","sending":"Senden ...","cached":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.4.2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/shortcodes.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=2'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var mejsL10n = {"language":"de-DE","strings":{"Close":"Schlie\u00dfen","Fullscreen":"Vollbild","Download File":"Datei herunterladen","Download Video":"Video herunterladen","Play\/Pause":"Abspielen\/Pause","Mute Toggle":"Stumm schalten","None":"Keine","Turn off Fullscreen":"Vollbild ausschalten","Go Fullscreen":"Vollbild einschalten","Unmute":"Laut schalten","Mute":"Stumm","Captions\/Subtitles":"Untertitel"}};
    var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.18.1-a'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/wp-mediaelement.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/comment-reply.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/wp-embed.min.js?ver=4.5.3'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var icl_vars = {"current_language":"de","icl_home":"https:\/\/www.l-mobile.com\/","ajax_url":"https:\/\/www.l-mobile.com\/wp-admin\/admin-ajax.php","url_type":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/js/sitepress.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-grid.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-list.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-mini.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-ajax.js?ver=4.5.3'></script>
    <a href='#top' title='Nach oben scrollen' id='scroll-top-link' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Nach oben scrollen</span></a>
    
    <div id="fb-root"></div>
    </body>
    </html>
    
    <!-- Gator Cached page on [2016-07-17 13:01:37] -->
    <!-- Served by Advanced Cache www.l-mobile.com -->
    
    • This topic was modified 8 years, 8 months ago by L-mobileGroup.
    #641767
    kfranck
    Participant

    How can I turn off comments on Blog Posts (so it doesn’t say “Comments”) and then remove “Leave a Reply”when the user opens the full post?

    I shut off all the options in WP discussion, but the word “Comments” still appears on the page with I insert Blog Posts and a post that came with the Enfold Theme (with headline a Nice Entry), there is “Leave a Reply”.

    At this point, I don’t want comments or the ability for people to reply.

    The site is esomethin.com/yoursource.

    Thanks,
    kfranck

Viewing 30 results - 1 through 30 (of 50 total)