• Resolved PossiblyMaybe

    (@possiblymaybe)


    Hi, I am using the Admin Columns plugin and I can display crudely in a column on the Product Admin page that shows whether a product has any tabs on it by using the yikes_woo_product_tabs field. Is there something I can hook into to display each tab separately? When I inspect the element in page, I tried, for example, the class “care-instructions_tab” but it didnt work.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey @possiblymaybe,

    How are you displaying the tabs with Admin Columns are you using the Pro plugin? If you show me how you’re doing it now maybe I can help you figure out how to break it apart into single tabs!

    Cheers,
    Freddie

    Thread Starter PossiblyMaybe

    (@possiblymaybe)

    Hi Freddie, yes I’m using the Pro plugin. At the moment it is set up like this:

    https://ibb.co/1mHN8BJ

    I can find the field in the Custom Field > Fields dropdown.

    However it doesnt automatically find fields for individual tabs, and I cant identify anything else to use there.

    Thanks for your help!

    You’re most likely going to need to get help from the pro plugin because I can’t really make any suggestions when I don’t know how any of it works.

    If you consult with them and ask for a custom solution to hook into another data source through code.

    If you tell them you want to individual include the tabs you could point them to your saved tabs which are in:

    
    $saved_tabs_applied = get_option( 'yikes_woo_reusable_products_tabs_applied );
    $saved_tabs = get_option( 'yikes_woo_reusable_products_tabs' );
    

    If you create all you tabs as saved tabs you’ll be better off because you can find them easily with those options.

    Cheers,
    Freddie

    Thread Starter PossiblyMaybe

    (@possiblymaybe)

    Thanks for your time Freddie!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Displaying on Product Admin Page’ is closed to new replies.