Forum Replies Created

Viewing 30 posts - 16,201 through 16,230 (of 35,070 total)
  • Author
    Posts
  • in reply to: Enfold (4.7.6.2) Breaks Masonry Gallery Pagination #1242496

    Hi, @mikehartrich, did this work for you?

    @onlylettersandnumbers
    , I have re-opened your thread here, so you can see the link in the Private Content area. Please try the steps I posted and let us know in that thread if this solves.

    Best regards,
    Mike

    in reply to: Masonry Gallery Pagination does not work (WP 5.5 / E 4.7.6.3) #1242495

    Hi,

    @onlylettersandnumbers
    , I have re-opened your thread so you can see the link in the Private Content area.
    To try this, in the zip file you will find a folder “enfold”, assuming that your current theme is installed in the “enfold” directory at “/wp-content/themes/” (as it should be), you will need to rename your current directory to “enfold-old” and upload the new directory via ftp. By renaming the directory to “enfold-old” via ftp and uploading a new “enfold” via ftp you can easily fallback to your current version by reversing the steps.
    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: Icons are displaying as boxes in mobile version #1242489

    Hi,
    Glad to hear you have been able to sort this out, 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: Icons are displaying as boxes in mobile version #1242168

    Hi,

    @oladigital_co
    thanks for the link to your site, but I do not see that your icons are displayed as squared boxes, nor do I see the error: Access to font has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource
    Where are you seeing the icons displayed as squared boxes?
    I don’t believe that this is the same issue.

    Best regards,
    Mike

    Hi,
    Very good, thank you.

    Best regards,
    Mike

    in reply to: Accordion Toggle jumps over the page in Chrome #1242160

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

    .av-share-box .av-share-link a:before {
    	font-size: 30px !important;
    }

    Please feel free to adjust the font-size to suit, and then clear your browser cache and check.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    Hi,
    For question number 2, any changes would need to be reviewed and tested by the dev team, so once the updated plugin is available we can submit this for review. As this could take some time I recommend adding this change via a child theme and the plugin could advise other Enfold users to do the same, for now.

    Best regards,
    Mike

    in reply to: Accordion Toggle jumps over the page in Chrome #1242047

    Hey Angèle,
    Sorry for the very late reply and thank you for the login, I took a look at your page and the jumping seems random so I couldn’t pin it down to anything, but I came up with a possible solution where “on-click” we center the “active title” and this seems to work well. So in order for this to work best I set all of the accordions to none open initially, this way there will only be one “activeTitle” class on the page at any time.
    I added this code to the end of your child theme functions.php file in Appearance > Editor:

    function custom_accordion_toggle_script(){
      ?>
      <script>
    (function($){
      $("#top.page-id-114 .av_toggle_section").on('click', function () {
        $('.activeTitle').animate({
            scrollTop: $(this).offset().top - $(this).height()
        }, 1000);
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_accordion_toggle_script');

    Please clear your browser cache and check.

    I also noticed you had many “mixed content” errors in the browser console for the google font “roboto” I didn’t find what is loading it, but adding the meta tag upgrade-insecure-requests to the site head solves by forcing the browser to request the “https” version automatically.
    I added this code to the end of your child theme functions.php file in Appearance > Editor:

    
    function add_custom_meta(){
      ?>
      <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
      <?php
      }
    add_action('wp_head', 'add_custom_meta', 1);

    I hope you don’t mind.

    Best regards,
    Mike

    Hey Morticka,
    Sorry for the late reply and thanks for the login, I checked your child theme stylesheet css rules for this and found missing brackets between your rules so they were not working correctly, and I noticed that at 320px-375px your logo is too big to allow the cart icon so I corrected by commenting out some of your css rules and rebuilding in the Quick CSS, this way you can review and adjust to suit and eventually migrate to your child theme.
    This is what I added:

    @media only screen and (min-width: 319px) and (max-width: 417px) {
    .responsive #header_main .logo img {
        max-width: 60% !important;
      }
    }
    @media only screen  and (min-width: 480px) and (max-width: 988px) {
      .html_visible_cart .av-burger-menu-main {
        padding-right: 0;
      }
      .html_visible_cart ul.cart_dropdown {
          right: 100px;
      }
    .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
    }
      .responsive .logo img {
        max-width: 80% !important;
      }
    }
    @media only screen and (max-width: 479px) {
      .html_visible_cart ul.cart_dropdown {
          right: 120px !important;
          z-index: 5 !important;
      }
      .html_visible_cart .av-burger-menu-main {
        padding-right: 0;
      }
    }
    

    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I see this is your thread for the issue we discussed on the other thread. We will leave this open.

    Best regards,
    Mike

    Hey Rob,
    Sorry for the late reply, and thanks for the heads up about Falang multilanguage for WordPress, it will be interesting to check out the update.
    As far a customizing an element for your child theme, we recommend that you follow these steps, create a directory in your child theme called “/shortcodes/” and then add a copy of the directory from “/enfold/config-templatebuilder/avia-shortcodes/magazine/” and edit the magazine.php to suit.

    Now if you are using the pre-built child theme that should have been included with the last couple on versions, it will recognize that the child theme “/shortcodes/” directory is available and load any elements inside (avia-shortcodes).
    The function that does this is:

    function avia_include_shortcode_template( $paths )
    {
    	if( ! is_array( $paths ) )
    	{
    		$paths = array();
    	}
    	
    	$template_url = get_stylesheet_directory();
    	array_unshift( $paths, $template_url . '/shortcodes/' );
    
    	return $paths;
    }
    
    add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );

    Here is our documentation.
    If you built your own child theme then please add this function instead.

    Best regards,
    Mike

    in reply to: Time line in colorsection is not responsive #1242024

    Hi,
    Glad to hear you have been able to sort this out, we will close this now. Thank you for using Enfold, and Thank you for your patience.

    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: Use line break in tooltip caption #1242022

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold, and Thank you for your patience.

    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: Integrating toolset #1242014

    Hi,
    Thank you for your patience, I was directed to an open issue with Toolset, where Toolset says:

    Currently there is a workaround allowing users to proceed anyway with Toolset and Enfold, which is creating a Child Theme and customizing the templates to use such single content rendering function.

    This thread explains it well.
    So, as I understand, Toolset has a file you can add to your child theme that will allow the Toolset content to override the Enfold content for your custom post type. There was some work on a filter, but it seems this doesn’t work fully yet.
    Please try checking with Toolset support for the file to add to a child theme for Enfold, they may have it in a download area.
    Also, it now seems that the link I posted above is not the solution, so please remove it from your site if you added it.

    Best regards,
    Mike

    in reply to: Use line break in tooltip caption #1242013

    Hi,
    Sorry for the late reply, please try this format:
    Call us anytime at<span class="break">555-555-5555</span>
    and this css:

    .break:before {
      content: "\A";
      white-space: pre;
    }

    Best regards,
    Mike

    in reply to: Empty link in special headings – problem after update #1242010

    Hi,
    Thank you for the video, and the link to the un-touched page.
    If you would please note my post above with the screenshot, special headings that have a manual link option set and the url field is empty does not create a link, or an empty link, on the front-end. Since the url field is empty the theme ignores it.
    I confirm this again with your un-touched page, I also saved your un-touched page with the special headings that have a manual link option set and the url field is empty and on the front-end no links were created, I have also tested this on a new install.

    Now for why these are set this way on your site, I’m not sure, but you did say that these were created from a template, so perhaps that is how they were set when the template was created? I also tried updating a couple of installs on my localhost but I was not able to reproduce this.

    Please don’t worry, you don’t need to change them all since the url field is empty the theme ignores it.

    Best regards,
    Mike

    in reply to: Default demo vs Enfold 2017 #1241995

    Hi,
    Sorry for the late reply and thanks for the login, so to create two widgets in the header with the logo in the center and the menu below I followed the steps here, please see number 2: Widget left, Logo center, widget right, menu below.
    Please note the setup instructions, where it says Enfold > Header > Header Layout > Menu and Logo Position needs to be Logo left, Menu right, I set this for you and then added the css and I copied your widgets and css from your example site and added it to your new widgets.

    .topKnap a,.topKnap a:hover {
        width: 140px;
        height: 48px;
        color: #fff;
        display: inline-block;
        text-align: center;
        margin-right: 6px;
        padding: 13px 0;
        font-weight: bold;
        font-size: 14px;
        position: relative;
        float: right;
        -moz-transition: 200ms all ease-in-out;
        -o-transition: 200ms all ease-in-out;
        -webkit-transition: 200ms all ease-in-out;
        transition: 200ms all ease-in-out;
        background-color: #DAC7A6;
    }
    .topKontakt a,.topKontakt a:hover {
        color: #666666;
        font-size: 14px;
        text-decoration: none;
        background-color: transparent;
        display: inline;
    }

    You can check the full css in your child theme stylesheet, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Gallery pagination, only page 1 is visible #1241975

    Hi,
    Thank you for your patience, the dev team has released a beta version to correct this, if you would like to try this please see the link in the Private Content area.
    You will also need to upgrade WordPress again, for the test.
    The easiest and safest way to test this is to download the zip file below file and in it you will find a folder “enfold”, assuming that your current theme is installed in the “enfold” directory at “/wp-content/themes/” (as it should be), you will need to rename your current directory to “enfold-old”, via ftp, and upload the new directory “enfold” via ftp. If you wish, instead of using ftp you can use your WebHost “file manager”. By renaming the directory to “enfold-old” via ftp and uploading a new “enfold” via ftp you can easily fallback to your current version by reversing the steps.
    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: Vertically center iconbox element title #1241966

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold and Thank you for your patience.

    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: Vertically center iconbox element title #1241928

    Hi,
    Sorry for the late reply, and thanks for the login, I found your test page and added line-height: 30px; to your “.iconbox_icon” adjustment, this corrected the position of the Pseudo element :before and made the title much closer. Then I added this css to your Quick CSS:

    #top .iconbox_left_content > .iconbox_content {
    	height: 30px !important;
        vertical-align: middle !important;
        display: table-cell !important;
    }

    So with this we make the title the same height as the icon, and then use vertical-align in a table-cell.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add Phone Icon Next Burger Menu Icon on Mobile #1241896

    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: Switch sidebar by language /en/ #1241877

    Hey paralyzer86,
    Sorry for the late reply, while I was setting up my localhost with Polylang to research your issue I found that Polylang adds language logic to the widgets.
    2020-08-29_224249.jpg
    So my thought is, instead of trying to change the sidebar for the language, how about using the Polylang feature to change which widgets show for each language.
    This way you should be able to import with the default sidebars set and then after set the widgets based on your languages.

    Otherwise I believe you can add another line below the one you posted that would check the page language and change the default to true, like this:
    if ($avia_config['currently_viewing'] == 'page' && (pll_current_language() == 'en_US') ) : $default_sidebar = true; endif;
    I believe this is what you were trying to do, but I didn’t test this, I think setting the widgets is a better solution.

    Best regards,
    Mike

    in reply to: Time line in colorsection is not responsive #1241866

    Hi,
    Thank you for trying that, when I check the new page with Chrome dev tools and when I check on an Android device all three timelines are working. Please check again, perhaps you also have server cache?
    Are you checking with an iPhone, can you also check with an Android?

    Best regards,
    Mike

    in reply to: Enfold contact form not working #1241865

    Hey Dandelion222,
    Sorry for the late reply and thanks for the login, I took a look at your contact form which is a javascript for the Paperform form.
    As I understand how this works, your form submission is completed though an iframe for the Paperform site, from there Paperform sends it to were you wish. Your site is not sending the form, by the design of Paperform.
    In my test of your form, it gave the success message very quickly, so it didn’t seem like it loads slowly or processes slowly.
    I do see an error in the browser console for Invalid App Id: Must be a number or numeric string representing the application id. sdk.js this is for the sdk.js file for facebook, while this is not a direct error for your issue, and it didn’t seem to interrupt my use of your form, but javascript errors can cause errors in other scripts.
    Please take a look at your facebook sdk script and see if you can correct this error, or try disabling it and test your form to see if that helped, otherwise please ask Paperform if your account settings are correct and if the submissions are reaching Paperform.

    Best regards,
    Mike

    in reply to: Amendment of Main Title – Entry Title on Posts #1241860

    Hi,
    Sorry for the late reply and thanks for the link and screenshot. As I check your site I see how your “main-title entry-title” in the title bar is showing “Blog – Latest News” for single posts, while your other pages leading to the single post all show the page title. So to change the “main-title entry-title” of your single posts to the post title, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_post_title_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $("#top.single-post").each(function(){
        var posttitle = $(this).find("h1.post-title.entry-title a").text();
        $(this).find(".main-title.entry-title a").html(posttitle);
    
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_post_title_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Main menu full width #1241857

    Hi,
    Glad to hear you have it sorted out now, 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: Theme show error at the time of Updating. #1241856

    Hi,
    Sorry for the late reply, when I check your site I see this in the Debugging Info: Updates: enabled - token has changed and not verified but your theme is up to date.
    From the previous posts it seems like once you disabled your security plugins the update worked, so when there is another update please try disabling your security plugins and try again, as long as your token is verified.
    But please note that Envato limits the number of update checks you can do in a day for your account. Do you have many licenses on the same account? Typically it helps if you wait 24 hours before checking again.

    Best regards,
    Mike

    in reply to: Time line in colorsection is not responsive #1241852

    Hi,
    Thank you for the video, I see that you are using “WP-Super-Cache” please try disabling your cache & minifying plugins and check again.
    I tested the timeline on my localhost and it works correctly on mobile, I believe this is related to your cache plugin or a lazy load feature in a plugin.

    Best regards,
    Mike

    in reply to: Empty link in special headings – problem after update #1241851

    Hi,
    I tried editing your page but no empty links were created, I also tried to recreate this on my localhost but could not.
    But it would make sense if the template was saved with links those links would need to be changed if the element is used for a different purpose in the future. Currently, I don’t see that editing the page is causing empty links in the special headings.

    Best regards,
    Mike

    in reply to: Pb Editeur de formulaire plugin Thrive Leads et Enfold #1241850

    Hi,
    Sorry, I can not say how long it will take. Thank you for your patience.

    Best regards,
    Mike

Viewing 30 posts - 16,201 through 16,230 (of 35,070 total)