yokotsumo
Forum Replies Created
-
Forum: Plugins
In reply to: [Font Awesome 4 Menus] Font awesome list not updatedTHe list is hard coded in my theme. I will update it.
Did you come up with a solution or is WPML still the solution proposed?
Forum: Plugins
In reply to: [mqTranslate] No language tag on "Terms & Conditions" linkshere is the code in review-order.php:
<p class=”form-row terms”>
<label for=”terms” class=”checkbox”><?php printf( __( ‘I’ve read and accept the terms & conditions‘, ‘woocommerce’ ), esc_url( get_permalink( wc_get_page_id( ‘terms’ ) ) ) ); ?></label>
<input type=”checkbox” class=”input-checkbox” name=”terms” <?php checked( $terms_is_checked, true ); ?> id=”terms” />
</p>Forum: Plugins
In reply to: [mqTranslate] No language tag on "Terms & Conditions" linksqtrans_convertURL receives the URL and converts it but at the end, the URL reamins the same on the webpage.
Forum: Plugins
In reply to: [mqTranslate] language selection on httpsCould it be modified in the core of mqtranslate?
Forum: Plugins
In reply to: [mqTranslate] language selection on httpsCheck this:
it worked for me:
Forum: Plugins
In reply to: [mqTranslate] language selection on httpsI have got the same problem
Forum: Plugins
In reply to: [qTranslate] qtranslate crashes with WP 3.9.1I do not have any crash with WP 3.9.1 + qtranslate 2.5.39 + mqtranslate 2.6.2.6.
I just have glitches with string containing variables (ig %d). Sometimes it is translated, sometimes not. Any experience on this?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TranposeHi,
I have a problem with head row background color. From the FAQ,
this is working:
.tablepress thead .sorting_asc,
.tablepress thead .sorting_desc,
.tablepress thead .sorting:hover {
background-color: #00ff00;
}
but this is not working:
.tablepress thead th,
.tablepress tfoot th {
background-color: #ff0000;
}Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TranposePerfect.
Thank you.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TranposeThis is the css part I use:
.tablepress,
.tablepress tr,
.tablepress tbody td,
.tablepress thead th,
.tablepress tfoot th {
border: 1px solid #dddddd;
}
It seems that there is already a border for th, no?I have change the font size to 0.9em. You can see more easily the problem now (same page).
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TranposeHi,
You can check here “https://www.bigbestlawnmower.com/lawn-equipment-pick-it-now/mower-parts-side-by-side-comparison/”. Look at the tabs (Manual Reel, etc.) where the tables are in responsive mode. Even without style, there is a slight misalignment between the header and the data.
Hi,
Is there a datatables_columnfilterwidgets_INCLUDE_columns instead of datatables_columnfilterwidgets_exclude_columns?
I just want to show one column out of ~30. It would be easier this way.Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TranposeHi,
When I change the font size in a responsive table, the header column is never aligned with the data columns. It seems to come from a space at the bottom reserved to the pagination, even if it disabled. Is there a way to change that?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TranposeHi,
More specifically, I wanted to have an entire column with the same background color. I used:
.tablepress-id-x .column-y {
background-color: #zzz;
}
but only the header changed colors. The cell below remained white.