Meet Unyson - The Free Drag & Drop WordPress Framework

I’ll give it a try, it looks awesome!!!

@thememassive, @oterox Thanks

oterox said

I’ll give it a try, it looks awesome!!!

Cool, thank you. Let us know when you create new themes using Unyson, please :wink:

1 Like

i know little bit about wordpress - can you please tell me how to install ?

like plugin ?

?

planing to build a blogger theme. :slight_smile:

dr3772 said

i know little bit about wordpress - can you please tell me how to install ?

like plugin ?

?

planing to build a blogger theme. :slight_smile:

+1
Bookmarked for sharing, thinking in next item :slight_smile:

It’s a huge value of work. Why you’re sharing that for free? What is the profit for you?

||+1120893|wordpress-premium said-|| It's a huge value of work. Why you're sharing that for free? What is the profit for you?

We give Unyson for free because we want to empower developers to create great WordPress themes. We love developing great products and we think that the community as a whole will benefit from a powerful tool like this. When we started in this business there wasn’t something like this available for free so we figure we create this framework to use in our themes and also help others start developing WP themes more easily.

1 Like
Unyson said
||+1120893|wordpress-premium said-|| It's a huge value of work. Why you're sharing that for free? What is the profit for you?

We give Unyson for free because we want to empower developers to create great WordPress themes. We love developing great products and we think that the community as a whole will benefit from a powerful tool like this. When we started in this business there wasn’t something like this available for free so we figure we create this framework to use in our themes and also help others start developing WP themes more easily.

You’re awesome guys. Respect and good luck with growing your business.

This looks insane!!! It’s promising, i’ll definitely try it for my next theme!

Thank you for this ThemeFuse!

wp_workshop said

This looks insane!!! It’s promising, i’ll definitely try it for my next theme!

Thank you for this ThemeFuse!

Thank you. We can’t wait to see your new themes build on Unyson framework.

Can it be standalone, or must I use a child theme?

Reallllly liking this tbh!

Would there be any issue if I remove the bits I dont need? Im really considering this for my next theme as I do like the builder and menus very much indeed!

Top work, thanks guys!

Hi guys,

We are testing out this now and are having trouble to display images in the theme that are set in the options.

Text fields are fine as we use:

<?php echo fw_get_db_settings_option('logo'); ?>

If we use the same on a image upload it obviously returns Array. Is there a helper available for the image uploads?

ThorneMedia said

Hi guys,

We are testing out this now and are having trouble to display images in the theme that are set in the options.

Text fields are fine as we use:

<?php echo fw_get_db_settings_option('logo'); ?>

If we use the same on a image upload it obviously returns Array. Is there a helper available for the image uploads?

Try like this

	<?php
	$logo = fw_get_db_settings_option('logo');
	if( !empty( $logo ) ) :
	?>
         logo
	<?php endif ?>
themechic said

Can it be standalone, or must I use a child theme?

  1. Unyson Framework can be used as a plugin: https://github.com/ThemeFuse/Unyson/releases/tag/v1.2.1

  2. also it must be included in the theme (Ex: https://github.com/ThemeFuse/Unyson).

Child theme is optional and it is working with both versions: http://codex.wordpress.org/Child_Themes

DistinctiveThemes said

Reallllly liking this tbh!

Would there be any issue if I remove the bits I dont need? Im really considering this for my next theme as I do like the builder and menus very much indeed!

Top work, thanks guys!

It is not recommended to edit/delete files, extensions from framework core folder /framework: https://github.com/ThemeFuse/Unyson/tree/master/scratch-parent/framework. Framework Update will overwrite all files on next update.

You can edit/delete files/extensions from /framework-customizations folder.

If you want to deactivate an extension it is needed to add it in https://github.com/ThemeFuse/Unyson/blob/master/scratch-parent/framework-customizations/theme/config.php :: $cfg[‘extensions_blacklist’] = array( /* ‘extension_name’, ‘extension_name’ */);

Unyson Docs: http://unyson-docs.themefuse.com/en/latest/extensions/cookbook.html?highlight=extensions_blacklist#disable-extension

Tbh I was thinking of just breaking out the bits I need and weave them in to my own framework

I really do like this either so thanks again!

Unyson said
themechic said

Can it be standalone, or must I use a child theme?

  1. Unyson Framework can be used as a plugin: https://github.com/ThemeFuse/Unyson/releases/tag/v1.2.1

  2. also it must be included in the theme (Ex: https://github.com/ThemeFuse/Unyson).

Child theme is optional and it is working with both versions: http://codex.wordpress.org/Child_Themes

Thanks.

Link #2 didn’t work for me.

themechic said

Link #2 didn’t work for me.

Edited link: https://github.com/ThemeFuse/Unyson