Forum Replies Created

Viewing 30 posts - 20,251 through 20,280 (of 34,221 total)
  • Author
    Posts
  • in reply to: Page conent – page listed in sidebar #1110601

    Hey Julie,
    If I understand correctly you would like to hide pages 5538 & 5536 from the sidebar navagation. Will this be for all pages or just some?
    For example to hide the pages from certain pages, try some css like this:

    #top.page-id-5536 .widget_nav_menu .page-item-5536,#top.page-id-5536 .widget_nav_menu .page-item-5538 {
    display: none !important;
    }

    To hide them from all pages, please try css like this:

    .widget_nav_menu .page-item-5536,.widget_nav_menu .page-item-5538 {
    display: none !important;
    }

    To exclude pages from the screaches you will need to use a function like the one you poasted, have you tested this one?
    Please let us know if this helps.

    Best regards,
    Mike

    in reply to: wider centered logo, transparent glassy header #1110597

    Hey sky19er,
    Thanks for the links and showing your css, but as I look at your homepage with the transparent glassy header I don’t see the logo jumping on scroll.
    Please include a screenshot of what you are seeing, you can add screenshots by uploading your images to a service such as postimages.org and pasting the html code given in your post.

    Best regards,
    Mike

    Hey lanikita,
    Thank you for the information on your setup, Please first ensure that you are using PHP version v5.6 as a minimum.
    Then download the theme from Theme Forest.
    Then open it and extract the “enfold.zip” file and then extract it to your desktop as /enfold/
    Then rename to /enfold-new/ and upload the folder to your /wp-content/themes/ folder via FTP or your file manager in your webhost cPanel
    Then via FTP or your cPanel file manager, at /wp-content/themes/ rename /enfold/ to /enfold-old/ and rename /enfold-new/ to /enfold/

    Now your new version is installed, please check your site. If all is well then “Good Job!” If not then reverse the last rename step above and your site will be restored.

    Then you should be able to update the WordPress core.

    Best regards,
    Mike

    in reply to: Schrifttyp swicht #1110591

    Hey birgitthaler,
    Der Grund, warum die Schriftart “Nunito” manchmal nicht angezeigt wird, ist, dass ein “Mixed Content” -Fehler angezeigt wird. Das heißt, Ihre Seite wird über “https” geladen, nicht jedoch die Schriftart. In der Regel korrigiert ein Plugin wie Really Simple SSL dies.
    Ich bin mir nicht sicher, ob ich Ihre zweite Frage verstehe, bitte erklären Sie.

    — Translated with Google —

    The reason the font “Nunito” sometimes doesn’t show is because you are getting a “Mixed Content” error, that is your page is loaded over “https” but not the font. Typically a plugin such as Really Simple SSL will correct this.
    I’m not sure that I understand your second question, please explain.

    Best regards,
    Mike

    in reply to: Change Woocommerce text Aanbiding! into sale #1110568

    Hey Lianne,
    Thank you for sharing the above filter, I was able to correct the errors by correcting the quotes.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function prefix_woocommerce_sale_flash( $text ) {
      $text = '<span class="onsale">'. __( 'Action!', 'text_domain' ). '</span>';
      return $text;
      }
      add_filter( 'woocommerce_sale_flash', 'prefix_woocommerce_sale_flash' );

    I tested this on my localhost and it seems to work, please check.

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1110316

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function jl_remove_post_dates() {
    	add_filter('the_date', '__return_false');
    	add_filter('the_time', '__return_false');
    	add_filter('the_modified_date', '__return_false');
    	add_filter('get_the_date', '__return_false');
    	add_filter('get_the_time', '__return_false');
    	add_filter('get_the_modified_date', '__return_false');
    } add_action('loop_start', 'jl_remove_post_dates');

    Best regards,
    Mike

    in reply to: Change shopping cart position #1110163

    Hi,
    Odd, I can’t recreate this. Please see the screenshot in Private Content area. Do you have an iPad to check if the cart issue is really happening?

    Best regards,
    Mike

    in reply to: firefox #1110160

    Hi,
    Sorry for the late reply, To fix the slideshow image, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (min-width: 767px) and (max-width: 1023px) { 
    .avia-slideshow-inner > li > div.avia-slide-wrap {
    max-height: 220px !important; 
    }
    }
    @media only screen and (min-width: 1024px) and (max-width: 1438px) { 
    .avia-slideshow-inner > li > div.avia-slide-wrap {
    max-height: 293px !important; 
    }
    }
    @media only screen and (min-width: 1439px) { 
    .avia-slideshow-inner > li > div.avia-slide-wrap {
    max-height: 430px !important; 
    }
    }

    This address the different screen sizes.

    Best regards,
    Mike

    in reply to: LayerSlider customization bug #1109702

    Hi,
    Sorry for the late reply, and thanks for the example code. I was able to reproduce so I wrote a report for the dev team to review your solution.
    Thanks for sharing.
    I will post here as I learn more.

    Best regards,
    Mike

    in reply to: how to increase thumbnail size image for watchlist #1109643

    Hi,
    Thank you, I understand better now. I see that this is a plugin and it doesn’t seem to load any of it’s own css. I also note that with your page caching and merging off your site still reports getting your css from the merged css.
    I believe your server is caching also and we will need to clear this cache or turn it off.
    Does your plugin come with any css snippets to style the grid? There are also many options, please see if you find any about styling the grid, I didn’t see one.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, to add the lines above and below of the widget title, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    h3.widgettitle {
        border-style: solid;
        border-width: 1px 0 1px 0;
        padding: 10px 0 10px 0;
    }

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1108805

    Hi,
    If you are using Yoast please see this post
    One issue that you may find is that Google will post any date it finds on the page and use it as the post date. The link above also has some links to some plugins that may work for you.

    Best regards,
    Mike

    in reply to: images accessible as blog posts #1108795

    Hi,
    Yes, a blank file will mess up your site. Please remove it or copy the header.php in your parent theme to your child theme.
    You could deactivate Yoast, instead of uninstalling it.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Footer background image #1108791

    Hi,

    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Enfold Safari & Internet Explorer Darstellungsproblem #1108717

    Hi,
    Sorry for the late reply, I’ve been testing gradient text with IE11, and I have found that the css used for this effect doesn’t work in IE11. To see please check out this site
    with Chrome or Edge:
    2019-06-09-184139
    with IE11:
    2019-06-09-184249

    Best regards,
    Mike

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

    span.wpcf7-not-valid-tip {
     color: #3345f5 !important; 
    }

    2019-06-09-180252

    Best regards,
    Mike

    in reply to: images accessible as blog posts #1108713

    Hi,
    Thanks for the login I took a look at your header.php in the child theme and see that it an old version that doesn’t include the last lightbox fix.
    Please save a copy of your header.php as a backup for yourself and then move or remove the child theme header.php on the server so it’s not in use and see if this helps.

    Best regards,
    Mike

    in reply to: Download Enfold 4.5.5 #1108710

    Hey aledef,
    Please see below.

    Best regards,
    Mike

    Hey mightyfrank,
    Thanks for the login, I took a look and your settings seem fine as well as your files.
    I see the error you are getting is “/wp-admin/admin-ajax.php 500 (Internal Server Error)” please ask your webhost to look into this and let us know what is causing the error.

    Best regards,
    Mike

    in reply to: Change shopping cart position #1108703

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

    @media only screen and (max-width: 767px) { 
    #menu-item-shop {
    margin-right: 50px !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Change shopping cart position #1108586

    Hey jpluedtke,
    Thanks for the screenshot and link, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function ns_custom_script(){
      ?>
      <script>
    (function ($) { 
      $(window).load(function(){
      $( "#menu-item-shop" ).appendTo( ".inner-container" );
      $("#menu-item-shop").css({ 'float': 'right' });
      $(".cart_dropdown").css({ 'border-width': '0px' });
      $("span.logo").css({ 'display': 'none' });
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ns_custom_script');

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Header transparency + widget icons #1108584

    Hey kellyCraftMedia,
    2: I believe this css will help with your underlines:

    #main a,#main .sidebar a,#footer a,#socket a, #main p a {
        text-decoration: underline !important; 
    }
    a.avia-button,a span.avia_iconbox_title,#top .av_font_icon a.av-icon-char {
        text-decoration: none!important;
    }

    1: Please try this css for your header:

    #header.av_header_glassy,#header {
    background-color: rgba(71, 70, 67, 0.9) !important;
    }
    
    .responsive #top .header_bg {
        opacity: 0 !important; 
    }
    
    #top .av_header_glassy.av_header_transparency #header_main {
        border-color: transparent !important; 
    }

    I recommend testing the above css in the WordPress > Customize > Additional CSS field and Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Code Block is stripping out tags #1108579

    Hey Mike,
    Please include what you are adding to the code block, I tested on my localhost and couldn’t reproduce this. Here’s what I added to my code block:

    <p>this is a test</p>
    <p>new line <br>
    another line <br>
    end of lines</p>

    Best regards,
    Mike

    in reply to: Horizontal Gallery Formating #1108569

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Customize – Additional CSS #1108521

    Hi,
    Thanks for the login, I see that you are getting this error:

    
    /wp-admin/admin-ajax.php Failed to load resource: the server responded with a status of 406 ()

    Typically this is due to an ModSecurity error, please see this article for steps to follow to correct.
    or ask your webhost to take a look at the error and take the appropriate steps.

    Best regards,
    Mike

    in reply to: mfp-title lost after update to 4.5.7 #1108520

    Hey Tobias,
    The reason that your titles were not showing is because you had this function removing them:

    function remove_title_attr(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('#wrap_all a').removeAttr('title');
    jQuery('#wrap_all img').removeAttr('title');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    So I commented this out so you could see.

    Best regards,
    Mike

    in reply to: Adding New Social Profiles Crashes Site #1108519

    Hi,
    Please see below.

    Best regards,
    Mike

    in reply to: Free shipping and promo code problem #1108518

    Hey Julien,
    Sorry I was not able to find any other issues like this, so perhaps an easy mistake has been made. Please try to follow these steps to see this corrects the issue.

    Best regards,
    Mike

    Hi,
    Thanks for the screenshot, it looks like the menus need to be set, the one showing has to many items.
    Please try going to your menus and choose the main menu and location. Then go to Enfold Theme Options > Performance > JS & CSS file merging and compression and disable both and save your theme settings, and Then clear your browser cache, and check.

    Best regards,
    Mike

Viewing 30 posts - 20,251 through 20,280 (of 34,221 total)