I was wondering if the plugin is compatible with the Gutenberg Editor? I cant see the the FP button in the mce editor when i choose the text block.
]]>The plugin could easily support accordion multiexpand and allclosed together.
Have to replace, for example in “class-wordpress-shortcodes-foundation-6.php” at line 207:
if ( $atts['multiexpand'] == 'true' ) {
$html = '<ul class="accordion'.esc_html( $class ).'" data-accordion data-multi-expand="true">';
} elseif ( $atts['allclosed'] == 'true' ) {
$html = '<ul class="accordion'.esc_html( $class ).'" data-accordion data-allow-all-closed="true">';
} else {
$html = '<ul class="accordion'.esc_html( $class ).'" data-accordion>';
}
with:
$html = '<ul class="accordion'.esc_html( $class ).'" data-accordion';
if ( $atts['multiexpand'] == 'true' ) {
$html .= ' data-multi-expand="true"';
}
if ( $atts['allclosed'] == 'true' ) {
$html .= ' data-allow-all-closed="true"';
}
$html .= '>';
Can this change be available in the official plugin?
]]>Is there no option to set a background image on columns similar to how you’d set it on rows?
]]>currently it is just removed and I can only work with <p>
regards
Lennart
Hi, in this function you only return the $mce_css in the if statement. This killed all backend css from other plugins and themes.
Here is how I think it should be:
/**
* Load Editor Stylesheets.
* @access public
* @since 1.0.0
*/
public function admin_editor_styles ( $mce_css ) {
if ( get_option('fp_load_foundation_icons_checkbox', true) == true ) {
$mce_css .= ', ' . plugins_url( 'assets/foundation/foundation-icons/foundation-icons.css', dirname(__FILE__));
}
return $mce_css;
} // End admin_editor_styles ()
Regards
Lennart
This addon conflicts with Caldera Forms
]]>Hello,
I don’t know foundation at all, but read about its feature to provide a “tooltip-modal” based walkthrough function, is that correct?
How would I set it up and can I do this with any frontend-theme activated (as I need this guided-tour in dashboard only)?
Thank you and kind regards,
Sascha
“Deletion failed: Are you sure you want to do this? Please try again.”
]]>Is there any way you could add an option to FP_Button to allow for opening links in a new window/tab?
]]>Hi there,
I’m using Foundation 6 from a Foundation based theme.
I inserted grid shortcode like this:
[fp-rows]
[fp-columns small='' medium='4' large='4']Column One[/fp-columns]
[fp-columns small='' medium='4' large='4']Column Two[/fp-columns]
[fp-columns small='' medium='4' large='4']Column Three[/fp-columns]
[/fp-rows]
This output:
<div class="row"><br>
<div class="medium-4 large-4 columns">Column One</div><br>
<div class="medium-4 large-4 columns">Column Two</div><br>
<div class="medium-4 large-4 columns">Column Three</div><br>
</div>
Those <br>
tags aren’t necessary and cause the columns structure to break.
Though this is the first time I’ve used your plugin looks, which BTW looks incredibly well thought out and documented, I guess they’re appearing on my site randomly??
I have tested this with all but your plugin deactivated.
Can you shed any light on how/why those extra tags are getting inserted?
Thanks.
]]>This plugin has been causing issues with other plugins in the Admin console.
]]>Does the plugin support media queries for equalizer?
Thank you!
]]>I am trying to setup a decent looking wordpress admin layout for my client. Something that will make life easier for them. I am trying to have 3 content boxes for a 3 column layout. I was trying to hard code the row onto the template and just use columns in each of the 3 content metaboxes. Is there a way to make this possible?
If I try to use the column short code without being wrapped in the div short code I get a undefined variable error: html.
Just wondering if this is possible or what other developers techniques are for customizing their wordpress admin template?
Thank you
]]>Hi there,
I just downloaded and installed your plugin locally. I know I put I use 4.5.3 but I am actually using beta version 4.6-RC1-38202 – This is my dev environment that I use to build themes and plugins to make sure they are version proof.
After I installed your plugin I immediately got the following Deprecated messages:
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; tinymce_templates has a deprecated constructor in /Applications/MAMP/htdocs/forge/wp-content/plugins/fp-foundation-assistant/includes/class-fp-foundation-assistant-tinymce.php on line 13
I just wanted to give you a heads up as 4.6 is coming out soon. You may want to fix that so it doesn’t appear when 4.6 comes out.
https://www.ads-software.com/plugins/fp-foundation-assistant/
]]>