Forum Replies Created

Viewing 30 posts - 16,321 through 16,350 (of 35,023 total)
  • Author
    Posts
  • Hi,
    Sorry for the late reply, I believe the code Ismael shared is to remove the zoom from the product image on a single product page.
    I checked the link above to your sample page and the product image is not zooming for me.
    Is it still zooming for you?
    Your items under “Érdekelhetnek még” still zoom, to correct that please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .thumbnail_container:hover {
        transform: scale(1) !important;
    }

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

    Best regards,
    Mike

    in reply to: MagnificPopUp is not a function #1234688

    Hi,
    Sorry for the late reply, I took a look at both of your sites mobile menu and they both seem to work now, do you need any further help on this topic?

    Best regards,
    Mike

    in reply to: Transparent header as default #1234687

    Hi,
    Sorry for the late reply, I tested your code and it didn’t work for me, then I copied what seems like the same code from the documentation and it is working for me?

    add_action( 'after_setup_theme', 'enfold_customization_product_switch' );
    function enfold_customization_product_switch(){
      add_filter('avf_builder_elements', 'avf_builder_elements_mod');
    }
    
    function avf_builder_elements_mod($elements)
    {
      $counter = 0;
        foreach($elements as $element)
        {
        if($element['id'] == 'header_transparency')  {
                $elements[$counter]['std'] = 'header_transparent';
            }
    
            $counter++;
        }
    
      return $elements;
    }

    Please give this a try.

    Best regards,
    Mike

    in reply to: Sidebar Menu to Match Main Menu #1234685

    Hi,
    Sorry for the late reply and thanks for the link and screenshot. I see that your main menu titles are shorter than the sidebar menu.
    Have you tried disabling your Autoptimize plugin and clearing any server cache? I believe your sidebar menu is auto created so it should update.
    Please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Edit toggle button of modal window (cookies) #1234682

    Hi,
    Glad Ismael could 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: Pb Editeur de formulaire plugin Thrive Leads et Enfold #1234681

    Hi,
    Thrive Leads replied to my request:

    Thanks for reaching out to us.
    We have users that are using the same theme with our Thrive tools. That
    said, we still cannot guarantee that it will work 100% with other plugins &
    themes…
    Currently, we do not have a test version.

    So unless we can test with your site, I don’t see anything else we can do.

    Best regards,
    Mike

    in reply to: Customizing Gallery spacing/borders in Enfold #1234680

    Hi,
    Sorry for the late reply, do you mean that this css is causing your text and images to not show on the page in the Private Content area?

    #email {
        border: 1px solid #e2e2e2 !important;
    }

    I took a look at your page and tested the css but found the text and images loading well. Has this been resolved?

    Best regards,
    Mike

    in reply to: Sidebar soll mit fließen #1234679

    Hey Mike,
    Entschuldigung für die späte Antwort, es ist möglich, eine Seitenleiste klebrig zu machen. Sticky Menu, Sticky Header (or anything!) on Scroll zu verwenden
    Eine andere Möglichkeit besteht darin, dieses benutzerdefinierte Skript für Seiten wie Ihr Beispiel auszuprobieren. Fügen Sie diesen Code am Ende Ihrer Datei functions.php unter Darstellung> Editor hinzu:

    function custom_sticky_script(){
      ?>
      <script>
    (function ($) {
      $(window).scroll(function (e) {
        var $sticky = $('#top.single-post .inner_sidebar.extralight-border');
        var width = $(window).width()
        var position = ($sticky.css('position') == 'fixed');
        if ($(this).scrollTop() > 30 && width >= 767 && !position) {
          $sticky.css({ 'position': 'fixed', 'top': '230px', 'width': $sticky.innerWidth() });
          $sticky.next().css('float', 'right');
        }
        if ($(this).scrollTop() < 30 && position) {
          $sticky.css({ 'position': 'static', 'top': '0px', 'width': '' });
          $sticky.next().css('float', 'left');
        }
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_sticky_script');

    Leeren Sie dann Ihren Browser-Cache und überprüfen Sie.
    Die meisten Beiträge, bei denen ich dies getestet habe, haben gut funktioniert, aber bei einigen Ihrer Beiträge befindet sich die Seitenleiste an einer anderen Stelle, die korrigiert werden sollte.

    — Translated with Google —

    Sorry for the late reply, it is possible to make a sidebar sticky, one way is to use a plugin like Sticky Menu, Sticky Header (or anything!) on Scroll
    Another way is to try this custom script for pages like your example. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_sticky_script(){
      ?>
      <script>
    (function ($) {
      $(window).scroll(function (e) {
        var $sticky = $('#top.single-post .inner_sidebar.extralight-border');
        var width = $(window).width()
        var position = ($sticky.css('position') == 'fixed');
        if ($(this).scrollTop() > 30 && width >= 767 && !position) {
          $sticky.css({ 'position': 'fixed', 'top': '230px', 'width': $sticky.innerWidth() });
          $sticky.next().css('float', 'right');
        }
        if ($(this).scrollTop() < 30 && position) {
          $sticky.css({ 'position': 'static', 'top': '0px', 'width': '' });
          $sticky.next().css('float', 'left');
        }
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_sticky_script');

    Then clear your browser cache and check.
    Most of the posts I tested this worked well on, but some of your posts have the sidebar in a different location which should be corrected.

    Best regards,
    Mike

    in reply to: Modify tab title on product page on mobiles only #1234677

    Hi,
    Sorry for the late reply, try this function instead:

    
    function woo_rename_tabs( $tabs ) {
    	if(wp_is_mobile()) {
    	$tabs['additional_information']['title'] = __( 'Infos' );	// Rename the additional information tab
    	return $tabs;
    	} else{ return $tabs; }
    }
    add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Adjust mega menu #1234674

    Hey mike.rav,
    Sorry for the late reply, and thanks for the screenshot, to add mega menu columns and images please see our documentation here.

    Best regards,
    Mike

    in reply to: Fixed background color section doesn't work #1234673

    Hi,
    Sorry for the late reply, on the page in the Private Content area do you want the “JUBILEUMSBOKA” background color to be fixed and the text and image scroll over the top, or do you want the color, text, & image of that section to be fixed with parallax scrolling?

    Best regards,
    Mike

    in reply to: Print problem #1234672

    Hey dondela,
    Sorry for the late reply, I took a look at your page when printing and I see that your custom “printfriendly.css” in your child theme contains:.avia-section {display: none;} which is hiding the 8 color sections on your page from printing.
    Please try removing this css or adjust to only hide the sections you wish.

    Best regards,
    Mike

    in reply to: extension offer #1234671

    Hi,
    Sorry for the late reply and for the confusion. To renew support please follow this guide.
    The email you received is automatically sent by Envato when you are getting close to renew, the link may have worked correctly if you were logged into your Envato account at the time, my guess. Anyways the link above shows you how to renew with screenshots.

    Best regards,
    Mike

    in reply to: Portfolio Title & Description – Help #1234670

    Hey Dino0103,
    Sorry for the late reply and thanks for the links. Please include an admin login in the Private Content area so we can investigate.
    This sounds like your css is not updating correctly when you make the change, or your server is also caching the older css, we will know more once we can look at the backend.

    Best regards,
    Mike

    in reply to: Mobile WooCommerce issues #1234669

    Hey DanielKG,
    Sorry for the late reply and thanks for the links and images, I only have an Android to test with and the option reacts more like a popup than what you are seeing. Nonetheless I believe this is due to your viewport not having an maximum value. Currently I see your viewport is:
    <meta name="viewport" content="width=device-width, initial-scale=1"> I believe we should try this:
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
    I was not able to login to your site, so please try editing your theme’s header.php on line 65, look for:

    if( strpos($responsive, 'responsive') !== false ) { echo '<meta name="viewport" content="width=device-width, initial-scale=1">';  }

    and change to:

    if( strpos($responsive, 'responsive') !== false ) { echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">';  }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Modify "Proceed with PayPal" button text on WooCommerce #1234665

    Hi,
    Sorry for the late reply, is this the button you are trying to change?
    2020-08-02_132230.png
    Thanks to @Guenni007 for the function, I modified it a little to find the button text “Payer avec PayPal” and it seems to work now.

    function my_text_strings( $translated_text, $text, $domain ){
    switch ( $translated_text ){
        case 'Payer avec PayPal':  $translated_text = __( 'Payerthgy', $domain );
        break;
      }
      return $translated_text;
    }
    add_filter('gettext', 'my_text_strings', 20, 3);

    2020-08-02_132900.png
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Enfold Medical #1234663

    Hi,
    Sorry for the late reply, I’m not quite sure what is happening, can you record your screen making the change that causes the error and include an admin login in the Private Content area so we can replicate and investigate.

    Best regards,
    Mike

    in reply to: Masonry grid pulling in ACF field #1234661

    Hey hatchedconcepts,
    Sorry for the late reply and thank for the login, I see that your Post categories are using the same slugs as your Page categories, this can led to unexpected results. If you click on the category “home” count in Pages it shows the 3 pages
    2020-08-02_125328.png
    but if you do the same for Post categories it leads to no posts found.

    Best regards,
    Mike

    in reply to: Options Tables Huge ! #1234658

    Hi,
    Sorry for the late reply, in the link above the context for “then reactivate your settings” is that you have

    “Disable adding unique timestamps” in “Unique timestamp of merged files” to suppress adding the timestamp.

    and after waiting sometime you can “then reactivate your settings” meaning that you can enable adding unique timestamps.

    In your case you were following the steps to clear your file merging and would enable file merging again once your server cache is cleared, typically this can take “sometime”.
    I recommend not using any file merging, cache, minifying, server caching, & etc until your site is completely done because it can mask or create issues while creating your site.
    I hope I explained this well.

    Best regards,
    Mike

    in reply to: Customized Auto response Enfold Form #1234655

    Hi,
    Sorry for the late reply, have you tried this suggestion to add your custom mane to the out going message?
    Our contact form is basic and doesn’t include functions such as more advanced contact forms like Contact 7. Have you tried this plugin?

    Best regards,
    Mike

    in reply to: Integrating toolset #1234654

    Hi,
    Sorry for the late reply, I believe you are looking for this snippet. Please let us know if this helps.

    Best regards,
    Mike

    in reply to: WooCommerce – Product Page Template for CSV-Upload #1234651

    Hey Christin,
    Sorry for the late reply, the first link above to the Shop Demo is the default product page, the other two were created with the Advanced Layout Builder using the woocommerce elements in the “Plugin Additions” tab.
    2020-08-02_103743.png
    Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions.
    As for importing products via CSV for custom product pages, I tried researching this “issue” but only found one thread about this and it was about using the plugin WP All Import.
    You can import your products via a woocommerce CSV file by going to WordPress > Tools > Import > WooCommerce products (CSV)
    2020-08-02_105358.png
    For example, the woocommerce plugin includes a sample CSV import file at: \wp-content\plugins\woocommerce\sample-data\
    After the products are imported successfully and if you wish to change them to “custom product pages” with the Advanced Layout Builder, simply open the Advanced Layout Builder and edit to suit.
    Since the sample products were created with the Classic Editor and then exported, they will be imported the same.

    As for editing PHP files to create your “certain screen design”, while you can create many layouts with the Advanced Layout Builder, sometimes this is not enough to match the desired design, in this case you may need to edit the files in \enfold\config-woocommerce\. In these cases I would recommend hiring a freelancer to make the changes for you as it is not an easy task.

    Best regards,
    Mike

    in reply to: Tab Section Problem after Update #1234623

    Hi,

    @Cloudypro
    & @parosweb, thanks for confirming that this helped, I will update once we have an official patch, thanks for your patience.

    Best regards,
    Mike

    in reply to: page builder not working! #1234618

    Hi,
    Sorry for the late reply and thanks for the admin login and ftp access. I found that your page has a broken html tree, that is your “code block” element with the Mailerlite form seems to have unclosed tags that is braking the page.
    Since you have the Avia Layout Builder Debugger enabled I was able to copy most of the page shortcode, without the code block, and create a test page.
    The test page seems correct on the frontend and the backend is editable.
    Please carefully check the test page elements as they are without the code block element to ensure they are correct, then if you link to the code you wish to add to the code block element I can check it for you and add it.

    After we are able to update the test page to the way it should be we can delete your broken page.

    Best regards,
    Mike

    in reply to: Side Bar image top margin #1234597

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

    .html_header_top.html_header_sticky #main {
        padding-top: 46px !important;
    }

    Best regards,
    Mike

    in reply to: Tab Section Problem after Update #1234553

    Hi,
    @guenni007 Thanks for explaining how you were able to reproduce the issue and suggesting to add a title to solve as a quick fix.
    @cloudypro, @parosweb, & @guenni007
    I found in the file:
    \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\tab_section\tab_sub_section.php on line 585, there is a new line of code and disabling it seems to solve the issue.
    I will be reporting this to the dev team for review & I’m sure they will correct this line, but if you would like to try this “hack” please create a fallback copy of your current tab_sub_section.php file and then replace it with this file:
    deleted
    Then clear your browser cache and any cache plugin, and check.

    Once I hear back from the dev team with an official patch I will report back. Thank you for your patience.

    Best regards,
    Mike

    • This reply was modified 5 years, 5 months ago by Mike. Reason: removed old temp fix link
    in reply to: Pb Editeur de formulaire plugin Thrive Leads et Enfold #1234530

    Hi,
    Thanks for the feedback.

    Best regards,
    Mike

    in reply to: WPML & Masonry / Magazine #1234507

    Hey Wolfgang,
    Sorry for the late reply, I’m not sure which page shows your error, but I did find that your plugin “WP-Sweep” is listed as “incompatible” with WPML. Please see this support thread from 2 months ago:
    WARNING! Sweep “Unused Terms” breaks WPML!!
    So perhaps this is the cause, do you have a backup of your database before you used WP-Sweep when it was working correctly?

    Best regards,
    Mike

    in reply to: Tab Section Problem after Update #1234506

    Hi,

    @Cloudypro
    Sorry for the late reply and thanks for the link, I have taken a look at your page and see the issue but I don’t quite see the cause, it seems to happen to the “person” icon tab which shows the wrong tab, but if I click each tab backwards stating from the “headphone” icon, each tab works ok, mostly.

    Please include an admin login in the Private Content area so we can investigate further.

    Have you tried disabling your plugins to check for a conflict? I understand that this just occurred after an update, but it’s good to test this to rule out plugin updates also.

    Best regards,
    Mike

    in reply to: Mobile formatting #1234500

    Hi,
    Sorry for the late reply and thanks for the link but the login token seems to have expired.
    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-824 #av_section_2 > div > div > div > div > div:nth-child(4) {
      display: flex !important; 
      flex-wrap: wrap !important; 
      }
      #top.page-id-824 #av_section_2 > div > div > div > div > div:nth-child(4) > div.avia-builder-el-18 {
          order: 2 !important; 
      }
      #top.page-id-824 #av_section_2 > div > div > div > div > div:nth-child(4) > div.avia-builder-el-23 {
          order: 1 !important; 
      }
      }

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

    Best regards,
    Mike

Viewing 30 posts - 16,321 through 16,350 (of 35,023 total)