Anthony Carbon
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Missing reviews tab and sharing buttonsWhere your $return_policy_tab and $delivery_info_tab is another additional tabs. to change the tabs order, just change the priority. To see what’s the original priority of each tabs, you can use the print_r( $tab ); code. Just remove the comment ( // ) before print_r( $tab );
Hope this can help. If not, try to content me in skype. Look for web developer green or give me your contacts where i can talk to you personally.
Forum: Plugins
In reply to: [WooCommerce] Missing reviews tab and sharing buttonsHi Puckle..
Sorry for the late reply. I’m a bit busy this week. Here’s i have to share on your problem.
add_filter( 'woocommerce_product_tabs', 'woo_custom_product_tab' ); function woo_custom_product_tab( $tabs ) { //print_r( $tab ); $tabs[description][priority] = '1'; $tabs[additional_information][priority] = '2'; $return_policy_tab = array( 'return_policy' => array( 'title' => __( 'Return Policy', 'woocommerce' ), 'priority' => 3, 'callback' => '_return_policy' ) ); $delivery_info_tab = array( 'delivery_info' => array( 'title' => __( 'Delivery Info', 'woocommerce' ), 'priority' => 4, 'callback' => '_delivery_info' ) ); $tabs[reviews][priority] = '5'; return array_merge( $return_policy_tab, $delivery_info_tab, $tabs ); } function _return_policy() { echo '<div> Dummy text </div>'; } function _delivery_info() { echo '<div> Dummy text </div>'; }
Thanks! this is fixed already.
Forum: Plugins
In reply to: [WooCommerce] Missing reviews tab and sharing buttonsHi Puckle ..
> do you want to display your reviews to your single product ?
> which section of your single product do you want to display the review tabs ?
> there’s a way you can change the template of a single product layout. Edit the woocommerce single product template or duplicate the woocommerce template into your theme folder. have you tried this one ?
> message me back if this is not fixed yet ..
> I’ll se what i can do for you ..oh, sorry .. thanks sir ..
By the way sir, do you have extra work related on wordpress ? can you give me ? i badly need extra income
Hi bro .. can anybody give me extra income ? im expert on wordpress
Forum: Plugins
In reply to: [User Avatar] User Avatar 500 – Internal Server Errorhi sir, do you have wordpress task their ? can i work with you ?
I’m not sure on the other themes. On my current, i have used this on genesis theme, But it is better if we have that one as a default css or there’s some other way, much better.
I use this css code on NEXTGEN BASIC THUMBNAIL GALLERY ( 3 columns ). I hope this can be helpful. I know NEXTGEN is already responsive but need just a little tweak on css.