Digital experiences for all disciplines
Forum Replies Created
-
-
Thanks for the reply Ed. Do you have a rough ETA for the 1.8 release?
Thanks Rui. Unfortunately this is a theme issue as the ability to remove/reorder a WordPress hook should be possible.
Hi Rui,
Just to give an update on this issue. It looks like todays update was not v1.80 and doesn’t include the aforementioned fix.
http://www.swiftideas.com/forums/topic/latest-swift-framework-update/#post-222892
http://www.swiftideas.com/forums/topic/latest-swift-framework-update/#post-222912Any timescale on when this will be fixed?
Many thanks.
That’s great, thanks Rui
Thanks Ed. Whilst we’re on the subject of updates, do you have an ETA on the 1.80 theme release?
Many thanks
Peter, although I haven’t tested it on mobile, the following should enable the visual aspect of the scroll bar.
.bag-contents { width: 100%; overflow-y: auto; }
The following css should hide it for you:
#product-reviews-wrap { display:none; }
Thanks for the reply Rui.
Unfortunately remove_action won’t be able to remove the existing woocommerce hook but the custom hook shows up fine. I’ll wait for the updated fix as my site is currently only on a local development.
Many thanks for the help
Thanks for the reply David. I’ve looked further into this and it appears they’re hooking into
woocommerce_single_product_summary
A snippet of code from their plugin shows:
function wc_yotpo_front_end_init() { $settings = get_option('yotpo_settings',wc_yotpo_get_degault_settings()); add_action('woocommerce_thankyou', 'wc_yotpo_conversion_track'); if(is_product()) { $widget_location = $settings['widget_location']; if($settings['disable_native_review_system']) { add_filter( 'comments_open', 'wc_yotpo_remove_native_review_system', null, 2); } if($widget_location == 'footer') { add_action('woocommerce_after_single_product', 'wc_yotpo_show_widget', 10); } elseif($widget_location == 'tab') { add_action('woocommerce_product_tabs', 'wc_yotpo_show_widget_in_tab'); } <strong>if($settings['bottom_line_enabled_product']) { add_action('woocommerce_single_product_summary', 'wc_yotpo_show_buttomline',7); wp_enqueue_style('yotpoSideBootomLineStylesheet', plugins_url('assets/css/bottom-line.css', __FILE__)); } </strong> } elseif ($settings['bottom_line_enabled_category']) { add_action('woocommerce_after_shop_loop_item_title', 'wc_yotpo_show_buttomline',7); wp_enqueue_style('yotpoSideBootomLineStylesheet', plugins_url('assets/css/bottom-line.css', __FILE__)); } }
I’m wondering if the recent issue of product hooks as seen in this thread is causing the priority argument of position 7 to be ignored and thus placed after the description?
Many thanks,
September 30, 2015 at 4:42 pm in reply to: Changing order and removing items from product summary. #217643No problem. Thanks Ed
September 30, 2015 at 3:48 pm in reply to: Changing order and removing items from product summary. #217618Hi Ed,
I was just wondering if the changes were implemented in the latest 1.74 release?
Many thanks,
Hi. They can be disabled by going to:
Theme options > woocommerce options > shop options > Enable Mobile Filters Globally = disable
Nice one, thanks Ed!
Also to note:
– Revslider update within wordpress is v5.0.7.
– I think there’s a typo in the changelog “Share buttons now open popup rather than new tab (needs Swift Framework v1.64+)” I thought the latest version was v1.63?Many thanks
Thanks for the update Ed. Can confirm it’s working.
It looks like a bit of css has changed in the update which is producing the attached jagged payment box triangle (Firefox 40.0.3). Just though I’d bring it to your attention.
Many thanks
Attachments:
You must be logged in to view attached files. -