Forum Replies Created

Viewing 30 posts - 17,701 through 17,730 (of 35,026 total)
  • Author
    Posts
  • in reply to: Allowed memory exhausted #1195126

    Hi,
    Sorry for the late reply, I took a look at your wp-config.php file, and the second define( 'WP_MEMORY_LIMIT', '512M' ); is gone and I found no error messages on your site, so is this topic solved?

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, the page doesn’t seem to exist right now, do you still need help with this?

    Best regards,
    Mike

    in reply to: Is there a way to move the logo down a smidgeon #1195114

    Hi,
    Sorry for the late reply, to remove the white space from your mobile & tablet-sized screens, 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: 989px) { 
    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0px !important;
    }
    }

    To have your clients face show in the second section on mobile & tablet, try adding this css like this:

    @media only screen and (max-width: 989px) { 
    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0px !important;
    }
    #av_section_1 {
    background-position: -190px center !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Menu left sidebar #1195109

    Hi,
    Sorry for the late reply, I have looked at your sidebar menu and found that clicking on the “down arrows” in the menu expands & collapses the menu, is this what you were looking for?

    Best regards,
    Mike

    in reply to: Category boxes with images bottom of post #1195101

    Hi,
    To show the feature image on an archive page please try this css:

    #top.archive .entry-content {
    	display: block !important; 
    }

    Best regards,
    Mike

    in reply to: Column Link not working for custom link with anchor #1195098

    Hi,
    Thank you for the login, I believe some javascript is capturing the hashtag click, I see you are using a child theme so I wonder if you have any javascript in your functions.php?
    Please enable WordPress > Appearance > Editor by removing define( 'DISALLOW_FILE_EDIT', true ); from the wp-config.php file to enable it unless your web hosting setup another way to manage this option.
    I found that changing the hashtag to something else like a question mark allowed the url to work, but it won’t go to the anchor.
    By the way you don’t seem to have a “technology” id on your /services/ page.
    Anyways, on a new install the hashtags do work correctly.

    Best regards,
    Mike

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

    Hi,
    For the contact form “name” & “email” we will adjust the css to target the contact form, I added this:

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

    note the added “#commentform”

    Best regards,
    Mike

    in reply to: Prev next in Header #1195044

    Hi,
    Thank you for the login, I added the script to your functions.php for you, and I took screenshots of before and after for you to show it is working.
    Here is before, note the “next” & “prev” code <link rel="next" is after the <link rel="https://api.w.org/" and before <meta name="generator" content="WordPress 5.3.2">
    2020-03-21_054411.png
    Here is after with the script working, notice there is nothing between <link rel="https://api.w.org/" and <meta name="generator" content="WordPress 5.3.2">
    2020-03-21_054606.png
    Please note that this removal is preformed in the DOM and can be seen with the DevTools (or inspector), if you try to view with the page “source code” the code will still show because you are viewing the source code pre DOM, which is not what browsers or bots are actually reading.
    2020-03-21_060712.png
    I hope I have explained this well.

    Best regards,
    Mike

    in reply to: Prev next in Header #1194792

    Hi,
    Do you have a custom login url? The normal login “/wp-admin/” is leading to a “404” page.
    Or do we need to login from a certain country IP?

    Best regards,
    Mike

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

    Hi,
    Thanks for the login, on the contact form what color do you want the “Nachricht” text? Are the other placeholders colors correct?
    The placeholder color for the “Nachricht” text is set by:

    .responsive #top ::placeholder {
    	color: #ad0e08;
    	opacity: 1;
    	font-family: 'Montserrat Alternates', sans-serif;
            font-size: 17px!important;;
    }

    So what is wrong with this is that it is too general and it sets the color to all placeholders, I recommend setting a custom class for the contact form:
    2020-03-20_065045.png
    you can add this custom class to all of your contact forms, and then change the css to this:

    .responsive #top .contact-form ::placeholder {
    	color: blue !important; 
    }

    Notice I changed the color to blue just for example to show that this doesn’t change the color on the comment forms.
    For the other placeholders please try:

    #top #wrap_all #main .main_color .contact-form input::placeholder,#top #wrap_all #main .main_color .contact-form span.value_verifier_label {
    	color: blue !important;
    }

    This will change the color of the input text:

    #top .main_color .contact-form input[type="text"]{
    	color: blue !important;
    }

    Best regards,
    Mike

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

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

    a.av-masonry-entry .av-masonry-read-more {
        display: block;
        text-align: center;
        margin: 0px auto 0px auto;
        clear: both;
        width: 250px;
        border-color: #749944 !important; 
        border-style: solid;
        border-width: 1px;
        padding: 5px 0;
        border-radius: 100px;
        color: #749944;
    }

    Best regards,
    Mike

    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

Viewing 30 posts - 17,701 through 17,730 (of 35,026 total)