PluginProbe
WP Ultimate Post Grid / 3.9.0
WP Ultimate Post Grid v3.9.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
← All changes | assets/js/admin-modal/grid/section/SectionLayout.js +15 -0 3.4.03.9.0 View file →
@@ -104,8 +104,12 @@
104 104 },
105 105 {
106 106 value: 'fitRows',
107 107 label: __wpupg( 'Items in rows' ),
108 + },
109 + {
110 + value: 'fitRowsHeight',
111 + label: __wpupg( 'Items in rows (force same height)' ),
108 112 }
109 113 ]}
110 114 />
111 115 {
@@ -124,8 +128,19 @@
124 128 label={ __wpupg( 'Center Grid' ) }
125 129 help={ __wpupg( 'This option will only work with Masonry layout style and the same layout for tablet and mobile.' ) }
126 130 />
127 131 }
132 + <Field
133 + value={ props.grid.rtl_mode }
134 + onChange={ ( value ) => {
135 + props.onGridChange({
136 + rtl_mode: value,
137 + });
138 + }}
139 + type="checkbox"
140 + label={ __wpupg( 'RTL Mode' ) }
141 + help={ __wpupg( 'When enabled, the grid will position items from Right To Left.' ) }
142 + />
128 143 { sizingFields( props, 'desktop' ) }
129 144 </Fragment>
130 145 ),
131 146 },