Unyson
Forum Replies Created
-
Forum: Plugins
In reply to: [Unyson] Page Builder Extension Deactivatingsilence is golden
Forum: Plugins
In reply to: [Unyson] All layout elements now are inside a text blocksilence is golden
Forum: Plugins
In reply to: [Unyson] Performance Issue – Causing 8.4 Second Load TimeHave you reported this problem to theme author?
P.S. I don’t have the Woffice theme and can’t test this problem. On my side I tested with The Core theme and avg. load is less than a second.
Forum: Plugins
In reply to: [Unyson] Performance Issue – Causing 8.4 Second Load TimeHello,
Please tell us:
1. Which theme do you use?
2. Which hosting do you use?
3. Do you have installed the latest Unyson plugin and PageBuilder extension?Forum: Plugins
In reply to: [Unyson] sequencing issue with the slider in the blog sectionHello,
I think this problem needs more detailed inspection and it is not related to Unyson functionality, it is custom work. So please ask theme developer, maybe he will help. Find a freelancer or ask this question on stackoverflow and give as much details so other developers will be able to reproduce the problem on their localhost and find the solution.
Cheers!
Forum: Plugins
In reply to: [Unyson] Theme IntegrationHello,
You can require the Unyson plugin with TGM.
Require PageBuilder from theme by specifying it in
$manifest['supported_extensions']docs.You can change the menu via this action or find a WordPress filter/action to remove it from menu (by finding it by slug).
To install/uninstall/activate/deactivate extension from code you can use
fw()->extensions->manager->...()methods, for example. Important: On some server, on install/uninstall you’ll need ftp details, so it’s a bit tricky to do that.Also the framework by default will check if PageBuilder is not active it will show a warning and a link to install it (code)
Forum: Plugins
In reply to: [Unyson] Unable to install or activate extension@paultheroyal can you update/install plugins on live?
Forum: Plugins
In reply to: [Unyson] Bootstrap datepicker not translated on backendHello,
Thank you for reporting.
I did the fix. Please test. It will be included in the next Unyson release.
Cheers!
Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageCheers
Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageYour code is adding post 197 on fronpage but also adding blank space at the top area of the post
I don’t understand. Can you give a screenshot?
Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpage$posts = get_posts(array( 'include' => 197, 'post_type' => 'any', 'numberposts' => 1, 'suppress_filters' => false, )); echo apply_filters('the_content', $posts[0]->post_content);Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageI am working on this now. Give me a few hours.
Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpage$post = get_post(197); echo $post->post_content;Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageTry
get_post(197)Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageHello,
PageBuilder doesn’t store the value in post_content, the value is stored in post meta. Post content is replaced right before frontend display via this filter