manuelmasia
Forum Replies Created
-
Forum: Reviews
In reply to: [PixGridder] Great easy to use pluginThanks!
Forum: Plugins
In reply to: [PixGridder] I cant get this to work at allAwesome, thank you for updating, I’m marking the thread as solved… don’t forget to rate the plugin please ??
Manuel ??
Forum: Plugins
In reply to: [PixGridder] I cant get this to work at allSorry, there is a javascript error:
“Uncaught SyntaxError: Unexpected token , post-new.php?post_type=page:293”. It generates other errors that don’t allow to see the editor, but I don’t why the first error occurs. You should try to switch your theme to the default one (Twenty-Fourteen for instance) and check if the problem is with the theme. Then disable the other plugins, for the same reason. If you find the culprit let me know, I’ll try to replicate your issue on my end.
Manuel ??
Forum: Plugins
In reply to: [PixGridder] I cant get this to work at allHi,
I’m afraid there is a JS error if you can’t see anything. Sorry. May I ask you something? For instance: are you running WP 4.0? Are you able to check for some js errors in the browser console ( https://developer.chrome.com/devtools/docs/console )
Let me know. Manuel ??
Forum: Plugins
In reply to: [PixGridder] Vertical Alignment issue when have more than 1 item?Thank you Tom. I see some empty paragraphs. Maybe the theme you use filter the content and this overrides the filter of the plugin somehow. If you see the problem on that section only, you can add and ID to the row, for instance “schedule_row” and add to your theme some extra CSS:
#schedule_row p { display: none; }
I think you’ll have problems with validation maybe, but you’ll fix the layout issue.
Manuel ??
Forum: Plugins
In reply to: [PixGridder] Vertical Alignment issue when have more than 1 item?Hi Tom,
I think your theme filter the content somehow or you simply misses an empty paragraph. I can’t check from the shot only, but that seems the scenario.
Manuel ??
Forum: Plugins
In reply to: [PixGridder] Divide a column into two rowsHi Valentin,
no, sorry. But what you are showing is just a three column layout and the last column is divided horizontally, so you can achieve that easily by using a visual divider (hr, heading etc.) inside the third column.
Manuel ??
Forum: Reviews
In reply to: [PixGridder] nice and cleanThank you, even if I’m late ??
Forum: Plugins
In reply to: [PixGridder] Suggestion: full width col inside row?Thank you in advance in this case ??
Forum: Reviews
In reply to: [PixGridder] Great pluginSorry Andrew, my bad, I’ve edited the comment… allow me a little frustration in this case ??
Forum: Reviews
In reply to: [PixGridder] Great pluginThank you Andrew, but I’m proud to deserve the same treatment of many other famous plugins ??
Forum: Plugins
In reply to: [PixGridder] Suggestion: full width col inside row?Hi, so sorry for the late reply. Some troubles these days.
And yes, the premium version works like you have described… even if I don’t think you’ll purchase it ??
Have a look: https://www.diigo.com/file/image/cebrobqzcddecceerzbooacaso/Edit+Page+%E2%80%B9+Geode+%E2%80%94+WordPress.jpg
All the best. Manuel ??
Forum: Plugins
In reply to: [PixGridder] Disable front-end CSS?Hi, sorry for the late reply and thank you for having rated the plugin ??
First of all there are some filter to decide the output of the plugin:
$row_open = apply_filters('pixgridder_row_open', "<div class=\"row\" data-cols=\"$1\">"); $row_close = apply_filters('pixgridder_row_close', "</div><!--.row[data-cols=\"$1\"]-->"); $column_open = apply_filters('pixgridder_column_open', "<div class=\"column\" data-col=\"$1\">"); $column_close = apply_filters('pixgridder_column_close', "</div><!--.column[data-col=\"$1\"]-->");
so you can change the output of rows and columns. To dequeue the style from the front page just use:
add_action('wp_enqueue_scripts', 'dequeue_function'); function dequeue_function() { wp_dequeue_style( 'pixgridder' ); }
This remove the main css from the front end. Hope this was what you are looking for.
All the best. Manuel ??
Forum: Reviews
In reply to: [PixGridder] Great pluginHi, I’m sorry for the late reply. I faced some troubles with my work and I had to leave the free support for a while. That’s the reason ??
Forum: Plugins
In reply to: [Camera slideshow] only admin see sliderWow, really strange ?? have you tried to switch theme or disable the other plugin? Maybe some of them acts on roles somehow?
Manuel ??