Forum Replies Created

Viewing 30 posts - 17,761 through 17,790 (of 35,075 total)
  • Author
    Posts
  • in reply to: Button Formatting In Block Editor #1194768

    Hi,
    The button you linked to at /news/corona-virus-update/ matches the background color and other parameters of your sandbox button.
    2020-03-20_052524.png
    do you see something different than this?
    2020-03-20_052757.jpg

    Best regards,
    Mike

    in reply to: No Animations on the latest Version (4.7.3) #1194420

    Hi,
    I see that you are using a masonry element for your post grid on your “our blog” page, I was able to add a “read more” link after your excerpts with the following function in your child theme functions.php, but I see you would like it to be a button, do you have a button example of how you would like the button to look?

    /* Add a "read more" link" to masonry elements */
    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
      $(window).on('av-height-change', function() {
        $('.av-masonry-entry').each(function() {
          var more = $(this).find('.av-masonry-read-more');
          var cont = $(this).find('.av-masonry-entry-content');
      
          if( more.length == 1 ) return;
          cont.append('<div class="av-masonry-read-more">Read more</div>');
        });
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');

    Best regards,
    Mike

    in reply to: grid column failure #1194416

    Hi,
    Thanks for the feedback, the columns is the only thing I can find different between your failed post and my working version of the same post.
    I will ask the rest of the team to take a look and help with what I’m missing.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Button Formatting In Block Editor #1194402

    Hi,
    Thank you for the link, when I look at your red button “Find out how to join our online sessions” the only difference seems to be the border-radius which gives the button the round corners, is this what you are seeing too?
    to correct the border-radius, please change this in the css:
    border-radius: 3px!important;
    to this:
    border-radius: 23px!important;
    I don’t see a version of the black button so I’m not exactly sure what the border-radius is, but feel free to adjust to suit.

    Best regards,
    Mike

    in reply to: How to change comment box text? #1194395

    Hi,
    For the contact form please remove this part of the css:

    #top .main_color input[type="text"] {
        background-color: #e69d37;
    }

    so we can see how to adjust it, and also remove the code in the functions.php that I gave you that is causing the error.
    It may be easier if we had an admin login so we can adjust these snippets.

    Best regards,
    Mike

    in reply to: Prev next in Header #1194381

    Hi,
    When you check to see if the script is working are you looking at the “page source code” or are you looking at the “Dev Tools Inspector”?
    The “page source code” will still show it there, such as in your screenshot, but that is not what the “Google Bot” will see, the Google Bot sees the page after the DOM has been executed, which is what the “Dev Tools” shows when you right-click on the page and choose “inspect” or F12 on a Windows keyboard.

    Best regards,
    Mike

    in reply to: Prev next in Header #1194112

    Hi,
    Thank you for the link to your post, to remove the “next” & “prev” on your single posts, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      	$("#top.single-post").each(function() {
    $('link[rel="next"]').remove()
    $('link[rel="prev"]').remove()
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Menu and Info-Row are kinda "centered"? #1194103

    Hey KosmetikAndNails,
    Please check your Enfold Theme Options > General Layout > Dimensions > Maximum Container width it may be set to 1310px or 1410px, increasing this will change how the layout on large screens will be.

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1194099

    Hi,
    Sorry, I have installed Enfold v4.7.3 on a new live server but still couldn’t reproduce the alt & title error for the alternative logo.
    I have asked the rest of the team to try reproducing the error and offer suggestions to correct, but I have not had any feedback yet.
    Thank you for your patience.

    Best regards,
    Mike

    Hi,
    Sorry, I don’t see this error on your site. I recommend disabling the parts of the plugins I wrote about above, other than that I don’t have any customization suggestions for these plugins.
    This thread has covered many different topics, so I recommend closing this thread and if you have any other questions please open a new thread so we can focus on one issue per thread.
    Thanks for your understanding.

    Best regards,
    Mike

    Hi,
    Thank you for the login, I looked at your Events, Pages, & Posts but I don’t see the error from your screenshot. If you continue to see this error I would recommend disabling your plugins to see if that helps. One plugin I question it your “Enfold – Repeatable Content” this third party plugin is about 4 years old now and a lot of changes has been made to the Advanced Layout Builder since then.

    Best regards,
    Mike

    in reply to: How to link to tabs #1194081

    Hi,
    I see you have the latest version but in your update options in your theme panel your “Envato private token” field is empty, this is necessary for updates in the theme panel to work, but envato-market should also send you emails, you will have to ask envato-market why you are not getting these.

    Best regards,
    Mike

    in reply to: How to change comment box text? #1194080

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

    #respond span.required {
        display: inline-block !important; 
    }
    .commentlist #respond #comment {
        width: 100% !important; 
    }

    and then add this code to the end of your functions.php file in Appearance > Editor:

    function custom_reply_title(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $("h3#reply-title").text("Liebes Publikum, schreib mir doch etwas Nettes :-)");
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_reply_title');

    Best regards,
    Mike

    Hey spidercreations,
    Sorry for the late reply, please try setting the “Classic Editor” as your default editor in the theme options at Enfold Theme Options > Select Your Editor > Use WP Classic Editor If you are using another “Classic Editor” plugin, please disable.
    So you only see this error with the “Events Calendar” post types?
    Please include an admin login in the Private Content area so we can examine closer.

    Best regards,
    Mike

    in reply to: How to change comment box text? #1193784

    Hi,
    This code:

    #top #wrap_all .comment-form-url {
    display: none;
    }

    is to hide the “website” field.
    To change the color of the text when entered into your form so it is red and not the same orange as the background color, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .main_color input[type="text"], #top .main_color select {
        color: #720c10 !important; 
    }

    Best regards,
    Mike

    in reply to: Center Content – Tab Section #1193778

    Hi,
    Thank you for the screenshot, I’m asking the rest of the team for thoughts on centering this better.
    Thank you for your patience.

    Best regards,
    Mike

    Hi,
    The errors were caused by your “Async JavaScript” & Autoptimize plugins, Async JavaScript needs to be set to “Defer” and Autoptimize needs to have ”
    Ottimizzare il codice JavaScript?” and “Minify excluded CSS and JS files?” off, otherwise, the JQuery doesn’t load correctly.
    This is common for Autoptimize.
    I checked your homepage with a different keyword tool and “Agrave” was not found, so I’m not sure what to make of this.

    Best regards,
    Mike

    in reply to: Make Social media icons bigger #1193769

    Hi,
    Glad to help, unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Updating broke the web #1193767

    Hi,
    Glad to hear, unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: A couple of questions about demos installation #1193766

    Hi,
    Thank you, glad we could help and if you have more questions in the future please feel free to open a new thread.
    I took a look at your theme options for updating and it seems the token was working correctly, there was a link that said “manually check now” when I clicked it I got the message that an Update is Available.
    Please check.
    2020-03-17_054754.png

    Best regards,
    Mike

    in reply to: Skip links issue #1193703

    Hi,
    As I recall we didn’t want to use the “main” id because some parts of the page wasn’t necessary to include, but you can use “main” if you wish.
    To have the button created in English and French please try this function instead:

    function custom_screen_reader_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    	if ( document.documentElement.lang.toLowerCase() === "fr-ca" ) {
      $( '<div>Passer au contenu principal</div>' ).insertBefore( '#top' );
      }else{
      	 $( '<div>Skip to main content</div>' ).insertBefore( '#top' );
      }
      });
    })(jQuery);
    </script>
      <?php
      }
      add_action('wp_footer', 'custom_screen_reader_script');

    Best regards,
    Mike

    in reply to: varnish cache & enfold #1193702

    Hi,
    Thank you @romano2

    Best regards,
    Mike

    in reply to: Updating broke the web #1193700

    Hi,
    The option to use the Classic Editor is on the Enfold Theme Options panel, the first panel in the theme options.
    2020-03-16_183133.png
    This: “I would suggest that you update on a staging version of the site if you want to keep the production site safe”. means that if you want to keep your site live for your visitors, but also test whether the update will cause any issues, you can use a stagging clone of your site on a temp url to check.

    Check your webhost to see if you have the one-click staging site option, this is an option in most cPanels to create a staging clone of your site so you can test an update on it and your live site will stay up and running untouched. You can always ask your webhost to help you with setting this up if you want.

    Here are some screenshots of what it would look like:
    staging-1
    staging-2

    Best regards,
    Mike

    in reply to: How to link to tabs #1193691

    Hi,
    Sorry we couldn’t assist more with a solution, but glad you have a working solution.

    Best regards,
    Mike

    in reply to: Make Social media icons bigger #1193472

    Hi,
    Try changing the number “12” in the url, it is the size for the image:
    here it is at “12”

    li.av-social-link-tumblr a:before {
    	content: url(https://img.icons8.com/officexs/12/000000/great-britain.png);
    }
    li.av-social-link-soundcloud a:before {
    	content: url(https://img.icons8.com/color/12/000000/sweden.png);
    }

    here it is at “24”

    li.av-social-link-tumblr a:before {
    	content: url(https://img.icons8.com/officexs/24/000000/great-britain.png);
    }
    li.av-social-link-soundcloud a:before {
    	content: url(https://img.icons8.com/color/24/000000/sweden.png);
    }

    “24” might be too big, try different numbers to suit.

    Best regards,
    Mike

    in reply to: Skip links issue #1193468

    Hey darryllevine,
    Sorry for the late reply, as you see from the linked post we didn’t receive feedback for the final solution.
    As I recall adding the ID “main_content” to the first element of content, such as after your slider was important to it working, because the function that adds the “Skip to main content” button links to the ID “main_content” I searched your page but didn’t find the ID “main_content”, but “tabing” though does seem to highlight the links down through the page.

    Best regards,
    Mike

    in reply to: varnish cache & enfold #1193461

    Hi,
    Sorry for the late reply, I was hoping @romano2 would reply. Unfortunately, I don’t have much Varnish experience but I did find this list of common Varnish issues.
    Hopefully, this will help.

    Best regards,
    Mike

    in reply to: enfold dynamic avia folder #1193459

    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: suppress tooltips in Icon Grid #1193458

    Hi,
    This function will remove the titles only on the home page for the icongrid flip boxes.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function remove_icongrid_title_on_hover(){
      ?>
      <script>
    (function($){
    $("#top.home .avia-icon-grid-container a.avia-icongrid-wrapper").hover(function(){
    $(this).removeAttr("title");
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_icongrid_title_on_hover');

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

    Best regards,
    Mike

    in reply to: Demo Import Not Working #1193456

    Hi,
    Thanks for the login and FTP access, I have installed the demo for you, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 17,761 through 17,790 (of 35,075 total)