Hi
I’m trying to remove the green animation on linked images but not having any joy with it.
I’ve tried the following css code
.image-overlay { display: none!important; }
which I got from here – https://kriesi.at/support/topic/disable-image-link-animation/
but that’s not worked either.
Can you help please
Thanks
Farzan
Morning,
It takes time for google to crawl a site so it may just be coincidence that folders have popped up after the update.
Are you using any SEO plugins to generate a sitemap and or robots.txt?
You can use robots.txt to stop bots crawling certain folders. For example…
User-agent: *
Disallow: /cgi-bin/
Disallow: /tmp/
Disallow: /junk/
The Yoast SEO plugin has a functions to limit folders from your site map and hence stop Google crawling them.
Be careful when blocking folders as if google cant crawl certain resources (i.e. css files or js files) it may be a red mark against you.
Hope that helps
TJ
morning,
You could try the following…
@media only screen and (max-width: 990px) {
#top .av_header_transparency.av_alternate_logo_active .logo a > img {
display:none;}
}
Hope that helps
TJ
Sorry for my delay in answering, you can close the topic.
Thank you for your assistance,
Sergio
Hi Nikko
I received a reply from SiteGround as follows:
‘What you experienced is a known issue related to the Theme and Plugin updater for some of your website’s components (usually the ones that come with the theme itself). The issue has been discussed and resolved in this thread in the WordPress forums:
https://wordpress.org/support/topic/an-unexpected-error-occurred-49/
You can proceed from the above if the issue persists, which is not likely to happen, but still being prepared is key to success. Contacting the theme developers regarding the exact issue and whether they’ve encountered it with the theme you’re using is also a good idea.`
Everything appears ok now but I thought you would be interested in this response.
You can close the thread.
Thanks
Tina
Hi Nikko,
not yet. The arrows look totally different :-).
The slider arrows (right/left) should match the “back to the top” arrow, which Enfold places in the lower right corner of each screen.
Here are the seetings:
#scroll-top-link {
color: #ffffff;
font-size: 50px;
border: 0px solid #ffffff;
background-color: #a80000; }
How can I modify the slider arrrows the same way?
Regards, Bernd
Hi,
No problem, please let us know if you should need any further help on the topic.
Best regards,
Rikard
Hi,
Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Dear Andy
the solution is near :-) But unfortunatelly the first load still exists now with only 3 products, second load are now 4 products with right margins, etc…
.avia-content-slider-inner .products .product.first {
clear: none !important;
margin-right: 1% !important;
}
#top .products .product.last, #top #main .products .product.last {
margin-right: 1% !important;
}
div .products .product {
width: 24%;
}
This is how we add it to the child css. How to fix last problem with missing product on first load?
Thanks for your help. Marc
Hi, my images won’t line up correctly.
I’ve set them to equal heights in two different ways.
The top one is in 3rds in 3 columns.
The bottom one is a grid module in 3rds.
Neither one is working working.
How can I make them equal heights?
The information is in the private area.
After the woocommerce update 3.0 the prodcut immages dissapeared.
https://kriesi.at/support/topic/enfold-theme-woocommerce-product-images-not-showing-as-of-4-4-17/
and there was a quick fix by coping the older version of /woocommerce/templates/single-product/product-image.php
Do we still need the old file or is it fixed ?
Hey D579L,
I`ve answered you in the other ticket, but I can repeat the answer.
To solve your problem, just add this custom CSS code:
.av-layout-tab {
vertical-align: text-top !important;
}
Best regards,
John Torvik
Hi,
To solve your problem, just add this custom CSS code at the Quick CSS field:
.av-layout-tab {
vertical-align: text-top !important;
}
Best regards,
John Torvik
Hi,
My website is created in two languages – Polish and English. How may I translate without any plugin (like Loco Translate, Poedit, WPML or Polylang):
– the e-mail title “Thank you for your Message!” and the header “Your Message” in the middle of the e-mail text – both are in the „contact form” content element but not available to change them through the panel (I need to translate from English into Polish)?
– the topbar content (Polish is OK, I need to change it in the English web version)?
– the socket content (Polish is OK, I need to change it in the English web version)?
I cannot translate these strings with any plugin or software because they simply don’t work with Enfold in my case and all developers I’ve asked couldn’t solve the problem.
Thanks in advance for your support!
Monika
Hi,
For starters, you can set the body of this page to have a minimum width so that it’s responsive only until that width.
You can try this code:
.page-id-38 { min-width: 1024px !important; }
@media only screen and (max-width: 767px) {
.responsive .page-id-38#top #wrap_all #av_section_2 > .container { width:72%; float:right;}
}
That’s not going to automatically make everything pretty and your webpage will not necessarily mobile-friendly. But perhaps this sets you in the direction you want. You can check this page as a reference for dimensions of standard devices: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
We recommend hiring a freelance web designer to help you think of the mobile version of this page.
Best regards,
Sarah
Hi,
Great, glad you found the problem and thanks for letting us know. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi,
Resizing the browser somehow fixes the background and border issue. Please try to add this css code.
#order_review, #order_review_heading {
clear: none;
}
#top #payment {
border-radius: 5px;
border-style: solid;
border-width: 1px;
}
.main_color #payment {
background-color: #f8f8f8;
}
#top #payment ul.payment_methods li {
line-height: 2em;
text-align: left;
margin: -1px 0 0 0;
font-weight: normal;
border-style: solid;
border-width: 1px;
padding: 15px;
}
Best regards,
Ismael
Hi,
What is the actual code that used to display the search field? Please remove the modification then add this code in the functions.php file:
add_filter( 'wp_nav_menu_items', 'avia_append_search_side_nav', 10, 2 );
function avia_append_search_side_nav( $items, $args )
{
if (is_object($args) && $args->theme_location == 'avia')
{
global $avia_config;
ob_start();
get_search_form();
$form = ob_get_clean();
$items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">'.$form.' </li>';
}
return $items;
}
In the Quick CSS field, use this:
#top .menu-item #searchform {
top: 26px;
position: relative;
}
#top #searchform > div {
opacity: 1 !important;
display: block !important;
}
Best regards,
Ismael
Hi,
Glad we could help :-)
Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi,
I still can’t load your site, but it seems like Victoria can so I’ll tag her for the topic.
Best regards,
Rikard
Thanks @mensmaximus, and attn: Enfold developers.
We just began development on our webstore today. We are running the most recent versions of WordPress, Enfold, and WooCommerce. Working in Firefox, we had this same blurry image issue on the product page. Verified the problem also existed in Internet Explorer 11 and iOS 9 (Safari). The problem did not occur in Chrome.
We used the fix originally provided by @mensmaximus in https://kriesi.at/support/topic/enfold-theme-woocommerce-product-images-not-showing-as-of-4-4-17/page/3/#post-773385, just to fix the image problem, and it worked perfectly.
Looking forward to Enfold being fully compatible again.
I am attempting to add tabs to a page in my website where I am using the Tab Content. It was working fine until I added two more tabs. When I add content to the other tabs, the content is pushed down from the top. So when you click on the tab it looks like there is no content. If you scroll down you will find the content.
The picture I have in the left column on the schedule and fees tabs sometimes disappears as well. Sometimes it is there and sometimes it is missing, Right now under the schedule tab the picture is not showing up. It is showing up under the fees tab.
I would like to build more pages like this but. The other tab option under content elements is not as nice or flexible.
I cannot find any way to fix this.
Thank you,
Debra Littrell
I am attempting to add tabs to a page in my website where I am using the Tab Content. It was working fine until I added two more tabs. When I add content to the other tabs, the content is pushed down from the top. So when you click on the tab it looks like there is no content. If you scroll down you will find the content.
The picture I have in the left column on the schedule and fees tabs sometimes disappears as well. Sometimes it is there and sometimes it is missing,
I would like to build more pages like this but. The other tab option under content elements is not as nice or flexible.
I cannot find any way to fix this.
Thank you,
Debra Littrell
-
This reply was modified 8 years, 10 months ago by
D579L. Reason: I am moving this request to be its own separate request
i’ve managed to stop it from adding the bg on all blocks by using .page-id-1195 :)
Hi
This morning I noticed that the taxes are again not being applied to wholesale orders. Yikes! This is the same issue as this ticket:
https://kriesi.at/support/topic/urgent-tax-not-being-applied-on-wholesale-orders/#post-791718
I’ve changed absolutely nothing on my website since it all of sudden worked. I deactivated the Enfold theme and all taxes get applied correctly.
Could have I have some looking to this urgently please. You can do whatever is necessary to my staging area to get this working please. So far I have 8 order affected. I don’t want more!
I’ve added the login credentials you may need to troubleshoot.
Found same User Question in the Forum from 2013 and some similar via-layout-builder-text-box-deletes-blank-lines Don’t understand the solution – last entry from Josue.
Hey Bernd,
Try this in your functions.php instead
function add_custom_script(){
?>
<script>
(function($){
var button = $('.av-slideshow-caption a[href~="#next"]');
button.click(function(e) {
e.stopImmediatePropagation();
$('.next-slide').trigger('click');
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Best regards,
Mike