Unyson
Forum Replies Created
-
Forum: Plugins
In reply to: [Unyson] Background Parallax is not workingThis is the default view for sections. It doesn’t have any
background-attachmentin it.So that style comes from your theme:
{theme}/framework-customizations/extensions/shortcodes/shortcodes/section/views/view.phpAlso you can report this problem to the creator of your theme.
Forum: Reviews
In reply to: [Unyson] a good framework but some basic features are missing> you can’t edit anything created by plugin in default wp editor mode, it’s simply becomes empty. Very bad thing for development.
https://github.com/ThemeFuse/Unyson/issues/783#issuecomment-137479345
> to add some unique class, you need to study documentation and to modify in your wp theme. I think each element must have a unique ID or class at least.
This can be resource consuming (because of shortcode attr decode) and it doesn’t have sense to make extra computation and generate a lot of ids that will not be used. Also we can’t make this feature by default for all shortcodes, because it wasn’t there initially and a lot of users added that feature using custom methods or this (recommended) method.
—-
Thank you very much for your feedback
Forum: Plugins
In reply to: [Unyson] Background Parallax is not workingHello,
> is used as inline CSS
How you included that inline css? More details please. How to reproduce this problem?
Forum: Plugins
In reply to: [Unyson] Using a plugin for new shortcodes@saddamrajif Check apache
error.logForum: Plugins
In reply to: [Unyson] Unyson running with PHP 5.3?Sure. We try to not use php5.3 features to make it work on php5.2. But with higher php versions it will work 100%
Forum: Plugins
In reply to: [Unyson] Unyson running with PHP 5.3?This is not an Unyson problem, it’s a server problem.
To demonstrate that: Create
session-test.phpin your root directory with the following content:<?php ini_set('display_errors',1); session_start();Then open the file in browser
http://your-site.com/session-test.phpand you should get the same error.Forum: Plugins
In reply to: [Unyson] cannot access dashboard after plugin activationsilence is golden
Forum: Plugins
In reply to: [Unyson] Unyson running with PHP 5.3?Hello,
Show us please all error messages that you get.
Forum: Plugins
In reply to: [Unyson] theme option – how to get value from multi-selecthttp://manual.unyson.io/en/latest/options/built-in-option-types.html#multi-picker-get-db-value
$picked = fw_get_db_..._option('data_slider/slider_data'); $value = fw_get_db_..._option('data_slider/'. $picked); if ($picked === 'categories') { // $value['category_selected'] ... } elseif ($picked === 'latest') { // $value['last_post'] ... } elseif ($picked === 'random') { // ... }Forum: Plugins
In reply to: [Unyson] theme option – how to get value from multi-selectall options values (including multi-select) can be get with these functions
multi-select saves only posts or terms ids, you have to make a db query manually to get data about those ids.
Forum: Plugins
In reply to: [Unyson] cannot access dashboard after plugin activation- If you uploaded the files via FTP, maybe some uploads failed, try to upload again
- Check manually if that file exists and have read permissions for all
Forum: Plugins
In reply to: [Unyson] cannot access dashboard after plugin activationCheck apache
error.logForum: Plugins
In reply to: [Unyson] Shortcodes in raw text formPut in builder all existing shortcodes, press Update post, dump raw post content or view it phpMyAdmin.
Forum: Plugins
In reply to: [Unyson] Shortcodes in raw text formHi,
There is no such list.
Why do you need that?
Forum: Plugins
In reply to: [Unyson] How to change image alt tag