i need the install instructions for gdymc. The link in GDYMC doesn′t work
]]>Hello! I’ve come across your plugin just today and I am intrigued by its potential. I love the approach of making the user develop his/her own modules and the plugin only providing a framework for interacting with them.
It took me a moment to get it to run but I’ve seen your answer in another thread that documentation is on its way, so that should be covered.
In the FAQ you mention you discarded the idea of multiple areas for simplicity. I think that nesting modules would be very useful! For example one could develop layout modules and configure them via options. So for example a dual column block with definable widths for columns. Then you could nest content modules into each column. The content editor could build cool layouts this way.
If we are talking about module types (layout, content) then it would be awesome to somehow categorise them as their number grew. The searchbar is cool but managing say 20+ modules would quickly become unwieldy. So categories or tags perhaps?
One last idea – WPML integration. I tested it and two language versions of a page can have their own modules and content set up so that’s good. But say I compose a complex page with lots of modules and then make a duplicate of it to translate it. The WPML “duplicate” option and overriding with original page content don’t work – the module set and content aren’t transferred.
Hope at least some of this made sense ??
]]>so far i’ve tried every configuration. cannot understand how to create a module. want very much to try this plugin.
]]>Shortcodes are not natively enabled because they would be applied on every save and could mess up the editable fields.
But you can enable them easily if you place this code in your functions.php:
// GDYMC enable shortcodes
add_filter( 'gdymc_contentfilter', 'gdymc_enable_shortcodes' );
function gdymc_enable_shortcodes( $content ) {
if( !gdymc_logged() ):
return do_shortcode( $content );
else:
return $content;
endif;
}
This applies the shortcodes for all visitors and in the hard preview.
]]>If you have any ideas how the plugin can be made better … let us know.
]]>If you find any wrong or strange texts or phrases in the original english please let us know (at best with a suggestion). We are from Germany and our english is not perfect ??
]]>