Forum Replies Created
-
AuthorPosts
-
Hi,
I see that when linking directly from another page or site tohttps://kosmetikandnails.ch/#nailsthe tab opens but the page doesn’t scroll down to the tab. to correct try adding this code to the end of your functions.php file in Appearance > Editor:function custom_id_script(){ ?> <script> (function($){ $(document).ready(function(){ $("a.av-section-tab-title").each(function() { var $this = $(this); var _href = $this.attr("href"); var itemId = _href.substring(1, _href.length); $this.attr("id", itemId); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_id_script');it adds an “id” to the tab link so the page will scroll to the tab.
If the link to the tab is clicked on the same page the offset doesn’t always work so add this code to the end of your functions.php file in Appearance > Editor to apply an offset to the tabs:function custom_offset_script(){ ?> <script> (function($){ var width = $(window).width() if ((width >= 768)) { $('a.av-section-tab-title[href*="#"]:not([href="#"])').click(function() { var offset = -130; // <-- change the value here if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html, body').animate({ scrollTop: target.offset().top + offset }, 1000); return false; } } }); } else {} })(jQuery); </script> <?php } add_action('wp_footer', 'custom_offset_script');Best regards,
MikeHi,
3) yes the padding is removed from the tabs on mobile, this allowed the large tabs to have the same width as the container and not create multiple rows. But you could have top and bottom padding if you change the css to this:@media only screen and (max-width: 767px) { #top div div.product .woocommerce-tabs ul.tabs li a, #top div div.product .woocommerce-tabs ul.tabs li.active a { padding: 9px 0px!important; } }Best regards,
MikeHi,
Thank you for the login, I have installed your child theme and imported your parent theme settings.
Please clear your browser cache and check.Best regards,
MikeHi,
@peterolle thanks, I was hoping to find a reason your alt & title for the alternate logo is not working. I have again installed a clean version on my localhost with only the woocommerce plugin and no functions, and once I add the alt & title to the alternate logo the alt & logo reflects the change.

So I can’t confirm your issue, I will ask the rest of the team to try to recreate to error and offer suggestions to correct.
Thank you for your patience.Best regards,
MikeHi,
Try this link: https://www.dropbox.com/s/tdy21xu2tlwm9rg/justice.zip?dl=0Best regards,
MikeHi,
@peterolle login page is still giving the WordFence “You are temporarily locked out” error, please check.Best regards,
MikeHi,
1) Thanks for the screenshots, 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: 767px) { .responsive #top #wrap_all #main .slide-entry { width: 100% !important; } .responsive #top #wrap_all #main .content .entry-content-wrapper { padding: 0px !important; } .responsive #top #wrap_all .container { width: 95% !important; max-width: 95% !important; } }2) Typically the theme options will tell you when there is an update and you can update through the theme options, but you must have a “valid Envato private token” in the theme options, but on your site I see this is empty, please follow the instructions on the theme options page.
3) glad that helped.Best regards,
MikeMarch 13, 2020 at 1:08 pm in reply to: Hello, In wich way i can remove default title h3 on archieve pages? #1192871Hi,
Thank you for the ftp access, on the topic of restoring the title attribute to the linked thumbnails of your blog posts such as the link in the Private Content area, I found that the postslider.php was missing the title attribute on line 699$title
I have adjusted your child theme postslider.php so your natural titles will show.
I also found that to remove the “portfolio elements” from the same page the “tag.php” needed to be adjusted, I did this and added the file to your child theme, so now the heading doesn’t show and no scripts or css is used to hide it, as requested.
I reenabled all of your plugins and customizations except for the two jQuery scripts that you didn’t want to use anymore in your original request.
Please clear your browser cache and check.Best regards,
MikeHi,
Thank you for the login, I see in your “site health” you have a “Rest API” error:
Error: [] cURL error 28: Operation timed out after 10001 milliseconds with 0 bytes received
This is typically a server issue, this article suggests some possible solutions or this one.Best regards,
MikeHi,
Typically installing the child theme is easy, I just tried to explain the possible hangups “just in case”
A child theme is used as your theme that you can edit and customize and the customizations will not be lost when you update the parent theme (enfold)
When you don’t use a child theme and you edit the theme files or add functions in the functions.php these changes are lost when the parent theme is updated because the files are replaced with the new theme files.
Child theme files or functions.php are not replaced when the theme is updated.
If you have already edited the parent theme files or added functions in the functions.php, once you have installed your child theme you will need to move these customizations to your child theme.Best regards,
MikeHi,
Thank you for the feedback, I copied your failed post to my localhost via the Avia Layout Builder Debugger
and then I removed the nested columns and placed all of the content in the grid rows 2/3 + 1/3 and saved and viewed the page a couple of times and also tried editing it a couple of times and each time the grid rows remained in place in the frontend and the backend.
Please go to the test page in the Private Content area and test the frontend and the backend, it seems that it is stable now.Best regards,
MikeHi,
1) I believe to achieve this you will need to look for a woocommerce plugin.
3) for the detail tabs on mobile, 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: 767px) { #top div div.product .woocommerce-tabs ul.tabs li a,#top div div.product .woocommerce-tabs ul.tabs li.active a { padding: 0 !important; } #top .woocommerce-tabs .tabs li a { margin: 0 -4px 0 0; } }After applying the css, Please clear your browser cache and check.
4) to validate a minimum of 10 numbers adding this code to the end of your functions.php file in Appearance > Editor may work:// Limit Woocommerce phone field to 10 digits number add_action('woocommerce_checkout_process', 'my_custom_checkout_field_process'); function my_custom_checkout_field_process() { global $woocommerce; // Check if set, if its not set add an error. This one is only requite for companies if ( ! (preg_match('/^[0-9]{10}$/D', $_POST['billing_phone'] ))){ wc_add_notice( "Incorrect Phone Number! Please enter valid 10 digits phone number" ,'error' ); } }or this one:
// validation for Billing Phone checkout field add_action('woocommerce_checkout_process', 'custom_validate_billing_phone'); function custom_validate_billing_phone() { $is_correct = preg_match('/^[0-9 \-]{10}/i', $_POST['billing_phone']); if ( $_POST['billing_phone'] && !$is_correct) { wc_add_notice( __( 'Phone Number must be minimum 10 numbers.' ), 'error' ); } }Best regards,
MikeHi,
Ok, the original issue was solved and closed on Jun 12, 2019, and I’m unable to recreate the error with the latest install, yet you seem to be experiencing the issue now, so I’m not sure how I can assist without being able a investigate.Best regards,
MikeHi,
1) I’m not sure I understand, Please see the screenshots in Private Content area of what I see when looking at your page on mobile.
2) as for your social share buttons at the bottom of your posts, I see that you are using Enfold v4.6.3.1, you will need to update to v4.7.3 to correct the WordPress error with v5.3.2.
3) To post images please try uploading to an image host like https://savvyify.com/img/ and then copy the embed codes into your post.Best regards,
MikeHi,
1) I’m not sure I understand, Please see the screenshots in Private Content area of what I see when looking at your page on mobile.
2) as for your social share buttons at the bottom of your posts, I see that you are using Enfold v4.6.3.1, you will need to update to v4.7.3 to correct the WordPress error with v5.3.2.
3) To post images please try uploading to an image host like https://savvyify.com/img/ and then copy the embed codes into your post.Best regards,
MikeMarch 12, 2020 at 11:21 am in reply to: Enfold – Fullwidth Easy Slider – Mute Video Player option #1192548Hi,
To overlap the map over the “ZENTRALE LAGE” column, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-996 #eightypercent .av_gmaps_sc_main_wrap.av_gmaps_main_wrap { position: relative; margin-top: 4px; margin-right: -2.5vw; z-index: 8; border: 15px solid #ffffff; } #top.page-id-996 #eightypercent > div.flex_cell.no_margin.av_one_half.avia-builder-el-44.el_after_av_cell_one_half.avia-builder-el-last { height: 490px !important; } #top.page-id-996 #eightypercent #av_gmap_0 { height: 420px !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeMarch 12, 2020 at 10:26 am in reply to: Hello, In wich way i can remove default title h3 on archieve pages? #1192527Hi,
Thank you, but the FTP login doesn’t seem to be working, please check.Best regards,
MikeHi,
Perhaps your Permalink structure does have something to do with this, can we have an admin login to investigate? Since this is a dev site can we try different settings and disabling scripts and plugins to try to isolate this issue?Best regards,
MikeHi,
Glad this is working for you.
Since you are using a child theme you will not lose these customizations when you update. For updating it looks like your Envato private token is set and your Theme Updates in your theme option is working correctly. So updating should just be a matter of waiting for the next update to show in your theme update options.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
sorry, I’m not able to reproduce this on my install, and when I try to login to your site to investigate WordFence gives this error:You are temporarily locked outplease check.Best regards,
MikeHi,
The error doesn’t seem to be occurring on both sites. The error could be a curly quote in the code, or in a different script.
Please try disabling your plugins and checking that your script was copied correctly from your other vendor.
Otherwise, can we have an admin login to your stagging site and try disabling things to try to isolate the issue.Best regards,
MikeHi,
Thank you for the video, please link to your page so we can examine closer.Best regards,
MikeHi,
Sorry for the late reply, I have checked a few of your product pages but I don’t see a ” product reviews” section, I do see a “review” tab next to the description under the “size” and “add to cart” button, is this what you mean?
If so the “review” tab can’t be moved to it’s own section, it is part of the description tabs.
To make the main price above the description bold, please try this css:span.woocommerce-Price-amount.amount { font-size: 15px !important; font-weight: bolder !important; }After applying the css, Please clear your browser cache and check.
For me the product detail tabs are all in one row, do you mean this occurs on mobile devices?Best regards,
MikeHi,
Sorry for the late reply, when I check your site at different screen widths I don’t see a blank space, but this might be possible at odd in-between sizes when you don’t refresh the page.
Checking different screen sizes on a desktop screen by reducing the screen width of the window can get unexpected results.
A better approach is to use the dev tools and Toggle the Device Toolbar and click the predefined device sizes such as 320px, 375px, 425px, 768px, etc. and also refresh the page for each size you check.
Please see the screenshot in Private Content area.
This way you will see the page as a user on a real device would see it. Think of it like this, a user on a small iPhone, 320px, would never suddenly have their device change to a iPad, 768px, but if they switched to a iPad the page, javascript, and css would be loaded for the iPad.
I hope I have explained this well.Best regards,
MikeHi,
When I disable your plugins, except for your security plugins and disable your custom portfolio builder elements for the “page”, your page gives the error “Not available” so there seems to be a conflict with these.
Restoring the plugins and custom function corrects this but still leaves theUncaught TypeError: _.pluck is not a functionerror. When you disabled the plugins did you also disable the “Wordfence Security”, “WP Admin UI Customize” and “WPFront User Role Editor”? Can you leave these disabled, I don’t want to get locked out by disabling these.Best regards,
MikeHi,
Thank you for the screenshot, the white area to the left of your sidebar is the background of the page, your page has a max-width of 1610px, so on screens above that the page background is seen typically evenly on both sides.
so you could go to Enfold Theme Options > General Layout > Dimensions and change your max-width

or you could use this css to change the background color of the background, but on very large screens the background may also show on the far right side:#main > div.main_color.container_wrap_first.container_wrap.sidebar_left > div,#main > div.main_color.container_wrap_first.container_wrap.sidebar_left { background-color: lightgray; }Best regards,
MikeMarch 10, 2020 at 1:56 pm in reply to: Hello, In wich way i can remove default title h3 on archieve pages? #1191827Hi,
I see that you are using v4.6.3.1, please update to v4.7.3 and provide ftp access so I can temporarily remove your custom postslider.php to see if this brings the post titles back. There have been many changes in the postslider.php since your version so I can’t tell what was changed in your file.
I’m pretty sure that only changes I recommended before were jQuery, so disabling these should have restored these unless there was an underlying issue with v4.6.3.1 at the same time.Best regards,
MikeHi,
1) To change the submit button in the popup, I added this css:#responsive-form .avia_ajax_form input[type="submit"].button { background-color: #000000; color: #ffffff; border-color: #000000; }2) I see your text in the shortcode “Select the Activities You want to Involved in” above the checkboxes, but it’s not wrapped in a title field shortcode, please try building your form again so the title gets the correct shortcode for the fieldset.
3) to add a scrollbar to your popup I added this css to your “.white-popup” class in your Quick CSS:overflow-y: auto; height: 600px; }please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts
