Forum Replies Created

Viewing 30 posts - 17,731 through 17,760 (of 35,074 total)
  • Author
    Posts
  • in reply to: How to change comment box text? #1195250

    Hi,
    Glad to hear this helps. As for the “answer-mode” title, I’m having trouble because the two modes are actually combined and it seems that anything I add was braking it.
    But I believe I have it working with this function:

    function custom_hard_script(){
      ?>
      <script>
    (function($){
      $(document).click(function(){
      	if ($('.commentlist #reply-title').css('display') == 'block'){
         $("#reply-title").html(function() {
        return $(this).html().replace("Schreibe einen Kommentar", "Liebes Publikum"); 
    });
      	} else {}
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_hard_script');

    just change “Liebes Publikum” in the code to what you wish.
    Try adding this code to the end of your functions.php file in Appearance > Editor and Then clear your browser cache and any cache plugin, and check.
    I also believe that you may need to log out from admin to see the “answer-mode”

    Best regards,
    Mike

    in reply to: Menu left sidebar #1195219

    Hi,
    Sorry, I see that the page I was looking at is not an Enfold page, /baumschule/. So, I tested our navigation widget that allows you to choose a menu as a widget and show it in a sidebar, and with this function the menu is given a “toggle” to expand & collapse the menu:

    function custom_widget_nav_menu(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){ 
      	$('.widget_nav_menu li.menu-item-has-children').click(function(e) { 
      		e.preventDefault();
      	});
          $('.widget_nav_menu li.menu-item-has-children').find('ul').hide();
           $('.widget_nav_menu li.menu-item-has-children').click(function () { 
               $('.widget_nav_menu li.menu-item-has-children').not(this).find('ul').hide();  
               $(this).find('ul').toggle(); 
               
           
           });  
        });  
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_widget_nav_menu');

    This may need adjusting to work with your site, one downfall is when you build your sidebar menu please make the parent menu items have no link so when you click on them to expand the menu you don’t go to that page.
    In the code above I added e.preventDefault(); to avoid this behavior, but it would be better to have the parent menu items have no link.
    Please try building a sidebar navigation with this function to see if it suits your needs.

    Best regards,
    Mike

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

    Hi,
    Thank you for explaining, your first css is correct for hiding the “feature image” on regular posts big-preview
    But your archive posts don’t use the big-preview layout.
    So the css you are using to hide the excerpts on the archive posts is also hiding the feature image:

    .archive .entry-content {
        display: none;
    }

    because the image is inside of entry-content
    So to hide the content and show the feature image on the archive posts you could replace the above css with this:

    #top.archive #wrap_all #main .entry-content p,#top.archive #wrap_all #main .entry-content h2,#top.archive #wrap_all #main .entry-content > div:not(.avia-image-container),#top.archive #wrap_all #main .entry-content ul,#top.archive #wrap_all #main .entry-content h3,#top.archive #wrap_all #main .entry-content h6 {
        display: none;
    }

    But this is not the best because we have to guess what elements are going to be in the entry-content such as “p”, “h2”, “h3”, etc.
    Instead, I recommend moving the image before the entry-content so it won’t be hidden and you can target the content easily with entry-content.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_image_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      $( '#top.archive #wrap_all #main .post-entry' ).each(function() {
      $( this ).find( '.avia-image-container' ).insertBefore( $(this).find('.entry-content'));
      });
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_image_script');

    So with this function you can leave your current css as is.

    Best regards,
    Mike

    in reply to: Notification CUSTOMIZATION #1195167

    Hey obedj,
    I believe that this css doesn’t work because “.notialign” is not the correct class. Please link to your page so we can examine the elements and help get this working.

    Best regards,
    Mike

    Hey havi,
    To have the related posts not show the image, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.single .related_entries_container span.related_image_wrap {
    	display: none !important;
    }

    Best regards,
    Mike

    in reply to: Insecure Content Driving Me Nuts #1195164

    Hi,
    Sorry for the late reply and thanks for the login, I see that you are using a child theme so I added the function that was causing the error and adjusted the link, this is what I added:

    if(!function_exists('avia_set_profile_tag'))
    {
        /**
         * generates the html profile head tag
         * @return string the html head tag
         */
        function avia_set_profile_tag($echo = true)
        {
            $output = apply_filters('avf_profile_head_tag', '<link rel="profile" href="https://gmpg.org/xfn/11" />'."\n");
    		
            if($echo) echo $output;
            if(!$echo) return $output;
        }
        
        add_action( 'wp_head', 'avia_set_profile_tag', 10, 0 );

    It is from the \enfold\framework\php\function-set-avia-frontend.php file.
    Please try checking your source code now.

    Best regards,
    Mike

    in reply to: Error Upload Fontello Font Zip #1195163

    Hi,
    Thanks for the login, I downloaded your file “updated-20-march-20.zip” and found it contains no fonts, only svg’s, which will not work, you must have the icon fonts.

    Best regards,
    Mike

    in reply to: upgrade from differnt theme #1195162

    Hi,
    Sorry for the late reply, the error:

    The theme is missing the style.css stylesheet

    means that you are uploading the theme file that includes the “extras” and is not the theme itself.
    The “enfold.zip” you want to upload has these files:
    2020-03-21_180126.png
    Try looking in your theme file for another zip file named “enfold.zip”, that will be the one you want to upload.

    Best regards,
    Mike

    in reply to: Disable some links on the portfolio page #1195161

    Hi,
    Glad to hear you have this sorted out, shall we close this then?

    Best regards,
    Mike

    Hi,
    With version 4.0.5 you will have to update manually via FTP. Envato changed how the license is checked with the newer versions, they no longer use the “API” and now use a “Token”
    After you update via FTP you can enter your “Token” and then update from within the theme options for future versions.
    The easiest and safest way to update via FTP is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    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: how to do? #1195159

    Hi,
    You can purchase a new license and download the new theme from the Envato download area to update your theme.

    Best regards,
    Mike

    in reply to: Update of old version of Enfold #1195157

    Hi,
    Sorry for the late reply, when updating your site please note that you should not try to overwrite your theme directory, this can leave old files behind that can cause errors, you need to delete the old theme directory and then add the new one.
    Once you do this you may still get errors because your PHP version probably still needs to be updated to v7.3 and your WordPress also probably needs to be updated.

    Best regards,
    Mike

    in reply to: Hover Effect Mail Symbol (Header & Footer) #1195156

    Hi,
    Glad Nikko was able to help, shall we close this then?

    Best regards,
    Mike

    Hey Carsten,
    Sorry for the late reply, I believe that the difference is due to the custom css used for the demo that was used as the base. Neither is really wrong, as some people link to have the links have the underline all of the time to make the links stand out.
    If you would like them to all be the same then we will need to see the links live to determine which class is triggering which style so we can adjust.

    Best regards,
    Mike

    in reply to: How To Get Home Page Image with Moving Text on Top? #1195149

    Hi,
    To adjust the caption over a bit please adjust this css:

    .caption_right .slideshow_caption {
        right: 0px;
    }

    to something like this:

    .caption_right .slideshow_caption {
        right: 50px;
    }

    This moves the caption to the left a litle.

    Best regards,
    Mike

    in reply to: Größe eines Icons ändern #1195147

    Hi,
    To change the font size to 40px you will also need to adjust the margin of the “before” like this:

     .iconbox_content div.iconbox_icon:before {
     margin-left: -6px !important; 
     }
      .iconbox_content div.iconbox_icon {
      	font-size: 40px !important; 
      }

    Please adjust to suit.

    Best regards,
    Mike

    in reply to: Enfold accordion not visible in a popup window #1195142

    Hi,
    Sorry for the late reply, and the login link, but it seems the login link is not working, please check.

    Best regards,
    Mike

    in reply to: No margin and padding image in one half column #1195132

    Hi,
    Sorry for the late reply, to give the grid row a min-height please try adding a “white space” element and adjust the padding to suit.

    Best regards,
    Mike

    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

Viewing 30 posts - 17,731 through 17,760 (of 35,074 total)