Forum Replies Created

Viewing 30 posts - 12,091 through 12,120 (of 34,988 total)
  • Author
    Posts
  • in reply to: Informations supplémentaire survole image masonry #1349523

    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: block collant en dessous du menu collant #1349522

    Hi,
    Your can make your header not sticky at Enfold Theme Options ▸ Header ▸ Header behavior ▸ Sticky Header there is also a setting for Shrinking Header.

    Best regards,
    Mike

    in reply to: Logo on hover with Masonry #1349518

    Hi,
    Thanks for the feedback, what message are you getting when your site crashes? Perhaps it is a conflict with another plugin, have you tried disabling your other plugins? I tested your shortcode on my example page and the SVG’s show correctly but I don’t have other plugins installed, there may be other plugins that you could try.

    Best regards,
    Mike

    in reply to: Animations for previous/next portfolio entries #1349399

    Hi,
    Sorry, this is as close as I could get it to match.

    Best regards,
    Mike

    in reply to: block collant en dessous du menu collant #1349395

    Hi,
    Heureux d’entendre que cela a aidé, le script rend la section de couleur avec la classe personnalisée “collant” collante, vous pouvez modifier les éléments à l’intérieur de la section de couleur et cela fonctionnera toujours de la même manière.

    — Translated with Google —

    Glad to hear that this helped, the script makes the color section with the custom class “collant” sticky, you can change the elements inside the color section and it will still work the same.

    Best regards,
    Mike

    in reply to: Informations supplémentaire survole image masonry #1349394

    Hi,
    Il doit y avoir une certaine personnalisation, je ne sais pas quelle personnalisation cependant.

    — Translated with Google —

    It must be some customization, I’m not sure what customization though.

    Best regards,
    Mike

    in reply to: Cant get rid of Google Fonts. How? #1349393

    Hi,
    Perhaps the Google font was loaded by the layerslider and disabling this in the layerslider solved this without the function?
    Or perhaps you have object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc. on your server and the function is still loading.
    I don’t believe this has anything to do with your cookie banner, and we should not get sidetracked as this is already a long thread, that said as I understand Borlabs Cookie is a good option that many people use successfully, I don’t have any experience with it.
    If you have questions about it please open a new thread and keep this thread on-topic with disabling Google Fonts.
    Thank you for understanding.

    Best regards,
    Mike

    Hey Intell,
    Thank you for sharing your solution, hopefully it will help others. If you have any further solutions 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: Overlapping text box and graphics in a color section #1349299

    Hi,
    Glad we were able to help point you in the right direction, please see this article: A Complete Guide to CSS Media Queries
    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: Cant get rid of Google Fonts. How? #1349298

    Hi,
    Please check my test site again, I had a crash from testing another thread so I had reset it before you checked, I have now added this back.
    as for Borlabs Cookie, I don’t use this and it’s not one we support, I was only checking Guenni007‘s solution on a default install with the layerslider, and by disabling google fonts in the layerslider and using the function from Guenni007 you will see my test site only loads entypo-fontello and dashicons from the installs domain.
    2022-04-24_001.jpg

    Best regards,
    Mike

    in reply to: Button to Mail Client #1349297

    Hi,
    Thanks for the feedback, the button element will add the mailto when you just add the email addresses and subject like this:
    (Email address hidden if logged out) (Email address hidden if logged out) &subject=Big%20News
    Be sure to remove the default http:// in the link field.

    Best regards,
    Mike

    in reply to: LayerSlider #1349294

    Hi,
    The Premium Templates that I have seen use effects or options that are not available in the bundled version of the LayerSlider, so while in theory instead of renewing the license you could export your Premium Templates and uninstall the standalone version and enable the bundled version and then import your Premium Templates, but you will lose whatever Premium effects or options that were in the template, so it may work but probably not the same.
    This is what I understand, I recommend asking the LayerSlider team this question before you purchase to be sure.

    Best regards,
    Mike

    in reply to: Gallery bottom align thumbnail and title align bottom #1349291

    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: login logout dynamic link #1349290

    Hi,
    Thanks for the feedback, I thought that you had wanted the login & logout to be a link, the solution I provided was a link and only one would show at a time, either the login link or the logout link, if both were showing for you then you had an error in your css or you had not cleared your cache.
    Nonetheless, your shortcode only shows text login & logout but you have tried to create a phone-info div inside a phone-info div, I recommend creating a unique span instead and you don’t need to call the register_shortcodes so your solution is:

    function user_logged_in_function() {
    if ( is_user_logged_in() ) {
    return '<span class="log-info ">Logout</span>';
    }else{
    return '<span class="log-info ">Login</span>';
    }
    }
    add_shortcode('user_logged_in', 'user_logged_in_function');

    Best regards,
    Mike

    Hi,
    Based on our two demo pages we can change the current sort title but the page ID must be used because both use the same masonry element and there is no blog or portfolio class above the content in the element source code, if you assign a custom ID to the element then you would not need to use the page ID.
    So for this example the /portfolio/ is page-id-25 and /blog/ is page-id-66
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_allToblog_allToportfolio_script() { ?>
        <script>
    (function($){
    	function allToblog() {
      $('#top.page-id-66 .av-masonry-sort>.av-current-sort-title>.inner_sort_button>span').each(function() {
        var text = $(this).text();
        $(this).text(text.replace('All', 'Blog')); 
    });
    }
    $(function() {
    	allToblog();
    });
    $('#top.page-id-66 .av-sort-by-term>.all_sort_button').on('click',function(){
    setTimeout(function(){
     allToblog();
    },10);
    });
    })(jQuery);
    
    (function($){
    	function allToportfolio() {
      $('#top.page-id-25 .av-masonry-sort>.av-current-sort-title>.inner_sort_button>span').each(function() {
        var text = $(this).text();
        $(this).text(text.replace('All', 'Portfolio')); 
    });
    }
    $(function() {
    	allToportfolio();
    });
    $('#top.page-id-25 .av-sort-by-term>.all_sort_button').on('click',function(){
    setTimeout(function(){
     allToportfolio();
    },10);
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_allToblog_allToportfolio_script');

    Best regards,
    Mike

    in reply to: Footer Not Working #1349259

    Hi,
    Glad Rikard could 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: login logout dynamic link #1349257

    Hey virtualbis,
    Try adding this code to your Header Phone Number/Extra Info area:

    <ul class="account"><li class="login"><a href="/my-account/">[av_font_icon icon='ue824' font='entypo-fontello' size='20px'][/av_font_icon] Login</a></li><li class="logout"><a href="/my-account/customer-logout/">[av_font_icon icon='ue825' font='entypo-fontello' size='20px'][/av_font_icon] Logout</a></li></ul>

    you may need to adjust the url to your specific login and logout urls.
    Then add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top .account  {list-style: none;}
    #top .account li { display: inline-block;}
    #top.logged-in .account .login {display: none;}
    #top:not(.logged-in) .account .logout {display: none;}

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

    Best regards,
    Mike

    in reply to: LayerSlider #1349255

    Hey InSilentio,
    Thank you for your question, Enfold does include a bundled version of the LayerSlider that the LayerSlider team has provided which doesn’t include some Premium options and the Premium Templates.
    To use the Premium Templates you will need to purchase a LayerSlider license and download and install the standalone version from LayerSlider, and deactivate the bundled version, you can not use the license on the bundled version.
    If you do not extend the LayerSlider license in the future then your version will not update, but I believe it will keep working as is, I recommend asking the LayerSlider team this question before you purchase to be sure.

    Best regards,
    Mike

    in reply to: Similar footer problems as everyone else, but can't fix #1349250

    Hi,
    Glad Rikard could 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

    Hey MarynaKudzinava,
    Are you using the masonry setting: Sorting ▸ Yes, display sort options and are referring to the “All” at the start?
    2022-04-23_007.jpg
    try this css for the masonry sort of the blog and portfolio:

    .av-portfolio-grid-sorting-container .all_sort_button,
    .av-masonry-sort .all_sort_button {
    	font-size: 16px;
        color: red !important; 
    }
    

    But if you mean the setting: Sorting ▸ Yes, display sort options and currently active taxonomy and are referring to the current sort title
    2022-04-23_008.jpg
    then try this css for the masonry sort title of the blog and portfolio:

    .av-portfolio-grid-sorting-container .all_sort_button,
    .av-portfolio-grid-sorting-container .av-current-sort-title,
    .av-masonry-sort .all_sort_button,
    .av-masonry-sort .av-current-sort-title {
    	font-size: 16px;
        color: red !important; 
    }

    After applying the css, please clear your browser cache and check, then link to your two elements and explain if you mean the “All” at the start or current sort title for replacing the words.
    Please note that the current sort title changes depending on the sort clicked, it doesn’t always show “All” so replacing it with the word “Portfolio” or “Blog” would change this behavior.

    Best regards,
    Mike

    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: AIO SEO Avia script in the meta descriptions etc. #1349244

    Hey Intell,
    Thank you for the login, the code you are seeing in your plugin meta field, also shown as the AIOSEO Details ▸ Description is the Advanced Layout Builder shortcode because the posts and pages are built with the Advanced Layout Builder and the AIOSEO plugin can’t sort the text form the shortcode.
    To correct this please add a manual excerpt so the AIOSEO plugin can use this text.
    For example, you have a few posts with manual excerpts and the AIOSEO plugin shows this information correctly, see the screenshot in the Private Content area.
    I don’t know about Google Ads.

    Best regards,
    Mike

    in reply to: Masonry Distance Between images #1349243

    Hey delmonte,
    Thank you for your patience, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main .av-1px-gap.av-flex-size .av-masonry-entry .av-inner-masonry {
        position: relative;
        margin-right: 4px;
        margin-bottom: 4px;
    }

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

    Best regards,
    Mike

    in reply to: Gallery bottom align thumbnail and title align bottom #1349242

    Hi,
    Thanks for the screenshot, to align the images to the bottom try this css:

    #top #wrap_all .avia-gallery .avia-gallery-thumb a {
        display: flex;
        flex-direction: column;
    }
    #top #wrap_all .avia-gallery .avia-gallery-thumb a img {
    	margin-top: auto;
    	
    }

    To have the tooltips show below the items edit \enfold\js\avia.js on line 1243 you will find position: 'top', //top or bottom change it to: position: 'bottom', //top or bottom and add this css:

    .avia-tooltip .avia-arrow-wrap {
        bottom: 45px !important;
    }
    .avia-tooltip .avia-arrow {
        top: 15px !important;
    }

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

    Best regards,
    Mike

    in reply to: Button to Mail Client #1349239

    Hey Stefan,
    Thanks for your question, I believe that you mean that you want to add a Mailto Link to a button that will send to two addresses and add the subject line, you can do this like this:

    mailto: (Email address hidden if logged out)  (Email address hidden if logged out) &subject=Big%20News

    2022-04-23_004.jpg
    which results this in your mail client
    2022-04-23_005.jpg

    Best regards,
    Mike

    Hey jim-cp,
    Thank you for your patience, in some cases javascript in code block elements will try to execute in the backend when external scripts are called or iframes are loaded in the script, it’s not common but I believe that I recall a situation like you are describing.
    Try creating a shortcode for the form’s script in your functions.php and then add the shortcode to your code block, this should solve.

    Best regards,
    Mike

    in reply to: Cant get rid of Google Fonts. How? #1349236

    Hi,
    I tested Guenni007‘s function on my test site:

    
    function my_output_google_webfonts_script( $activate ){
      return false;
    }
    add_filter( 'avf_output_google_webfonts_script', 'my_output_google_webfonts_script', 10, 1 );

    and it removed fonts.googleapis.com even with H tags set to use google fonts in the Advanced Layout Builder.
    When I tested the layerslider adding a google font to a specific layer and then disabled the google fonts in the settings it removed fonts.googleapis.com
    2022-04-23_003.jpg
    So using Guenni007‘s function and disabling the google fonts in the layerslider settings worked for my test site.
    If you have tried this and it is not working please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    Hi,
    Glad Rikard could 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: Changing Dot Color Easy Slider #1349226

    Hey Monika,
    Thank you for your question, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia-slideshow-dots a.goto-slide.active, .avia-slideshow-dots a.goto-slide:hover {
        background: #676e44;
    }
    .avia-slideshow-dots a.goto-slide {
        background: #F0E6DE;
    }

    and adjust the color to suit

    Best regards,
    Mike

    in reply to: Logo on hover with Masonry #1349224

    Hey JKnoblach,
    Thank you for your patience and for the link to your page, it looks like you are using the masonry element and showing portfolio items. We don’t have a default way to add logo images over the masonry item on hover but I was able to find a way to do this for this situation using images, but it may not work with SVG’s because you will need to use image element shortcodes. I imagine you could create custom SVG shortcodes ad use them, but you can’t use html in the excerpts.
    For this example we will create an image shortcode using the shortcode wand and paste that shortcode in to the portfolio item manual excerpt field.
    Then in the masonry element we will choose to show the excerpt only instead of the title that you are now showing and add this css into the WordPress ▸ Customize ▸ Additional CSS field:

    .av-masonry-entry-content .avia-image-container img {
    height: 100px;
    width: 100px;
    }

    this css assumes that your logo image is 100px square, feel free to adjust to the size you wish to show.
    Then in order to show the shortcode from the excerpt you will need to install the plugin Shortcodes Anywhere or Everywhere and choose the setting In Post/Page Custom Fields
    2022-04-23_002.jpg
    The expected result:
    2022-04-23_001.jpg
    I linked to my example page below, please give this a try.

    Best regards,
    Mike

Viewing 30 posts - 12,091 through 12,120 (of 34,988 total)