PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

new Css version April 2025 with many errors

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

 

I find that the CSS added for the new version is a bit badly arranged.

the table scrolls horizontally, but it does not bring with it the header of the table that should run with the elements.

The text fields are an exaggerated bright blue, gray was better.

the selected element does not seem to be highlighted with the yellow color.

I manually modified the css, but I really find a bit too many errors and arrangements a bit badly placed.

Hello

Thank you for your suggestions, we really appreciate it.

I will pass this on to the developers to fix it.

 

I have to specify:
the table head bar, does not move with the table in this specific case: it filters with a word in the title.

If I open the plugin's base page, without putting any filter, it moves together.

In the meantime I also suggest adding the option to put stick columns. I put them fixed with the CSS and indicating the image column, but I think it would be great to have a selector of columns that you want to stick and whether to have them on the left or right side of the screen (or maybe on all sides).

And since we're at it I'll conclude with the desire to add a custom button in the command buttons (to insert your own custom urls and that reads the Shortcodes).

Thanks.

I'm attaching my editing css, if you're curious.

 

 



/* 3.0  EFFETTO STICKER COLONNE*/
 /*questo si deve aggiungere altrimenti non funziona sticky posizione*/
#advanced-table {   overflow: auto; }
 /*quelli in stiker*/
#advanced-table_wrapper .dataTables_scroll .scroll-wrapper .dataTables_scrollBody table tbody tr td[data-field=__checker], #advanced-table_wrapper .dataTables_scroll .scroll-wrapper .dataTables_scrollBody table tbody tr td[data-field=_thumbnail_id], #advanced-table_wrapper .dataTables_scroll .scroll-wrapper .dataTables_scrollBody table tbody tr td[data-field=gallery]
{  position: sticky;
    top: 0;
    left: 0;
   z-index: 1; 
    border-left:4px solid #d8b6ed;

}

#advanced-table_wrapper .dataTables_scroll .scroll-wrapper .dataTables_scrollBody table tbody tr td[data-field=__checker] {  left: -5px;   background:#f3ea9b; }
#advanced-table_wrapper .dataTables_scroll .scroll-wrapper .dataTables_scrollBody table tbody tr td[data-field=_thumbnail_id]{  left:26px;    }
#advanced-table_wrapper .dataTables_scroll .scroll-wrapper .dataTables_scrollBody table tbody tr td[data-field=gallery]{    left:90px;  }


/* 4.0 MODIFICA DIMENSIONI IMG COLONA */
.woobe-tabs img.attachment-thumbnail {  width: 70px;  max-width: 70px; }
.woobe-tabs a.gallery_popup_editor_btn{    max-width: 100%; }
.woobe-tabs a.gallery_popup_editor_btn img {   max-width: 48%; }



/* 5.0  TESTO SKU su 2 righe e non tagliato */
#advanced-table_wrapper .dataTables_scroll .scroll-wrapper .dataTables_scrollBody table tbody tr td[data-field=sku] {     white-space: pre-wrap;    line-height: 1.2;  }

/*  10.0 Grafica Tabella, da sistemare dopo: (cambiao colore dalla versione del 25 aprile 20025)  */

/*  10.2 Riga Selezionata (cambio colore)  */
.woobe_selected_row .#advanced-table td{ background-color: #fffff0 !important; }


/*  10.1 Grafica box di testo che si apre a popup  */
.woobe-button{
    background-color: #f3f3f3;
    color: #37474F;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.woobe-button:hover {
    background-color: unset;
    border-color: unset;
}


/*bottone ma per aprire la lista categorie e tag*/
.woobe-button.js_woobe_tax_popup{     border: 1px dashed;    background: #fff;}
/*bottone ma per aprire la lista attributi*/
.woobe-button.popup_val_in_tbl {     background-color: #f3f3f3d4; }
/*riscritto un colore verde pisello che veniva impostato come default*/
.js_woobe_options, .js_woobe_tax_popup {    color: #1e2020 !important;}

/*bottone ma per aprire testo avanzato*/
.woobe-button.text-editor-standart{}

/*slider che compare con nomi troppo lunghi nelle selezioni attributi e categorie*/
.woobe-button.popup_val_in_tbl::-webkit-scrollbar {    width: 8px;    height:8px;} /* width */
.woobe-button.popup_val_in_tbl::-webkit-scrollbar-track {  background: #d5e1d4;} /* Track  barra sfondo*/
.woobe-button.popup_val_in_tbl::-webkit-scrollbar-thumb {  background: #91a58b;} /* Handle cursore */ 
.woobe-button.popup_val_in_tbl::-webkit-scrollbar-thumb:hover {  background: #a55151;} /* Handle on hover */
/*  END 10.0 Grafica Tabella, da sistemare dopo: (cambiao colore dalla versione del 25 aprile 20025)  */

Hello

Thank you for your cooperation!

@bibibabi

Hello

Thank you for your report!

Update is just done and fixes are there

Added new feature: you can now create a woobe.css file in your current WordPress theme folder to fully customize the BEAR admin panel appearance

Since there is currently no clear technical specification on how to implement this in a way that suits all users, the feature has been added here: https://bulk-editor.com/document/more-settings-implicit/

Thanks. yes I saw the css changes.

 

I wanted to ask about the Hook function ‘woobe_wrap_field_val‘, I wanted to write in the discussion post but it doesn't let me replay the post.

 

I tried to activate hook. but it doesn't seem to be active.

putting a var_dump it doesn't load in the product list page ( /wp-admin/edit.php?post_type=product&page=woobe)

add_filter('woobe_wrap_field_val', function ( $res, $post, $field_key, $product_type  ) {
var_dump('giraffa2');
  return $res;
});

 

while if I try with the function below it sees the var_dump.

 add_filter('woobe_settings_key_options', function ($id) {
var_dump('giraffa3'. $id);
return"for_all";
});

____________________

I wanted to add a button in the"Actions" column created by you.

Am I using the wrong hook? Did I misunderstand its use?

____________________

thanks

Hello

None of these hooks suit you.

In this case, you will need to edit the plugin code.