Forum Replies Created

Viewing 30 posts - 20,611 through 20,640 (of 35,234 total)
  • Author
    Posts
  • in reply to: Where is the blog roll file? #1122473

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Link to download beta release 4.5.7.1-beta-3 #1122472

    Hi,
    Glad to help, once you have it installed please let us know if we can close this thread.

    Best regards,
    Mike

    in reply to: Font style in all my posts #1122471

    Hey buciks1,
    Please try setting your font in Enfold Theme Options > Advanced Styling and choose your headings and body or “p” for the main page content.
    Then clear your browser cache and any cache plugins such as autoptimize.

    Best regards,
    Mike

    in reply to: WATERMARK #1122470

    Hey ICEMAN,
    I gave a quick test to the plugin Image Watermark and it seems to work well with Enfold.

    Best regards,
    Mike

    in reply to: Enfold theme – crashes site – 500 error #1122466

    Hey univiz,
    Please include an admin login & FTP access in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Header (logo area) background image not showing up #1122465

    Hey ddagraphics,
    Thanks for the login, the reason the image is not showing is because it has the wrong URL, please look at the link in the Private Content area to see the error. This was a issue with v4.5.5, In the Private Content area is a beta version with the latest fixes which has solved many issues so perhaps this will help you also.
    The easiest and safest way to test the beta version is to rename your current theme to “enfold-old” via ftp then upload the new “enfold” and check that your site is working correctly.
    Once you are happy you can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    If you would like a hand with this then please include ftp access in the Private Content area.

    Best regards,
    Mike

    in reply to: Enfold 2017 LayerSlider Missing #1122464

    Hi,
    There is a good chance that your webhost doesn’t have the PHP ZipArchive Extension enable, if this is true then the sliders would not have been installed because they are in a zip file.
    Please include an admin login & FTP access in the Private Content area so we can check if the PHP ZipArchive Extension is enable and also upload the demo sliders for you.

    Best regards,
    Mike

    in reply to: Podlove in Enfold #1122463

    Hi,
    Please try adding your function into your functions.php via ftp or sftp or via your cPanel file manager.

    Best regards,
    Mike

    in reply to: Link to download beta release 4.5.7.1-beta-3 #1122462

    Hey Jose Ramon,
    In the Private Content area is a beta version with the latest fixes.
    The easiest and safest way to test the beta version is to rename your current theme to “enfold-old” via ftp then upload the new “enfold” and check that your site is working correctly.
    Once you are happy you can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: Site Not Working in Internet Explorer #1122461

    Hey JoeSurf,
    In the Private Content area is a beta version with the latest fixes which has solved many IE & Edge issues so perhaps this will help you also.
    The easiest and safest way to test the beta version is to rename your current theme to “enfold-old” via ftp then upload the new “enfold” and check that your site is working correctly.
    Once you are happy you can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    If you would like a hand with this then please include ftp access in the Private Content area.

    Best regards,
    Mike

    in reply to: Add second widget in header #1122460

    Hi,
    On your live site, I can see your sidebar search almost off the screen to the right, it looks like the 285px is the cause, try changing it to zero.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: firefox #1122458

    Hi,
    For your first issue, I removed the bottom padding from the column with your profile pic, now it sits closer to the next section.
    On the Über mich page the column with the profile pic already has zero padding, so we could remove the top margin from the “Berufliche Erfahrung” section, but the text might be too close to the top section text, you can try it out with this css:

    #top.page-id-2 .avia-builder-el-4 {
    margin-top: 0px !important;
    }

    Best regards,
    Mike

    in reply to: Where is the blog roll file? #1122457

    Hi,
    Thanks for the login, I was able to move the date below the read more link with this function in your functions.php:

    /* Date at bottom of blog posts loop*/
    function custom_script(){
    	  ?>
    	  <script>
    	(function($){
    $(window).load(function(){
    $('.post-entry').each(function() {
    $(this).find('.post-meta-infos:first').insertAfter( $(this).find('.read-more-link:first') );
    });
    });
    })(jQuery);
    	</script>
    	<?php
    	}
    add_action('wp_footer', 'custom_script');

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add second widget in header #1122452

    Hi,
    Please try to find this css in your custom styles:

    @media only screen and (min-width: 989px) {
    .wc_ps_sidebar_container {
        width: 350px!important;
        margin: 10px 10px 10px 285px!important;
    }
    }

    and replace with this css:

    @media only screen and (min-width: 989px) {
    .wc_ps_sidebar_container {
        width: 100%!important;
        margin: 10px 10px 10px 0px!important;
    }
    }

    Please see the screenshot in Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Where is the blog roll file? #1122449

    Hi,
    Sorry for the late reply, the date is already in the code for the element but this css is hiding it, please look for it in your custom styles and remove it:

    .bloggerroll .entry-content-wrapper .post-meta-infos {
        display: none;
    }

    then add this css to show the date:

    .post-meta-infos time.date-container {
    display: block !important;
    color: #fff !important;
    }
    .post-meta-infos > span {
    display: none !important;
    }

    then please clear your browser cache and check.
    Please see the screenshot in Private Content area.
    I see that you wanted the date at the end so please try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
    $(window).load(function(){
      $( '.big-preview.single-big' ).each(function() {
      $( this ).find( 'time.slide-meta-time' ).insertAfter( jQuery(this).find('.read-more-link') );
      });
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    I couldn’t test this because your jQuery has the error “jQuery is not defined” typically this occurs when the proformce settings loads the jQuery in the footer, or it could be a plugin conflict, if you can’t correct the error Please include an admin login in the Private Content area.

    Best regards,
    Mike

    in reply to: firefox #1122443

    Hi,
    Sorry for the late reply, I took a look at your portrait pic and I downloaded the original and cropped it to the size you wanted and then uploaded the new image. The reason it didn’t work for you was because the height to width ratio was not correct.
    I also did this for the portrait pic on the ÜBER MICH page.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add second widget in header #1122441

    Hi,
    I took a look at your search widget in your sidebar and found that widget contains a style “display:none” please check.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Changing the top bar #1122439

    Hi,

    @jl_tan
    I took a look at your phone and email links, but it seems that you have already added the phone number and removed the underline. Is this solved now?
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Make caption font in full screen slider italic #1122438

    Hi,
    I see that your menu text shadow is working, to only apply the css to the slider title and sub-title, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field instead of the css above:

    h2.avia-caption-title,.avia-caption-content {
    font-family: merriweather,serif!important;
    font-weight: 300!important;
    font-style: italic!important;
    text-shadow: 0px 1px 6px rgba(0,0,0,.7)!important;
    }

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I took a look at your site and found that your jQuery was giving this error:

    jQuery is not defined

    Typically this is due to one of your plugins is conflicting with other plugins, or
    JavaScript runs before the page is fully loaded in turn before the jQuery is fully loaded, or
    CDN-hosted jQuery might be blocked or down.
    I ended up correcting the error by adding this to your functions.php

    function av_add_jquery() {
    ?>
    		<script src="https://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
    <?php
    }
    add_action('wp_head', 'av_add_jquery');

    Now your posts are opening in a new tab, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: CSS for changing Woocommerce notifications #1122432

    Hi,
    Sorry for the late reply, I adjusted the colors in the code above in your WordPress > Customize > Additional CSS
    The message is now gray instead of green, please clear your browser cache and check.

    #top div.woocommerce-message {
            background-color: #58585b !important; 
        color: #ffffff !important; 
        border-color: #363639 !important; 
    }

    Best regards,
    Mike

    in reply to: Problems with my website #1122430

    Hi,
    Sorry for the late reply, Please ask your webhost to see if they can see the cause for the 404 error on the admin-ajax.php file in the server log.

    Best regards,
    Mike

    in reply to: Failed to initialize plugin: avia_builder_button #1122427

    Hi,

    @kgoldman
    , Sorry, I forgot this is not your thread so you can’t see the Private Content area. Anyways I sorted it out and uploaded the beta, Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top div .avia-gallery .avia-gallery-big {
        border-style: none !important; 
    }
    #top #wrap_all .avia-gallery .avia-gallery-thumb a {
        float: right !important; 
    }

    Best regards,
    Mike

    in reply to: make button a different color on scroll #1122393

    Hi,
    Thanks for the login, I committed out the css and added the function in your child theme functions.php
    It seems to be working now, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add second widget in header #1122371

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .phone-info.with_nav span {
    margin-top: 20px !important; 
    }

    Best regards,
    Mike

    in reply to: Failed to initialize plugin: avia_builder_button #1122359

    Hi,

    @kgoldman
    , no bother :)
    Thanks for the login, I was able to ftp in (via CP file manager) but the file structure doesn’t seem correct for both domains below.
    So I’m not sure which is the correct domain with the WordPress files and your child theme.

    Best regards,
    Mike

    Hi,
    Thanks for helping out @Guenni007

    Best regards,
    Mike

    in reply to: Website not working in Explorer11 #1122348

    Hi,

    @CincinnatiWebTec
    Please open a new thread and please include a admin login and ftp access in the private content area so we can assist with the beta.

    Best regards,
    Mike

    in reply to: Website not working in Explorer11 #1122347

    Hi,

    @Jan_FtFA
    glad to hear this helped your live site. We will look for your new thread to assist with your staging site.

    Best regards,
    Mike

Viewing 30 posts - 20,611 through 20,640 (of 35,234 total)