Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardHey creativeopole,
The theme ReCaptcha is only used with the contact form, so I don’t think this is theme related. Could you try disabling all plugins, except WooCommerce, to see if the problem goes away after that please?
Best regards,
RikardDecember 2, 2020 at 3:45 am in reply to: custom widget > navigation menu reset over and over #1264357Hi,
Thanks for the update and login details. I see that you are still running 4.7.5, could you try updating to the latest version of the theme please? If that doesn’t help then please give us step by step instructions on how to reproduce the problem you are having.
Best regards,
RikardHey LFK,
Thanks for the login token, I can’t see any problems on my end though. Could you give us step by step instructions on how to reproduce the problem please?
Best regards,
RikardHi,
Thanks for the update. Please add this to your functions.php file in order to change the text:
add_filter( 'wc_add_to_cart_message_html', 'albertopatrucchi_custom_add_to_cart_message' ); function albertopatrucchi_custom_add_to_cart_message() { $message = 'This is your new text' ; return $message; }Then add this to Quick CSS and change the colours to your liking:
#top div.woocommerce-message { border-color: #8BAF5B; background-color: #E0F1B5; color: #4F5F39; }Best regards,
RikardHi,
Thanks for that, the login details are not working though. Please check and verify.
Best regards,
RikardHey MyMedicalShopper,
We can’t see the screenshot you tried to post, please upload it to a service like Dropbox or Google drive, then link to it here. Also post a link to where we can see the actual problem.
Best regards,
RikardHi Strahinja,
Thanks for reaching out to us. The update to 4.7.x has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or use a plugin to upload the theme zip file: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
RikardHey Felix,
Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply. Also let us know where and how we can reproduce the problem.
Best regards,
RikardHi,
Thanks for the update. The easiest way would be to assign a class to your button elements. If you want a 12 pixel font size, then you could name the class button-12 for example. Then add this to Quick CSS:
.button-12 span { font-size: 12px; }You can add as many classes as you like depending on which font size you want.
Best regards,
RikardHi,
Thanks for the update. The details you posted look incomplete though, we need a URL to your site, a user name, and a password. Please post those details in private.
Best regards,
RikardHi Sabine,
Please try the following in Quick CSS under Enfold->General Styling:
.woocommerce h1, .woocommerce h2, .woocommerce h3, .woocommerce h4, .woocommerce h5, .woocommerce h6 { font-family: verdana; }Best regards,
RikardDecember 1, 2020 at 10:20 am in reply to: Issues with Mansory and blogposts in combination with polylang in latest version #1264167Hi Patrick,
Thanks for that. You can select a category from the dropdown, the same place where you can select the language. The reason why there are pages included is likely that you don’t have any posts assigned to the only category you have in the french language for example. Please try assigning a post to the category, it should work as expected after that.
Best regards,
RikardHey elbnetz,
Please try this instead, without spaces between the characters:
& # 3 4 ;Best regards,
RikardHi,
Thanks for the update. So what exactly do you want to change? Please try to be as specific as possible. If you are looking to change the width of your site then you can do so under Enfold->General Layout->Dimensions.
Best regards,
RikardHey XLeads,
Please try the following in Quick CSS under Enfold->General Styling:
.thumbnail_container .rating_container { opacity: 1; }Best regards,
RikardHi,
Thanks for the update. We’ve based our choice of giving the page title an h1 tag on this article: https://yoast.com/how-to-use-headings-on-your-site/. Which states that the title of the page should use an h1 tag. I’m no SEO expert, but if I was in your situation, then I would follow the advice that Yoast is giving here. If you are going to use breadcrumbs, then I think it would be better if you used an h2 tag for your first manually added header instead.
If you still want to change the breadcrumb then I will look for a solution for you.
Best regards,
RikardDecember 1, 2020 at 9:15 am in reply to: Nach Umstellung auf SSL wird eine andere Schrift angezeigt #1264157Hi,
Thanks for that. You have PHP code in Quick CSS, please remove that:
function remove_title_attr(){ ?> <script> jQuery(window).load(function(){ jQuery('.your-custom-class a').attr('rel','nofollow'); }); </script> <?php } add_action('wp_footer', 'remove_title_attr');If that doesn’t help then please try to disable your caching plugin, there’s no point in having them active if your site is not live.
Best regards,
RikardHey welti,
Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.
Best regards,
RikardHey manuelapucher,
Are you referring to the tab section element on the front page? If so then I can’t see any problem with it, all the tabs have the same space above the content on my end.
Best regards,
RikardHi,
Thanks for that, I think you forgot to include a URL to your site though? Also please include step by step instructions on how to reproduce the problem you are having.
Best regards,
RikardHi,
Great, I’m glad that Ismael could help you out. Please try this in Quick CSS in order to remove the overlay:
.home #full_slider_1 .image-overlay { display: none !important; }Best regards,
RikardHi Theo,
Thanks for the update. So everything is working as it should now then? If your CSS is doing what you want it to do then I don’t see any point in changing it.
Best regards,
RikardDecember 1, 2020 at 8:09 am in reply to: Shrinking fixed header not working on homeplage but on all subpages #1264146Hi,
Thanks for that. You have this function in your child theme which removes the sticky class:
/** * Remove sticky header on frontpage */ function remove_sticky_header_on_frontpage(){ if( is_front_page() ) { ?> <script> jQuery(window).load(function(){ jQuery('html').removeClass('html_header_sticky'); }); </script> <?php } } add_action('wp_footer', 'remove_sticky_header_on_frontpage');If you remove that then it should work as expected.
Best regards,
RikardHi Steve,
Thanks for that. It looks like the slider has not been updated, since there a lot of options missing from the version on your site. This is what the advanced tab in the element options is supposed to look like for example: https://imgur.com/a/tExYz9h
It looks like you are overriding the slider in your child theme, and that is the likely cause of this problem. Could you try to copy the content from the parent theme files over to your child, and add back your customisations after that to see if that helps please? You could also try to activate the parent to check if everything works as it should then.
Best regards,
RikardHey Junior,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (min-width: 768px) { .custom-postslider .slide-entry { height: 300px; min-height: 300px; } }I’m not sure what you would like to change on mobile, could you try to explain a bit further or post a screenshot highlighting your intentions please?
Best regards,
RikardHi Sastry,
Thanks for the update. Please try reaching out to the developers of the form plugin you are using, we can’t help you with that unfortunately.
I’m not sure if it’s possible to add a contact form to a layerslider, but you can try to copy the shortcodes of a form if you enable debug mode: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode
Best regards,
RikardHi,
Thanks for the update. Please try the following in Quick CSS under Enfold->General Styling:
.active_tab { background-color: red !important; }Best regards,
RikardDecember 1, 2020 at 6:46 am in reply to: Logo left, Menu left + Add linked image after menu / search logo #1264137Hi,
Thanks for that. Please try to add the elements on the right in a widget in the header: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
Rikard -
AuthorPosts
