Forum Replies Created

Viewing 15 posts - 31 through 45 (of 73 total)
  • Posted in:
  • in reply to: Reviews plugin (Yotpo) format #224906
    tonn
    Member
    Post count: 85

    Thanks for the reply Ed. Do you have a rough ETA for the 1.8 release?

    in reply to: Reviews plugin (Yotpo) format #224719
    tonn
    Member
    Post count: 85

    Thanks Rui. Unfortunately this is a theme issue as the ability to remove/reorder a WordPress hook should be possible.

    in reply to: Reviews plugin (Yotpo) format #224659
    tonn
    Member
    Post count: 85

    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-222912

    Any timescale on when this will be fixed?

    Many thanks.

    in reply to: Latest Swift framework update #222914
    tonn
    Member
    Post count: 85

    That’s great, thanks Rui

    in reply to: Latest Swift framework update #222892
    tonn
    Member
    Post count: 85

    Thanks Ed. Whilst we’re on the subject of updates, do you have an ETA on the 1.80 theme release?

    Many thanks

    in reply to: Scroll in basket should be more visible #219369
    tonn
    Member
    Post count: 85

    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;
    }
    in reply to: Removing Reviews Tab at Product Page #218641
    tonn
    Member
    Post count: 85

    The following css should hide it for you:

    #product-reviews-wrap {
     display:none;
    }
    in reply to: Reviews plugin (Yotpo) format #218217
    tonn
    Member
    Post count: 85

    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

    in reply to: Reviews plugin (Yotpo) format #217944
    tonn
    Member
    Post count: 85

    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,

    in reply to: Changing order and removing items from product summary. #217643
    tonn
    Member
    Post count: 85

    No problem. Thanks Ed

    in reply to: Changing order and removing items from product summary. #217618
    tonn
    Member
    Post count: 85

    Hi Ed,

    I was just wondering if the changes were implemented in the latest 1.74 release?

    Many thanks,

    in reply to: Remove + filter option? #216644
    tonn
    Member
    Post count: 85

    Hi. They can be disabled by going to:

    Theme options > woocommerce options > shop options > Enable Mobile Filters Globally = disable

    in reply to: payment.php version 2.3.0 is out of date #215521
    tonn
    Member
    Post count: 85

    Nice one, thanks Ed!

    in reply to: payment.php version 2.3.0 is out of date #215461
    tonn
    Member
    Post count: 85

    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

    in reply to: payment.php version 2.3.0 is out of date #215453
    tonn
    Member
    Post count: 85

    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.
Viewing 15 posts - 31 through 45 (of 73 total)