Forum Replies Created

Viewing 30 posts - 17,611 through 17,640 (of 34,221 total)
  • Author
    Posts
  • in reply to: set the same font for different languages frontpage #1173253

    Hey Matsky1,
    Sorry for the late reply, in my investigation I found that your English & Russian layersliders that show on the pages are not matching the sliders that can be edited in the backend.
    The text on the frontend is:

    WE PARTNER WITH CONSULTANTS, FUNDERS
    AND DEVELOPERS WHO SHARE OUR AMBITON
    AND COMMITMENT TO DELIVER MARKET-
    LEADING BUILDINGS

    on every slide, but in the layerslider that text doesn’t show on any slide?
    Do you also see this?

    I thought this might be due to caching but it looks like your caching plugin is turned off, so unless you have server side caching I don’t see how this is possible.

    Best regards,
    Mike

    in reply to: How to replace rather than add to enfold sidebar? #1173048

    Hi,
    I have figured it out, step one is to go to Enfold Theme Options > Sidebar Settings > Page Sidebar navigation and uncheck the “Page Sidebar navigation” option, then go to your “Page Sidebar” widget and add a empty text widget, now nothing shows in your sidebar.
    You can add a different widget to replace the empty text widget if you like, it is only a placeholder so the menu doesn’t show and any widget there will prevent the menu from showing. You can also change which sidebar shows on the page by choosing one of your many custom sidebars.

    I will also point out that you are using Enfold v3.8.5 with WordPress v5.3.2, this version of Enfold is not expected to be compatible with the version 5 of WordPress because of the major changes it included. Please update.
    Unfortunately, due to the Theme Forest changes of replacing the API key with the “Token” you will have to update via FTP.
    The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme 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: Gallery thumbnail hover effect: zoom instead of fade #1173046

    Hi,
    In the latest version 4.7.1 go to any element > advance tab > developer settings > custom css class:
    2020-01-13-194100
    as for the zoom effect, the structure of the elements are a little different so it’s acting a little different, I tried to match it the best I could.

    Best regards,
    Mike

    in reply to: Horizontal Gallery display wrong #1173038

    Hi,
    Thank you, perhaps this will help others in the future.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: How to replace rather than add to enfold sidebar? #1172801

    Hi,
    I found that the function is missing a “)” which was causing the error, this is the updated code:

    function avf_sidebar_menu_filter_mod($menu, $args, $post) {
       if(is_page(array(42, 'about', 'Contact'))) {
           $menu= '';
       }
       return $menu;
    }
    add_filter('avf_sidebar_menu_filter', 'avf_sidebar_menu_filter_mod', 10, 3);

    but I don’t think this is working correctly, just to make sure I’m understanding this correctly, on the one page in the Private Content area you don’t want the sidebar menu to show, or is it that you don’t want the sidebar to show?

    Best regards,
    Mike

    in reply to: Gallery thumbnail hover effect: zoom instead of fade #1172769

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

    .avia-gallery-thumb a {
        -webkit-animation: in 1.5s;
        animation-fill-mode: forwards;
    }
    
    .avia-gallery-thumb a:hover {
        -webkit-animation: out 1.5s;
        animation-fill-mode: forwards;
    }
    
    @-webkit-keyframes in {
        from   { -webkit-transform: scale(1.05,1.05);}
        to { -webkit-transform: scale(1,1); }
    }
    
    @-webkit-keyframes out {
        0%   { -webkit-transform: scale(1,1); }
        100% { -webkit-transform: scale(1.05,1.05); }
    }
    
    #top .avia-gallery .avia-gallery-thumb a:hover {
        opacity: 1 !important;
    }

    I didn’t see a custom class added to this gallery so I didn’t add it to the css, if you add a custom class I can adjust this for you.

    Best regards,
    Mike

    in reply to: layout #1172749

    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: Not showing background image when png is used? #1172745

    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

    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) {
    .responsive #top #wrap_all .main_menu {
        right: 50% !important; 
    }
    }

    please adjust the “50%” in the code to suit your needs.
    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Tweaks #1172740

    Hi,
    Thanks for the feedback, the ” less space between sub-menu items” code is for your “full width menu” originally there was 10px of padding for each menu item, now there is only 5px, in this screenshot the green marks are the menu item padding.
    2020-01-13-044606
    If I’m understanding the space issue correctly then try changing the “5px” in the code to “1px” for them to be even closer.

    I see what you mean about the sidebar menu needing a drop-down for parent items now. So to add the arrow to only parent menu items and create a drop-down for the children items please try this css:

    #top .widget_nav_menu ul li.menu-item-has-children > a:before {
        content: "\2BC6" !important;
    }
    #top .widget_nav_menu ul ul.sub-menu {
        display: none !important; 
    }
    #top .widget_nav_menu ul li.menu-item-has-children:hover ul.sub-menu {
        display: block !important; 
    }

    Best regards,
    Mike

    in reply to: How to replace rather than add to enfold sidebar? #1172714

    Hi,
    Please take a look at your child theme functions.php your first line is:
    2020-01-13-043522
    it needs to be:
    2020-01-13-043633
    I tried to change it for you but WordPress says it needs to be done via FTP, please correct

    Best regards,
    Mike

    in reply to: layout #1172595

    Hi,
    Thank you, please try this css:

    .avia_mega_div .avia-bullet {
        display: none !important;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Enfold Learndash Comment Theme Conflict #1172593

    Hey akn7162,
    Thanks for the login, I see that your lessons are built with the Advanced Layout Builder, when using the Advanced Layout Builder comments do not show on a post, to show comments on a post you would need to use the comment element.
    You can try using the WordPress editor to create a lesson to see if the comment will show.
    You can also try using this shortcode on a lesson built with the Advanced Layout Builder to see if that helps:

    [av_comments_list av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av_uid='av-79s2f5'] 

    Also try adding a manual comment in the backend to see if that forces them to show.

    Best regards,
    Mike

    in reply to: How to replace rather than add to enfold sidebar? #1172589

    Hi,
    Sorry for the late reply, I have reviewed the thread and I see that at one point you copied the parent theme functions.php and added it to your child theme, this caused your error because it contained functions that are now being called twice.
    The functions.php for the child theme should be basically empty except for this code at the very top: <?php and then your addon function below it.
    If you download the pre-built child theme you will see what I mean.
    I see that your child theme has almost all of the files from your parent theme in it, you should really only have the style.css, functions.php, and any file that you customized in your child theme.

    Best regards,
    Mike

    in reply to: Add Google Font #1172585

    Hey patrickpriest81,
    On the Google font webpage, after you click the select the font button, open the popup at the bottom of the screen and download it.
    Then import it into Enfold Theme Options > Import/Export > Custom Font Manager
    This will add it to the theme.

    Best regards,
    Mike

    in reply to: Disabling overlay on linked images #1172584

    Hey trishgray,
    Thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .owl-carousel .owl-item .owl-lazy {
        opacity: 1 !important; 
    }

    Best regards,
    Mike

    in reply to: Edit color of accept button in privacy window #1172583

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

    #top .main_color .avia-color-theme-color-highlight {
        color: #ffffff;
        border-color: #ffffff;
        background-color: #000 !important; 
    }

    and adjust the colors to suit, then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Cant import demo #1172581

    Hi,
    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: layout #1172577

    Hi,
    I see gray squares in the sub-menu? Perhaps I’m looking in the wrong area, I’m looking at the main menu > sub-menu on the homepage
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Add text at the right of the logo in the header #1172576

    Hi,
    Glad to hear, when you add css to the “style.css” located in appearance/theme-editor and you have the css & js file merging enabled you will also need to save the theme settings to force re-building of the merged file.

    The merged files only update then the theme settings are updated, such as clicking the big blue button “save all changes”, saving the style.css file doesn’t update the merged files.
    If the save button is not clickable, try adding a blank space into the Quick CSS field to activate the button.
    I hope this helps explain what is happening.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Hoover Effect on a row element #1172574

    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: Gallery thumbnail hover effect: zoom instead of fade #1172572

    Hi,
    I see that your page is now a masonry item, do you have another page with a gallery item to test with? To apply this to only one or some gallery items you would add a custom class to the gallery and then include the custom class in the css.

    Best regards,
    Mike

    in reply to: WhatsApp but not Yelp? #1172570

    Hi,
    The dev team has worked on this for the next version and in the Private Content area I have included the files for you to test.
    You will have to have the beta version of Enfold for this to work, so I also include this also.
    You will also have to include a filter in your functions.php to assign the post links for Yelp for the in-post social links.
    This is the link to the filter example
    I recommend setting up a staging site to test this on.

    Best regards,
    Mike

    in reply to: Gallery thumbnail hover effect: zoom instead of fade #1172559

    Hey mihand78,
    To have the zoom effect on the gallery please try this css in your Quick CSS:

    .avia-gallery-thumb a {
        -webkit-animation: in 1s;
    }
    
    .avia-gallery-thumb a:hover {
        -webkit-animation: out 1s;
    }
    
    @-webkit-keyframes in {
        from   { -webkit-transform: scale(1.05,1.05); }
        to { -webkit-transform: scale(1.05,1.05);}
    }
    
    @-webkit-keyframes out {
        0%   { -webkit-transform: scale(1.05,1.05); }
        100% { -webkit-transform: scale(1.05,1.05); }
    }
    
    #top .avia-gallery .avia-gallery-thumb a:hover {
        opacity: 1 !important;
    }

    Best regards,
    Mike

    in reply to: DSGVO-pop-up German and Englisch is mixed up #1172556

    Hi,

    @dondela

    I added the link to another one of your threads in the Private Content area.

    Best regards,
    Mike

    in reply to: layout #1172555

    Hi,
    Thank you for the login, I added this css in your child theme stylesheet:

    /*sub-menu-bullets*/
    #top .av-main-nav ul a:before{
    	content: url('https://voltaris.de/redesign2020/wp-content/uploads/2020/01/aufzaehlung-footer.jpg');
    	padding-right: 5px;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Not showing background image when png is used? #1172551

    Hi,
    Sorry for the late reply and thanks for the login. I added this css to your Quick CSS:

    #top.home #av_section_1 > .av-section-color-overlay-wrap {
        background: url(//your-site.ca/wp-content/themes/enfold/images/background-images/diagonal-thin-dark.png) center center repeat scroll;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hoover Effect on a row element #1172549

    Hi,
    I found the url in your Enfold Theme Options > Header > Transparency Options > Transparency Logo so you can replace your transparent logo or remove it.

    Best regards,
    Mike

    in reply to: Gradients (buttons and text) #1172547

    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: Checkout page reordering #1172546

    Hey phouthuijzen,
    Sorry for the late reply, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_checkout_page(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $( "#top.woocommerce-checkout .woocommerce-shipping-fields" ).appendTo( ".col-1" );
      $( "#top.woocommerce-checkout .woocommerce-additional-fields" ).appendTo( ".col-1" );
      $( "#top.woocommerce-checkout #order_review_heading" ).appendTo( ".col-2" );
      $( "#top.woocommerce-checkout #order_review" ).appendTo( ".col-2" );
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_checkout_page');

    Best regards,
    Mike

Viewing 30 posts - 17,611 through 17,640 (of 34,221 total)