Forum Replies Created
-
AuthorPosts
-
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,
MikeHi,
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 addede.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,
MikeHi,
Thank you for explaining, your first css is correct for hiding the “feature image” on regular postsbig-preview
But your archive posts don’t use thebig-previewlayout.
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-contentsuch as “p”, “h2”, “h3”, etc.
Instead, I recommend moving the image before theentry-contentso it won’t be hidden and you can target the content easily withentry-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,
MikeHey 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,
MikeMarch 22, 2020 at 12:34 am in reply to: How Can I Remove the Thumbnail from Displaying on Related Posts? #1195165Hey 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,
MikeHi,
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.phpfile.
Please try checking your source code now.Best regards,
MikeHi,
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,
MikeHi,
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:

Try looking in your theme file for another zip file named “enfold.zip”, that will be the one you want to upload.Best regards,
MikeHi,
Glad to hear you have this sorted out, shall we close this then?Best regards,
MikeMarch 21, 2020 at 11:47 pm in reply to: No Updates available. You are running the latest version! (4.0.5) #1195160Hi,
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,
MikeHi,
You can purchase a new license and download the new theme from the Envato download area to update your theme.Best regards,
MikeHi,
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,
MikeMarch 21, 2020 at 10:56 pm in reply to: Links / One time with underline and on the other not…why is that so? #1195152Hey 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,
MikeMarch 21, 2020 at 10:26 pm in reply to: How To Get Home Page Image with Moving Text on Top? #1195149Hi,
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,
MikeHi,
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,
MikeHi,
Sorry for the late reply, and the login link, but it seems the login link is not working, please check.Best regards,
MikeHi,
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,
MikeHi,
Sorry for the late reply, I took a look at your wp-config.php file, and the seconddefine( 'WP_MEMORY_LIMIT', '512M' );is gone and I found no error messages on your site, so is this topic solved?Best regards,
MikeMarch 21, 2020 at 6:33 pm in reply to: Resizing space between columns + centering them on the page #1195122Hi,
Sorry for the late reply, the page doesn’t seem to exist right now, do you still need help with this?Best regards,
MikeHi,
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,
MikeHi,
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,
MikeHi,
To show the feature image on an archive page please try this css:#top.archive .entry-content { display: block !important; }Best regards,
MikeHi,
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 removingdefine( 'DISALLOW_FILE_EDIT', true );from thewp-config.phpfile 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,
MikeHi,
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,
MikeHi,
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">

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">

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.

I hope I have explained this well.Best regards,
MikeHi,
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,
MikeHi,
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:

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,
MikeHi,
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 -
AuthorPosts


