Forum Replies Created

Viewing 30 posts - 18,211 through 18,240 (of 35,070 total)
  • Author
    Posts
  • in reply to: New plugin confict #1182774

    Hi,
    Sorry for the late reply, you said that the Toolset author said that the js files used by the plugin were being moved to the uploads directory, and that is causing the issue? When I look at your site I see them in a directory named “siteground-optimizer-assets”
    2020-02-09-082058
    but you said that you deleted the siteground cache plugin?
    If Toolset needs the js files to be in a certain directory can you copy them there via FTP?

    Best regards,
    Mike

    in reply to: menue mobil formatieren #1182753

    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,
    Sorry for the late reply and thanks for the login, so I investigated the hooks for the woocommerce single product page to try to move your CTA (call to action) bar below the related products enough that they would be out of the container and not mess up the page, I found that adding a higher number to the end of the action seemed to help:
    add_action( 'woocommerce_after_single_product_summary', 'enfold_customization_extra_product_content', 90 );
    but there were no other hooks to use on the page. I then realized that the real issue is that your shortcode is using a color section which is breaking the layout, you would also notice this on any page that has a sidebar as the color section always forces the sidebar below it. This is expected and can not be corrected. So you would have to use a different layout for your shortcode.
    I put one together for you using flex css to align the icon lists into 1/3 containers and gave the section a full-width container to match your layout. It seems to work well, but feel free to adjust if you wish.
    In the Private Content area are two text files, one is your original shortcode and the other is the new shortcode that is now in your functions.php
    I added custom classes and IDs to the shortcode so I could use this css in your Quick CSS:

    /*make cta full-width*/
    #cta {
    	width: 30%;
    	margin-left: 3%;
        display: inline-flex;
        justify-content: space-around;
    }
    #cta-first > .avia-icon-list,#cta > .avia-icon-list {
    	width: 370px;
    }
    .container.bottom-cta-container {
    	padding: 0 !important; 
        margin: 0 !important;
        width: 100% !important;
        max-width: 1800px !important; 
    }
    /*add padding to related items*/
    #top.single-product .product_column.product_column_4 {
    padding: 0 50px 0 50px !important; 
    }

    to add a class to the parent container on the cta bar to remove the padding and margin so it would be full width like a color section, I added this code to the end of your functions.php file in Appearance > Editor:

    function bottom_cta_container(){
      ?>
      <script>
    (function($){
    $(document).ready(function(){
       $('#bottom-cta').closest('div.container').addClass('bottom-cta-container');
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'bottom_cta_container');

    Best regards,
    Mike

    in reply to: menue mobil formatieren #1182711

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

    #top.page-id-2479 #kontakt .value_verifier_label {
    	font-size: 16px !important;
    }

    After applying the css, Please clear your browser cache and check.
    2020-02-09-050921

    Best regards,
    Mike

    in reply to: Layer Slider on mobile #1182709

    Hi,
    Please ask your administer to look again, I’m still seeing 99 errors from “http://sswim.ru” on your live site with a broken layerslider and homepage.
    But on your test site I don’t see these errors and your test site layerslider is working correctly.

    Best regards,
    Mike

    in reply to: How to make Picture shorter in the Header #1182708

    Hi,
    Please try clearing your cache, when I look at your site it looks like your mockup now, Please see the screenshot in Private Content area.

    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: URGENT: wp-admin / wp-login.php problems after update theme #1182702

    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: delete white space #1182660

    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) { 
    #top.page-id-17 #av-layout-grid-1 > div > div > div,#top.page-id-17 #av-layout-grid-1 > div > div > div > .avia-iframe-wrap {
    	margin-bottom: 0 !important; 
    }
    #top.page-id-17 #av-layout-grid-1 > div {
    	padding-bottom: 0 !important; 
    }
    #top.page-id-17 #angebot > div > div {
    	padding-top: 0 !important;
    	padding-bottom: 0 !important; 
    }
    }

    This is for both requests, after applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    Hey Johannes,
    Für das spezielle Überschriftenelement gehen Sie bitte auf die Registerkarte “Stying”> “Schriftgrößen” und klicken Sie dann auf das Symbol der Gerätegröße, die Sie einstellen möchten, und wählen Sie eine Größe aus der Dropdown-Liste aus
    2020-02-08-143917
    Leider haben Überschriftengrößen wie H1 keine globale Größenpräferenz für Mobilgeräte, aber als ich Ihre Website überprüft habe, waren alle Überschriften spezielle Überschriften. Wenn Sie diesen Schritt befolgen, wird Ihre mobile Schriftgröße für H1, H2 usw. festgelegt .
    Wenn Sie eine globale Schriftgröße für Mobilgeräte wünschen, verwenden Sie in Ihrem Quick CSS bitte das folgende CSS:

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #main h1.av-special-heading-tag {
        font-size: 40px !important;
    }
    }

    Dies funktioniert nur für die H1-Sonderüberschrift, wenn der Bildschirm des Handys kleiner als 479 Pixel ist.

    — Translated with Google —

    For the special heading element please go to the stying tab > font sizes and then click the icon of the device size you wish to set and choose a size from the dropdown
    2020-02-08-143917
    Unfortunately, heading sizes such as H1 do not have a global size preference for mobile devices, but when I checked your site all of your heading were special headings so if you follow this step your mobile font size for H1, H2, etc will be set.
    If you would like to have a global font size for mobile then please use css like this in your Quick CSS:

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #main h1.av-special-heading-tag {
        font-size: 40px !important;
    }
    }

    this will only work for H1 special heading when the mobile screen is smaller than 479px, please feel free to adjust.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I was able to login to your site by renaming your Enfold theme to enfold1 and braking it and forcing WordPress to load the default theme, I then renamed Enfold back and had no issues.
    I carefully reviewed your site and believe that the issue was either the WP-Optimize plugin or the iThemes Security Pro plugin, something was not setting the login cookie correctly. I note that the Enfold Theme Options > Performance > JS & CSS file merging and compression was disabled.
    I disabled your plugins and tested logging in on a couple of different browsers without issue.
    Please try clearing your browser cache a few times and then login, if you still have problems logging in then try going to your homepage first and accept your site cookie then try logging in again.

    Best regards,
    Mike

    in reply to: Setting container width of one half of grid row? #1182624

    Hi,
    Thanks for the screenshot, you can accomplish this by using a color section in the middle of your page because it has 100% browser width while other columns have the page widths. For example I tested with a special heading then two 1/2 columns and then a color section in which I added the image as a background:
    2020-02-08-105055
    which gave me:
    2020-02-08-105347
    you could use an very wide image that is one half white and add your text section over that half, that is how this section on the Enfold Demo is created:
    2020-02-08-110923
    backend:
    2020-02-08-110734
    On my test page I forced the very wide color section background to browser full-width with this css:

    #av_section_1 {
    	background-size: contain !important; 
    }

    you would change the ID to a custom ID for the color section.
    then since my page width was already set to stretch I used this css to make the text section above have a max-width of 1210px

    #main > .main_color > .container {
    	    max-width: 1210px !important; 
    }

    Please give this a try.

    Best regards,
    Mike

    in reply to: icon instead of "home" in breadcrumbs #1182614

    Hi,
    I didn’t see a breadcrumb on your homepage, but I did find one on another page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .breadcrumb-trail a.trail-begin:after {
    	content: "\e821";
    	font-family: entypo-fontello;
    	font-size: 16px;
    	color: #000;
    }
    .breadcrumb-trail a.trail-begin {
    	color:#fff !important; 
    }

    expected results:
    2020-02-08-100443

    Best regards,
    Mike

    in reply to: How to make Picture shorter in the Header #1182599

    Hey Syosse,
    Thank you for the mockup and link.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    span.logo {
        width: 150px !important; 
    }
    #header_main > .container.av-logo-container {
    	max-width: 1010px !important; 
    }

    feel free to adjust the numbers to suit.

    Best regards,
    Mike

    in reply to: Breadcrumb position #1182597

    Hey andyqueanda,
    Thank you for the link, but I do not see any breadcrumbs, are they disabled right now, or do you mean a different page?
    If it is this page then please enable the breadcrumbs so we can see them and include a screenshot mockup where you would like them to be.

    Best regards,
    Mike

    in reply to: Woocommerce, Swatches and enfold #1182594

    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: enrique fold #1182593

    Hey kmmackey,
    Thank you for the link to your example, but unfortunately, we don’t have a way to change the animation from page-load to scroll into view.

    Best regards,
    Mike

    in reply to: Woocommerce, Swatches and enfold #1182568

    Hey Oversberg,
    Sorry for the late reply, thanks for creating two test installs for us to investigate. On the site that the plugin works it creates a div for each Variation Swatch and an image with role=”presentation”
    On the other site these div’s and images are not created. Please see the screenshot in Private Content area.
    My guess is that these containers are created with javascript and the plugin can’t find the correct place to hook into.
    In your Enfold Theme Options > Shop Options > Product gallery try using the WooCommerce 3.0 product gallery option
    2020-02-08-062201

    Best regards,
    Mike

    in reply to: help updating theme to most recent version #1182565

    Hi,
    Typically we prefer if you would open a new thread for each issue, but in this case please include the logins here. I wonder why the sites are braking? Are you overwriting the theme folders or are you uploading a new theme folder for the new theme?
    The steps I took were:
    1: rename the new extracted theme folder on my desktop to “enfold-new” from “enfold”
    2: upload “enfold-new” to /wp-content/themes/ via FTP
    3: in FTP rename “enfold” to “enfold-old” in /wp-content/themes/
    4: in FTP rename “enfold-new” to “enfold” in /wp-content/themes/
    5: check the site.
    note everything is done in FTP, afterwards you can login to the site to ensure everything is working correctly, I would only expect complications if your PHP version is 5.4 or under or if your WordPress is under version 5, or if you didn’t use a child theme and had custom scripts or theme modifications in the parent theme.
    Should you need to switch back to the old version, simply reverse the rename order above so your “old” theme is “enfold”

    Best regards,
    Mike

    in reply to: Custom link for "Show Details" link #1182562

    Hi,
    Thanks for the link to your page, this script will replace the link and add the popup class in every “show_details_button” on your site to your popup, I tried to be very specific with the classes so it should not affect other buttons.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_button_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
        $(".product .avia_cart_buttons a.button.show_details_button").attr("href", "#").addClass('spu-open-6686');
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_button_script');

    You will note that the button’s design will change a little because of your css for that button class, I assume that is ok?

    Best regards,
    Mike

    in reply to: Hide featured image on single portfolio… recursively #1182317

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

    
    //disable featured image
    function disable_featured_image( $html, $post_id, $post_image_id ) {
        if(is_single()) {
        return '';
        } else
        
        return $html;
        }
        add_filter( 'post_thumbnail_html', 'disable_featured_image', 10, 3 );

    Best regards,
    Mike

    in reply to: Custom link for "Show Details" link #1182311

    Hey MAKSIMS,
    Sorry for the late reply, do you mean that all of the buttons will trigger the same CF7 pop-up?
    If it is the button I’m thinking of there is not a built-in way to change the link of the button, but we may be able to add a function to do this. Please link to your page with the button and include the link to the pop-up so we can investigate.

    Best regards,
    Mike

    in reply to: Mouse Over Effect possible? #1182294

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

    #top.page-id-800 #av-layout-grid-1 .flex_cell.av_one_third {
    	padding: 360px 0px 0px 0px !important; 
    }
    #top.page-id-800 #av-layout-grid-1 .flex_cell.av_one_third:hover {
    	padding: 180px 0px 180px 0px !important; 
    }
    

    After applying the css, Please clear your browser cache and check the test page.

    Best regards,
    Mike

    Hi,
    I believe it could be because you have regular WordPress users who are also in the WPUsers plugin, so each user has two avatars. So you could try disabling the plugin or you can try this css in your Quick CSS:

    .topic-author > .bbp-reply-author > img.avatar.photo:nth-child(2),.reply.type-reply > .bbp-reply-author > img.avatar.photo:nth-child(2) {
    	display: none !important;
    }

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

    Best regards,
    Mike

    in reply to: help updating theme to most recent version #1182284

    Hi,
    Odd, the update had not been applied, not sure what happened back then but the FTP access still worked so I applied the update and it seems to be working fine on the frontend. The WordPress login didn’t work so I can’t check the backend, please login and check.

    Best regards,
    Mike

    Hi,
    I checked the css again and adjusted it to this which I put at the top of your Quick CSS:

    #top #bbpress-forums li.bbp-body ul.even {
    background-color: #e1e1e1 !important; 
    }

    Please clear your browser cache and check the screenshot and link in Private Content area.

    Best regards,
    Mike

    in reply to: Magazine Element duplicating Video on Navigation #1182022

    Hi,
    Sorry for the late reply and thanks for the login, the way the lightbox works is it gets all of the images, so in this case is it is getting the thumbnail and the featured image from the post, if you uncheck the “Display Thumbnails” option in the element then the lightbox only shows the image once, which id from the link, but the magazine element then doesn’t show the thumbnail on the front end.
    2020-02-06-065643
    but I’m sure you want to show the image in the magazine element.
    I tried removing the second image or classes or links with javascript but that just produced a blank slide where the second image would have been, so you still had to click twice. I also tried to simulate a double click when the arrows were clicked but that didn’t work either. So I’m not sure we can change this but I will try to research some more.
    Please try unchecking the “Display Thumbnails” option in the element to see how the front end looks and behaves, and try removing the featured image from the posts to see if that corrects the behavior of the magazine element.

    Best regards,
    Mike

    in reply to: Custom Linked Images to the 4th Footer Column #1182008

    Hey lifefitnessnz,
    Sorry for the late reply, as I understand your question you would like 3 custom social media icons in a row in your footer widget.
    For this I recommend using the “Custom HTML” widget and add the Icon element shortcode to it, to get the shortcode open a new post using the Classic Editor and choose Icon from the shortcode wand tool:
    2020-02-06-055201
    Then create each of your icons and design to suit adding your links and in the developer section add a custom class such as “footer-icons”
    2020-02-06-060036
    then add the shortcode to your widget:
    2020-02-06-060316
    This is the shortcode I used in this example:

    [av_font_icon icon='ue8f4' font='entypo-fontello' style='' caption='' size='40px' position='left' color='' link='manually,#' linktarget='' animation='' id='' custom_class='footer-icons' av_uid='' admin_preview_bg=''][/av_font_icon]
    [av_font_icon icon='ue8f2' font='entypo-fontello' style='' caption='' size='40px' position='left' color='' link='manually,#' linktarget='' animation='' id='' custom_class='footer-icons' av_uid='' admin_preview_bg=''][/av_font_icon]
    [av_font_icon icon='ue8ec' font='entypo-fontello' style='' caption='' size='40px' position='left' color='' link='manually,#' linktarget='' animation='' id='' custom_class='footer-icons' av_uid='' admin_preview_bg=''][/av_font_icon]

    This is the result:
    2020-02-06-060730
    They should show in a row.
    If you wish to use the image element instead, follow the same steps with the image shortcode and be sure to add the custom class and if your images show as a column like this:
    2020-02-06-062314
    then add this css to your Enfold Theme Options > General Styling > Quick CSS field

    #footer .widget_text .custom-html-widget .footer-icons {
    	display: inline !important; 
    }

    which should correct to a row:
    2020-02-06-062614
    If this doesn’t help then please create an example and link to it so we can help adjust your css.

    Best regards,
    Mike

    in reply to: YOAST FAQ block does not work #1182001

    Hi,
    Sorry for the late reply, I couldn’t login because there is also a htaccess login prompt before the WordPress prompt, please include login details for this also.
    Do you mean that you are tring to use the new “Block editor’s” FAQ structured data content block like in this image?
    2020-02-06-051757
    Your page looks like it was created with the Enfold “Advanced Layout Builder” so I assume that you are opening a Advanced Layout Builder page with the WordPress Block editor and tring to add this? If so you will have errors because the two editors can not be used on the same page.

    Best regards,
    Mike

    in reply to: put ajax live search on page via [avia_search] #1181995

    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

Viewing 30 posts - 18,211 through 18,240 (of 35,070 total)