Forum Replies Created
-
AuthorPosts
-
September 20, 2021 at 12:29 pm in reply to: color section margins wrong after update to 4.8.6.2 #1321609
… actually, you can close this thread.
The update must have changed the way other sections / rows are reacting to negative values, so I have disabled the negative custom value of the column top margin and achieved what I wanted through css / a div ID for the specific column instead. Strange, but fixed.September 20, 2021 at 12:13 pm in reply to: color section margins wrong after update to 4.8.6.2 #1321602Hi Mike, thanks for checking.
I took a deep dive into all custom CSS, as the ‘-12 em’ sounded “familiar” – but the only way these values have been used were to make the columns containing the two circular portraits overlap – these two columns are set (in the column settings) to ‘custom top margin = -12em’.
Previously, this had not affected the other elements on the page. Could this behavior have changed with the (Enfold or WP) update?
And if so, how can I keep/restore the layout with the individually overlapping image / column without breaking the rest of the layout?
I have included admin login below.
Thanks!January 7, 2021 at 5:00 pm in reply to: no option for facebook: share buttons for blog posts #1270904December 11, 2020 at 1:03 pm in reply to: no option for facebook: share buttons for blog posts #1266524Login below. Thank you!
December 9, 2020 at 4:15 pm in reply to: Easy slider : Issue on safari (unintended space before content under slider) #1266021Hi Victoria,
tried that, and turns out that Smush does not work in that combo… thanks for looking into it.
We can close the topic.December 7, 2020 at 2:23 pm in reply to: Easy slider : Issue on safari (unintended space before content under slider) #1265477Hi Victoria,
caching (WP Super Cache) and minification (smush) deactivated for now, which seems to make a difference… but that would not be a long term solution either, as the site loads slower without cache & image minification.
However, login details attached for a closer look.
Thank you!
December 5, 2020 at 4:35 pm in reply to: Easy slider : Issue on safari (unintended space before content under slider) #1265192Hi Ismael,
Both the submenu and the following section “drop” on safari, see 2 screenshots :
one is showing the issue –
https://postimg.cc/Sjw6Hmgg
the other one the correct alignment –
https://postimg.cc/XrWw7QSFThanks!
MaikeSeptember 16, 2019 at 10:04 am in reply to: Youtube pop-up window after theme update (4.6.1) #1138739… after the 4.6.2 update the youtube window does not pop up anymore, so feel free to close this ticket for now. however, we will have to look for a solution that avoids youtube.
September 15, 2019 at 10:56 pm in reply to: Youtube pop-up window after theme update (4.6.1) #1138584Update:
For the moment I have replaced the video URL with http://www.youtube-nocookie.com/… , but this is just an awkward quick fix as well, as the video does not play anymore now.
I would love, just like before, having a video (hosted on youtube) playing when visiting the site – and I’d definitley like to avoid pop-up windows.
Is this a general GDPR issue?
Is there a way to fix this, other than hosting the entire video on the site?
Thanks!August 20, 2019 at 10:40 am in reply to: Self hosted video on homepage: Media error instead of (META) description #1129176Hi Rikkard,
I wanted to avoid another plugin and tried to add the meta description via custom fields, as suggested in other threads.
This was done two months ago, so time should not be the issue.
Reluctantly, I will give yoast a try – or is there another good way to do this?February 15, 2019 at 10:57 am in reply to: Enfold 4.5.3: Fullwidth Slider Video returns [object Object] on Mobile #1067386Thanks! Any action required on my side? Will this be fine after the next update as well?
February 13, 2019 at 10:39 am in reply to: Enfold 4.5.3: Fullwidth Slider Video returns [object Object] on Mobile #1066375February 11, 2019 at 2:09 pm in reply to: Enfold 4.5.3: Fullwidth Slider Video returns [object Object] on Mobile #1065429This reply has been marked as private.February 11, 2019 at 2:05 pm in reply to: Enfold 4.5.3: Fullwidth Slider Video returns [object Object] on Mobile #1065426Here you go – thanks…
February 9, 2019 at 7:25 pm in reply to: Enfold 4.5.3: Fullwidth Slider Video returns [object Object] on Mobile #1064968Hi Nikko,
this option was already set to “Always load…”.
Would it help if I sent you admin access?February 6, 2019 at 3:59 pm in reply to: Disable 'Add to Cart' Button on Shop & Category Pages, Display on Product Page #1063673YES! Works. Thanks a lot, Mike.
February 6, 2019 at 12:03 pm in reply to: Disable 'Add to Cart' Button on Shop & Category Pages, Display on Product Page #1063567Hi Mike,
thanks – yes, you’re right – that should fix it… and does, if I dump the changes I made to display the size info on the shop page (which is a request from the client).
To be able to show size info (=variations) of the product on the shop & category page as well as the product page I have set up content-product.php in a child them folder with the following code (which works great for displaying the variations on all pages, but is obviously responsible for my inability to hide the “add to cart” button on the achive / category pages mentioned before):<?php /** * The template for displaying product content within loops * * This template can be overridden by copying it to yourtheme/woocommerce/content-product.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @package WooCommerce/Templates * @version 3.4.0 */ defined( 'ABSPATH' ) || exit; global $product; // Ensure visibility. if ( empty( $product ) || ! $product->is_visible() ) { return; } ?> <li <?php wc_product_class(); ?>> <?php /** * Hook: woocommerce_before_shop_loop_item. * * @hooked woocommerce_template_loop_product_link_open - 10 */ do_action( 'woocommerce_before_shop_loop_item' ); /** * Hook: woocommerce_before_shop_loop_item_title. * * @hooked woocommerce_show_product_loop_sale_flash - 10 * @hooked woocommerce_template_loop_product_thumbnail - 10 */ do_action( 'woocommerce_before_shop_loop_item_title' ); /** * Hook: woocommerce_shop_loop_item_title. * * @hooked woocommerce_template_loop_product_title - 10 */ do_action( 'woocommerce_shop_loop_item_title' ); /** * Hook: woocommerce_after_shop_loop_item_title. * * @hooked woocommerce_template_loop_rating - 5 * @hooked woocommerce_template_loop_price - 10 */ do_action( 'woocommerce_after_shop_loop_item_title' ); /** * Hook: woocommerce_after_shop_loop_item. * * @hooked woocommerce_template_loop_product_link_close - 5 * @hooked woocommerce_template_loop_add_to_cart - 10 */ remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); do_action( 'woocommerce_single_product_summary' ); ?> </li>
Questions: Would there be a better way to do this?
Or: Can I keep on using this tweak, but get rid of a part of the code?Hi Victoria,
So, is there a way to use them as image tags, as mentioned in the private comment?Hi Michael,
that was not the case – I had tried that first before even posting – BUT I just found the conflicting piece code. So thanks, your comment put me on the right track-Hi Michael,
here you go:Hi Victoria, actually it is live now – you can find the element here:
(private link)Hi Victoria,
sorry, the page was switched to maintenance as of today, as we are about to launch.
I can create a login for you if you send me an email address. But basically I am using your standard timeline element – with images instead of icons – and my client would love to see these images in a light box when clicked.July 29, 2017 at 10:16 am in reply to: Image Color Overlay on Mobile & Safari Display Issues #831424Thanks, yes, let’s close this one :)
Hi Yigit,
thank you, that will do for the moment!
So when the update happens I will probably have to remove the code again, right?
Best greetingsJuly 26, 2017 at 10:51 am in reply to: Image Color Overlay on Mobile & Safari Display Issues #830088I have just replicated the exact same situation (circular image, color overlay for linked image, plus “slightly increase on hover”) on a different site – and the result on Safari is the same.
Both sites are hosted by different companies.
Please see details (private) below. The image in question is at the VERY BOTTOM.
That other site is also using the latest version of Enfold & WordPress.- This reply was modified 7 years, 4 months ago by Maike.
July 26, 2017 at 10:31 am in reply to: Image Color Overlay on Mobile & Safari Display Issues #830074Hi John, I did so – doesn’t change the weird safari glitch…
Hi again,
apparently I do not get feedback on this support thread anymore – do I have to open a fresh one?
still the same issue on safari (desktop); the images are increasing BEYOND the circle boundaries (obviously I want it to increase inside the initial circle.
Plus: Color overlay does not work on iOs, in the theme settings the default image overlay color is set to magenta, on ipad & iphone it is displayed as white.
Thanks for your time!Hi Kriesi Team,
sorry, but your code and the latest update did still not fix the issue.All I want to achieve is displaying the images in Safari just like in Firefox – where it absolutely looks the way it should.
At this point, on Safari ONLY (did not check explorer), I still have the following issues:1) the images are increasing BEYOND the circle boundaries (obviously I want it to increase inside the initial circle)
2) the overlay does NOT increase accordingly
3) with the code you added the image has a grey border / shadow, the overlay has a white border on hover. I can hide those by commenting the line you have added/* box-shadow: 0 0 0 3px white, 0 0 0 4px #999; */
– but it makes me wonder what the line was intended for?!
4) the behavior of the images on mobile screens (iphone 5 , BOTH Safari and Firefox) is not consistent either – the image overlay is white (instead of the color generally chosen for Linked Image Overlay in the Enfold Child Theme Options, or the individual colors defined by the assigned css classes0, and for whatever reason 2 out of 11 images are increasing on touch / hover, and 9 are not (as far as I can tell tose 2 images do not have the same CSS class; it is the 7th image and the 9th image)If we could AT LEAST fix # 1 on the list I’d be happy to move on… THANK YOU!
Please help me fix this, so we can finally finish the site!
Thanks!!!PS: On mobile screens the grey circle around the image appears on 2 out of 11 images…
I had used the mobile menu for both desktop and mobile.
Now the icon is not visible on desktop anymore… -
AuthorPosts