Forum Replies Created
-
AuthorPosts
-
yes disable what ever you want. I have disabled them all but still got this issue. Go for it. Do what ever you want.
- This reply was modified 3 years, 4 months ago by isa_solutions.
Seems to be this div that is causing the issue:
<div class=”container av-logo-container” style=”height: 336px; line-height: 336px;”>
It starts at 336px but when I reseize I notice it gets set to 90. When it load correctly this also is set to 90.
Is there some reason I don’t understand that would cause this to get set to 336 sometimes?
Thanks
Scrap that…its still doing it on numerous pages.
So seems I found the issue. A few pages had some Avia builder errors on them which I only saw when I turned on the avia debug option in functions. Seems to have had a domino effect with the header
Hi, is there a solution for this yet?
October 2, 2018 at 8:09 am in reply to: Empty background-image property on each section element…again #1016925or is this a better solution https://kriesi.at/support/topic/w3c-validator/#post-994993
May 10, 2018 at 11:44 pm in reply to: Woocommerce Lightbox not showing up on products with single/one image #954932Did some more js debugging and found the issue:
in the last line of your code
container.find('.flex-active-slide a.lightbox-added').eq(0).trigger('click');
the find doesn’t find anything beause of the .flex-active-slide. If I remove that it works. So this is how it now looks:
//make woocommerce 3.6 gallery search icon clickable and open lightbox jQuery( 'body.single-product' ).on( 'click', '.single-product-main-image .avia-wc-30-product-gallery-lightbox', function( e ){ e.preventDefault(); var clicked = $(this), container = clicked.parents('.single-product-main-image'); container.find('a.lightbox-added').eq(0).trigger('click');//changed .flex-active-slide a.lightbox-added' to a.lightbox-added });
Are other people having this issue? Can this me merged into the enfold code so I don’t have to keep updateing this after each update. Thanks
May 10, 2018 at 11:36 pm in reply to: Woocommerce Lightbox not showing up on products with single/one image #954929Further to my last message. I was editing a wrong version of site in another directory. So I found the code, removed it and reloaded page (cleared cache) but still nothing happens. With it removed it also stops working on products with multiple images. If the js code is in there I can see it is getting triggered but nothing happens.
May 9, 2018 at 11:30 pm in reply to: Woocommerce Lightbox not showing up on products with single/one image #954220Thanks for the reply.
The weirdest thing is I looked for that code and couldn’t find it!
So I added it in and it started working.No one has ever edited this file so wondering how it vanished? Was this removed in 4.2.6? WIll it also be removed if I upgrade to 4.3.1?
Any other ideas as it still doesn’t work if I add that code in or remove it- This reply was modified 6 years, 6 months ago by isa_solutions.
May 7, 2018 at 12:01 am in reply to: Woocommerce Lightbox not showing up on products with single/one image #952408I renewed the certificate but that didn’t seem to fix it
Thanks Ismael. I removed the mods and it fixed the problem. But I have another now :)
We don’t want to use the woo commerce_output_related_products as it comes out in a large 2×2 grid.
We would prefer to use the avia_woocommerce_output_upsells as it puts 4 items in a line.Is it possible to use this?
If I switch the
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 2);
for
add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_upsells', 10);
I get nothing shown?
So sorry. I don’t know what’s going on, I tested it numerous times!
I’ve reset the password , I’ve just triple checked it works.
Sorry
- This reply was modified 9 years, 1 month ago by isa_solutions.
Thanks Rikard
May 26, 2015 at 11:45 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #450001Hi Ismael,
don’t worry about my last post, I figured out a work around. Thought I’d post it incase it helps others…I added just a sequential number as the Title of each tab. Then rather than the code in my first post on this thread I did this:
if(empty($tab_atts['title'])) { $tab_atts['title'] = avia_sc_toggle::$counter; } //following lines added $curtitle=$tab_atts['title']; $tab_atts['title'] = do_shortcode('[date format="F Y" timestamp="+'.$curtitle.' months"]');
Thanks,
bw
May 26, 2015 at 12:18 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #449758Thanks Ismael. Just as a pointer, is it the code in the tab.js that is messing with the shortcode? Thanks
May 9, 2015 at 4:42 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #441852Hi Ismael,
Any workarounds yet? Is there a way to disable to javascript replacing it? Can I remove that part of the js code?
Thanks,
Benjamin
April 14, 2015 at 12:03 pm in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #428148Hi Ismael,
I need to add a shortcode that shows the current month name on the first tab, next month on the second tab, etc. I’m trying to do this using a shortcode [month_name] from the https://wordpress.org/plugins/extra-shortcodes/ plugin which will return “April”. The second tab would have [month_name plus=”1″] and so on…
The main content in each months tab is a booking form for each months available spots.
Thanks,
Benjamin
April 12, 2015 at 11:21 pm in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #427222Thats a shame….thanks for checking. But according to this https://kriesi.at/support/topic/custom-shortcodes-in-accordion-title/ is it still possible to use them in Accordion’s?
Thanks,
Ben
April 6, 2015 at 4:28 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #423755This reply has been marked as private.April 6, 2015 at 4:25 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #423752This reply has been marked as private.April 1, 2015 at 11:49 pm in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #422216This reply has been marked as private.March 19, 2014 at 12:00 pm in reply to: Changes to blog posts not showing to public when use child theme #240015Hi All,
Just for the lists benefit I finally figured it out after talking with ISP support.
It was WP Super Cache! Despite clicking the Delete Cache button numerous times, deactivating the WP Super Cache plugin and setting the WP_CACHE constant in wp-config.php from TRUE to FALSE (as Peter suggested) it seems WordPress will still use cache files that were created via the plugin. The ISP manually deleted the cache files and it started to work, tested it over and over and can’t fault it!
Regards,
Benjamin
March 17, 2014 at 10:17 am in reply to: Changes to blog posts not showing to public when use child theme #238589Thanks for checking it out. This site is hosted with hostgator (not by my choice, clients choice) have you heard of them doing something funky like this?
March 17, 2014 at 1:30 am in reply to: Changes to blog posts not showing to public when use child theme #238440Hi,
I updated to 3.8.1 but no change.
I switched off the caching but no change.
Now I’ve turned off the child theme and I’m now just using the standard Enfold theme. Now when I add a new post they also don’t show for the public. I’ve added two new posts but only I can see them when I’m logged in.
Thanks,
Ben
March 17, 2014 at 1:08 am in reply to: Changes to blog posts not showing to public when use child theme #238433Hi,
I tried the cache setting in wp-config.php…thanks for that tip….but nothing changed. It’s been doing this for multiple versions of WordPress but I’ll try 3.8.1.
Thanks,
Ben
March 13, 2014 at 5:59 am in reply to: Changes to blog posts not showing to public when use child theme #236701This reply has been marked as private.March 12, 2014 at 9:37 am in reply to: Changes to blog posts not showing to public when use child theme #236188This reply has been marked as private. -
AuthorPosts