• Resolved Geet K

    (@geet1306)


    When i move site from demo to live domain, Products which has photos in the tabs are missing. I am using Avada theme. Tabs are working on few products.

    when i am trying to add tabs again, it is showing unwanted space https://isonem.ie/product/isonem-floor-paint/

    Please help .

    • This topic was modified 5 years, 7 months ago by Geet K.
    • This topic was modified 5 years, 7 months ago by Geet K.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 31 through 34 (of 34 total)
  • Didn’t try it yet. And still have to try to disable all plugins…
    I’ll let you know soon.
    Meanwhile Thanks again.
    Francesco

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Try the lowercase version of the snippet first… e.g.

    add_filter( 'yikes_woo_filter_all_product_tabs', 'yikes_woo_hide_tabs_from_non_logged_in_users', 10, 2 );
    
    function yikes_woo_hide_tabs_from_non_logged_in_users( $tabs, $product ) {
    
    	if ( isset( $tabs['datasheet'] ) && ! is_user_logged_in() ) {
    		unset( $tabs['datasheet'] );
    	}
    
    	return $tabs;
    }

    I can’t believe it… It’s finally solved!!
    Writing words in lowercase did the trick! Even if tabs name are in first letter uppercase.

    Add this on next version dude! It’s really helpful ??

    Thanks again.
    Francesco

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Woo! There we go! Awesome. Glad it’s working.

Viewing 4 replies - 31 through 34 (of 34 total)
  • The topic ‘Tabs are gone while moving site’ is closed to new replies.