Forum Replies Created

Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • Hey,
    I just noticed that somehow the bug disppeared and the comments are postable again (no “comments closed” error). Not really sure what did it – I implemented two small suggest fixes from Günter (other threads with other issues) for the template-builder.php and section.php and fixed a bug where the comments box was shown twice (via CSS visibility:hidden for the second one).

    Anyhow – as this works now, this thread can be closed – thanks for your help along the way!
    Best regards,
    Joerka

    Hi Günter,

    thanks a lot also here, your solution works like a charm!
    Same question as in my other thread if this will be updated with the next updates or if I have to replace this manually after every update – one answer will be enough (in my other thread), so this can be closed here :-).

    Cheers,
    Joerka

    Hi Günter,

    thanks a lot, your solution works like a charm!
    As this is a replacement in the live enfold theme, wouldn’t this be replaced with the next Enfold update? Because than I would have to replace this file after every update…
    Or will that be fixed in general in the next Enfold update?

    Apart from that this issue can then be closed, have a great weekend!
    Cheers,
    Joerka

    Hi Ismael,

    unfortunately that didn’t work, see the critical error message below. Seems like WooCommerce conditional functions were not (yet) loaded, I tried to insert a check if they were and otherwise to load them, but that also produced the critical error:

    add_filter("comments_open", function($open) {
    	if ( !function_exists( 'is_woocommerce' ) ) { 
    				require_once '/includes/wc-conditional-functions.php'; 
    			}
       if(is_wocommerce() || is_checkout() || is_cart()) {
         $open = false;
       }
       return $open;
    }, 9999, 1);

    Did I miss something here? Thanks already for your time,
    Jörg

    Hi Ismael,
    sorry it’s me again – I just found out that the code also added comments to other pages like for example the checkout page (although on the checkout page comments are disabled in the page settings). See pic below for reference:

    That’s clearly not the intended behavior, so I had to remove the code again. Do you have another solution for this issue by chance?
    Best regards,
    Jörg

    Hi Ismael,

    I added the av_uid attribute to my custom-shortcode php file and your supplied code to my child theme’s function.php and did a full flush of cache + deactivated minify css/js in Enfold -> Performance etc., unfortunately it’s not yet fixing the issue of not showing the two image backgrounds, as you can check on the page link provided in my initial post with an example page (second one).

    Do you have another idea what we could try to get it working again?
    Are the new attributes “attachment” and “attachment_size” necessary? Because so far I only supply the src one and continue with the attach attribute, which worked in the old Enfold versions.

    Thanks!
    Jörg

    Hey Ismael,

    yeah that code worked, thanks a lot! Comments were enabled in Settings -> Discussion all along, but good additional point :-).

    Issue can be closed!
    Best regards,
    Jörg

    Thanks, that did the trick! Was some old custom CSS code which I once needed (but not anymore)…
    Can be closed.

    Thanks for the reply!
    I ended up using the horizontal gallery with the customization described in this thread, which gave me 90 % of what I imagined, which is fine.
    Can be closed!

    I have exactly the same error and thus question as pentasys above – can I just place a index.html in that folder with the following or is there a better/other method to fix that Google Crawl error?

    <!DOCTYPE html>
    <html><head>
    <meta name="robots" content="noindex, nofollow" />
    </head>
    <body>(…)</body>
    </html>

    algkents problem seems to bit another one and not related to this thread…

    in reply to: WooCommerce Cart Icon Broken – WooCommerce 3 / Enfold 4 #845023

    I agree with Jason, this is not a solution. With this code (I tested it) the cart is visible all the time, which is not the functionality it should have.

    in reply to: WooCommerce Cart Icon Broken – WooCommerce 3 / Enfold 4 #843262

    I do have the same problem with an all up-to-date installation (Enfold 4.1.2, newest WooCommerce and so on…), tested in Firefox and Chrome (newest versions). There, after putting something in the cart, the cart dropdown button is first not visible but then – after loading of the page is complete – becomes visible in the menu. On changing to another page it disappears again.

    I tried the 3 solutions (CSS Code, adding snippet to functions.php and replacing the .js file in the enfold folder) proposed, none of them worked.
    You can test the behavior on my site as guest, see below.

    Also running a Cache plugin, W3 Total Cache, which seems to be connected to this issue…

    • This reply was modified 7 years, 3 months ago by joerka27.
    in reply to: Enfold Showcase #843250

    Hey guys,
    we are running our Membership Site on Enfold and I’m very happy that I picked this theme during the building process!
    Piano-Revolution

    in reply to: Bottom Border Styling Arrow not visible #744572

    Hey Ismael,

    thx for your help and excuse my late reply. Tested it out and doesn’t make sense like that, like you said. I’ll just accept that I have to choose between parallax and the “border-arrow” design, that’s alright.

    Thanks and can be closed!
    Joerka

    in reply to: Bottom Border Styling Arrow not visible #741166

    Hey Ismael,

    Login Data below. I use a custom css inside my child theme, copy see also below (didn’t know if you could access it only with admin credentials). I already tested changing the theme from child to enfold standard without any css modifications and the arrow was still not visible, so I doubt that it’s because of the custom css…

    Thanks in advance,
    Joerka

    in reply to: How to use Portfolio-Items as "parent" for normal pages #740745

    Thanks kevinmcgillivray and Yigit! good to know, luckily it was just a nice-to-have feature and is not really necessary.

    Can be closed!

    Hi Ismael,

    thanks for your check, after some further testing I found the error – the background image of the section was set to be “fixed” and the height was simply not enough to cover it, so it took the background color of the section! Changing it to “scroll” and in the long run replacing it with a image big enough does the trick.

    You couldn’t reproduce/see it, because on smaller screens it is not visible. Funny thing, never thought about that problematic before…

    Well, thanks for your help nevertheless and this can be closed!
    Regards,
    Joerka

    in reply to: Second footer only with centered big social icons #735352

    Hi Vinay,
    awesome, works perfect! Thanks a lot, the support here is really unparalleled – I’m happy I chose Enfold and will recommend it further!

    Can be closed here, best regards,
    Joerka

    in reply to: Cart Button Background in transparent menu not transparent #735335

    Hey Ismael,
    Thank you for providing us with excellent support!

    1.) Fixed it now, instead of your above provided

    .av_header_transparency.header_color .cart_dropdown_link {
        background-color: transparent;
    }
    
    .av_header_transparency.header_color .cart_dropdown {
        border: 0;
    }

    you have to use

    .header_color .cart_dropdown_link {
        background-color: transparent;
    }
    .cart_dropdown {
        -webkit-transition: none;
        transition: none;
    }

    Just removed the .av_header_transparency selector, now it’s always transparent as it should. Was a very subtle detail…

    2.) worked, thanks!

    Can be closed, best regards
    Joerka

    Hey Nikko,

    no, it isn’t – maybe it is only a problem in some browsers? In Firefox and Chrome it is still there. Take a look at the following screenshot and my marking arrow, maybe then it is clearer what I mean:

    in reply to: Second footer only with centered big social icons #734312

    Hi Vinay,
    thanks, sounds great! I removed the css code, login see below.
    Best regards,
    Joerka

    Hi Yigit,
    I added the code, but then all (including the non-selected sort options) are visible, which is not the intention.

    Solved it after some try&error with:

    .av-masonry-sort .avia_hide_sort {
    	display: none!important;
    }

    Problem was that “.html_elegant-blog .post-entry .text-sep” sets display: inline-block, that’s why it only appears (my assumption) when elegant blog is activated.

    Problem solved nevertheless, thanks for your help!
    Joerka

    in reply to: Cart Button Background in transparent menu not transparent #733122

    Hey Ismael,

    sorry for the late response, the notification mail was in my spam.
    Thanks for the solution, works almost perfect!
    Two small things to get to the 100% ;):
    1. If you scroll down, the background color is completely gray, but the header is semi-opaque gray, how can I fix that?
    2. When you scroll down and the header background appears, a white border appears around the cart and fades out then – can this be removed? Secondly, the cart symbol moves down a little bit when the header background appears.

    Thanks in advance and best regards,
    Joerka

Viewing 23 posts - 1 through 23 (of 23 total)