Forum Replies Created

Viewing 30 posts - 10,561 through 10,590 (of 34,921 total)
  • Author
    Posts
  • in reply to: Dropdown box more visible? #1366900

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: hide ONE Blog category #1366898

    Hi,
    Try this instead:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    $('#top.single-post .av-post-metadata-category-link a:contains("DE")').each(function(){
    	$(this).css({'display':'none'});
        $('#top.single-post .av-post-metadata-category').contents().filter(function() {
        return this.nodeType === 3;
    }).eq(1).remove();
    });
    }(jQuery)); 
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Inline search menu bug on Windows only #1366892

    Hi,

    I would guess position: absolute; but I don’t know if that is the problem or if on mouse-over the browser is changing the element display from block to inline or inline-block or flex-block or list-item, or if it is something else, but that is what I would look at first.

    Best regards,
    Mike

    in reply to: Using webp images with Enfold? #1366889

    Hi,
    Perhaps there is an issue with your converter, I test with this free online converter and I found no issues on a clean install with no plugins.
    Please give this a try.
    PNG to WEBP Converter
    JPG to WEBP Converter
    2022-09-29_003.jpg

    Best regards,
    Mike

    in reply to: Using image icon/flipbox raster element [SOLVED] #1366881

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Search Page Showing Black Screen and Weird Font #1366822

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Dropdown box more visible? #1366821

    Hey mvanstee,
    Thanks for the link to your page, please try this css:

    #top.single-product .main_color .variations select {
    	border: solid 1px #fff;
    }
    #top.single-product select { 
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAVUlEQVRIie2UMQoAIAwDxU872tFfn5NQBAchBcFm7126pJSvAhgwIuErWskG10oO8LBPALi5qdIGKUhBCn4VAG3fIDd2XdLCS+Twg0QLdxIDLAT+bCYyZJeL8uH9pwAAAABJRU5ErkJggg==);
    }

    expected results:
    2022-09-28_010.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: hide ONE Blog category #1366820

    Hey Tilman,
    Thanks for the link to your page, to remove the category link “DE” and the comma after it
    try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    $('#top.postid-6592 .av-post-metadata-category-link a:contains("DE")').each(function(){
    	$(this).css({'display':'none'});
        $('#top.postid-6592 .av-post-metadata-category').contents().filter(function() {
        return this.nodeType === 3;
    }).eq(1).remove();
    });
    }(jQuery)); 
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: How to remove strokes in galleries #1366817

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    I checked again and the icon is now showing, so I seems you have it sorted out now, shall we close this then?

    Best regards,
    Mike

    in reply to: Change the colors of the product page #1366803

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Is it possible to overlay elements? #1366802

    Hey DigitalEssence,
    Thanks for your question, yes you would use a negative top margin to achieve this.
    For example our Enfold Medical demo:
    2022-09-28_006.jpg
    puts the three 1/3 columns in a color section:
    2022-09-28_007.jpg
    The first column will control the margin for all of the columns in the row with the Row Settings tab.
    We use the equal height option so they are all the same:
    2022-09-28_008.jpg
    then with the Row Margins option we check Custom Margins and set a negative top margin.
    2022-09-28_009.jpg
    now the three blue 1/3 columns are over the slider.

    Best regards,
    Mike

    in reply to: No updates available #1366793

    Hey denyso1,
    Thanks for your question, your version was released when Envato, (Theme Forest) used the API, they changed that to the Token, it’s not the same, so you will need to manually update and the update will use the same settings.
    To update your version of Enfold you will need to download the latest version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: ALB for any post type (LearnDash). Spacebar doesn't work #1366790

    Hi,
    Thanks for the feedback and glad that this helped you also, if you have any further tips or questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Move Logo and Add Text #1366787

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Change the colors of the product page #1366785

    Hi,
    Try changing to this css:

    #top:not(.home) #header_main {
    	background: #F8F6F2;
    	border-top: solid 2px #ebe8e2;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to remove strokes in galleries #1366782

    Hi,
    Thanks for the feedback, try adding:

    #top #main div .avia-gallery img {
        border-style: none;
    }

    Best regards,
    Mike

    in reply to: In footer, the 4th column is dropping under the 3rd column #1366780

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Break point for burger menu. #1366778

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Problems importing DEMOS in ENFOLD #1366774

    Hi,
    Thanks for the feedback, unfortunately the host OVH has the set_time_limit() function disabled on their servers this function is used by WordPress so the import doesn’t time out, this is different than the current PHP run time limit.
    OVH also sets the Max input time as -1 this should be 180, in the past they have told customers that they will not change this, there is nothing we can do to correct that since it is the server settings causing the issue.
    One user was able to import a demo by manually uploaded demo files with FTP client, this is the thread.

    Best regards,
    Mike

    in reply to: searchfield in menu #1366768

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Breadcrumb #1366766

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: How to remove strokes in galleries #1366765

    Hi,
    Do you mean the border around the images, if so try this css:

    #top #main div .avia-gallery .avia-gallery-big {
        border-style: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Using image icon/flipbox raster element [SOLVED] #1366764

    Hey steviger,
    Thanks for your question, we have updated the Icon / Filpbox Grid element since the thread you linked to, I see you want the image on the front and text on the back, so please try these steps.
    Add your text to the front Grid Item Sub-Title:
    2022-09-28_002.jpg
    then add your image to the backside Grid Item Content:
    2022-09-28_005.jpg
    and check the Inverse Layout – Ignored For Tooltip so the image will show on the front side.
    I linked to my test page below.

    Best regards,
    Mike

    in reply to: How to remove strokes in galleries #1366760

    Hey Alan,
    Thanks for the link to your site, I assume by “stroke” you mean the fade of the image on hover.
    Please try this code in the General Styling ▸ Quick CSS field

    #top #main .avia-gallery .avia-gallery-thumb a:hover {
        opacity: 1;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Break point for burger menu. #1366759

    Hey Marcos Q.,

    Thanks for your question, please try this css:

    @media only screen and (max-width: 1270px) {
      #top #header .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change the colors of the product page #1366758

    Hi,
    Thank you for the screenshot and the link to your site, please try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top:not(.home) #header_main {
    	background: #F8F6F2;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Breadcrumb #1366755

    Hey limedrop,
    You can add the breadcrumb as a shortcode to the site, such as in a code block element, the shortcode is [av_breadcrumbs]
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor to make the shortcode work:

    function av_breadcrumbs_shortcode( $atts ) {
      return Avia_Breadcrumb_Trail()->get_trail( array( 'separator' => '/', 'richsnippet' => true ) );
      }
      
      add_shortcode( 'av_breadcrumbs', 'av_breadcrumbs_shortcode' );

    Best regards,
    Mike

    in reply to: Enfold 5 update broke the theme #1366753

    Hi,
    Sorry, we were not able to help more with this issue, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Inline search menu bug on Windows only #1366752

    Hi,
    Glad to hear that it is sorted out, over the last 5 years I have not seen this issue and I primarily use Chrome, perhaps this was a bug in Chrome I can’t imagine that the issue was with the function and Chrome’s update fixed it. I don’t know of any way to roll back Chrome to other versions and I don’t think it would help because I wouldn’t know how to correct an issue with a specific browser version with css or javascript, or if it’s possible to target a specific browser version.

    Best regards,
    Mike

Viewing 30 posts - 10,561 through 10,590 (of 34,921 total)