manuelmasia
Forum Replies Created
-
Forum: Plugins
In reply to: [PixGridder] old to new versionHi, very strange… but I think the issue with the new version derives from the conflict with a different plugin: are you able to use the text editor and edit the page regularly if you deactivate PixGridder?
Manuel ??
Forum: Plugins
In reply to: [PixGridder] PixGridder disabled as defaultHi,
no hooks, sorry. However (even if I’ve never tested it) you can try to remove the filter to the content in particular cases:
add_filter( 'the_content', array( &$this, 'filter_content' ), 10 ); add_filter( 'the_content', array( &$this, 'filter_content' ), 100 );
(I’ve added the filter twice to fix issues deriving from shortcodes).
Let me know. Manuel ??
Forum: Plugins
In reply to: [PixGridder] Content alignment in rowsHi,
not sure about what you mean, but element with display:block property always push the vertical alignment to the top. If you want a different alignment you have to play with the CSS, change the display into “table” and “table-cell” for children elements… and see if this generates further issues. However I think that is outside the plugin support.
Manuel ??
Same here… it started displaying suddenly on a Network installation… only for one of the site though, even if the .htaccess file is shared between all of them
Forum: Plugins
In reply to: [Better WordPress Minify] js file 400 bad request woocommerce pluginSame issue here…
Forum: Plugins
In reply to: [PixGridder] Two Boxes Next to Each Other – One HigherHi,
could you better explain what “higher” means? May I see the an example, a live page?Manuel ??
Forum: Plugins
In reply to: [PixGridder] No editorHi, it seems a javascript problem. Are you able to check if the browser console display any error message?
Forum: Plugins
In reply to: [Standout Color Boxes and Buttons] Equal heights?mmmm… try to replace the code I provided with:
@media (min-width: 769px) { .row.equal-height { position: relative; } .row.equal-height .column { position: static; } .row.equal-height .column::after { background: #303030; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; bottom: 1em; content: ''; position: absolute; top: 1em; width: inherit; z-index: -1; } }
Can’t test it, so please let me know. Manuel ??
Forum: Plugins
In reply to: [Standout Color Boxes and Buttons] Equal heights?To assign a class to the row just use the PixGridder-UI: https://www.diigo.com/item/p/cebrobqzcbodoqdqozbdscdrce
Let me know. Manuel ??
Forum: Plugins
In reply to: [PixGridder] 2 columns wont alignOk, it is a problem with theme, try this instead:
.pixgridder .column[data-col] { margin-left: 3%!important; margin-right: 0!important; } .pixgridder .column[data-col]:first-child { margin-left: 0!important; }
Let me know. Manuel ??
Forum: Plugins
In reply to: [PixGridder] 2 columns wont alignOk, now I see, there are some lines on the CSS of the theme you use (I assume):
.container .column, .container .columns { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
In particular they set different margins for the element with class “.column” and override the plugin. You should edit the CSS file, if you are the developer of the theme, and remove the margins, or add somehow/somewhere, as you prefer:
.pixgridder .column { margin-left: 3%!important; margin-bottom: 3%!important; }
Let me know. Manuel ??
Forum: Plugins
In reply to: [PixGridder] Not compatible with ACF 5 pluginSorry Thomas,
I’ve tried the version available from the backend of my test site. Now I see the issue with the preview tab if a page hasn’t been saved yet, I’ll fix it ASAP, but nothing else. I’ll give a try to the beta too, but can you tell if you have the same issues with the last official release please?
Manuel ??
Forum: Plugins
In reply to: [Standout Color Boxes and Buttons] Equal heights?In this case thank you.
A CSS solution for your particular case only (it means considering the background color of the boxes, their margin and their border radius) is this:
assign to the row that contains the boxes the class
equal-height
, then in the stylesheet of the theme (or by using the tool you prefer) add this style:.row.equal-height { position: relative; } .row.equal-height .column { position: static; } .row.equal-height .column::after { background: #303030; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; bottom: 1em; content: ''; position: absolute; top: 1em; width: inherit; z-index: -1; }
Let me know. Manuel ??
Forum: Plugins
In reply to: [Standout Color Boxes and Buttons] Equal heights?I’m the author of PixGridder, however if you provided a demo link maybe I could help you too
Manuel ??
Forum: Plugins
In reply to: [PixGridder] Not compatible with ACF 5 pluginMmmm… honestly I don’t know well the other plugin, even if it is very popular, my apologies. I’ve tried to create a simple custom field on a page and edit something: everything works fine, so maybe it depends on the type of custom field? Don’t know, Could you provide more details to replicate the issue please?
Manuel ??