Forum Replies Created
-
AuthorPosts
-
I think i found out, why this happend.. the enfold.css from wp-content/uploads/dynamic-avia was not loaded.
i downloaded it manually from the live-server, then it worked. But why was this file not updated, after changing the settings?I do have the same problem. Setted up Enfold-child with the pre-build ZIP file from http://kriesi.at/documentation/enfold/using-a-child-theme/
The files are used and loaded, so i imported the parent settings. But the frontend looks totally broken.
Then i exported the parent settings and imported them in the child.Still no change.
Hi there
On mobile it makes sense. Although no user will understand that the images can be “clicked”, if there is no transparent play-button on top of it. Perhaps this can be made available in the next version?
Also it would be great if the lightbox-link on a video is not available on desktop-computers, where the fallback-image is not displayed. See: http://www.frame3d.de/Loesungen/dslr-filmmaking-color-run-nuernberg-2014/ slide #2 for example. The videos plays and if you click on it to stop it, the lightbox opens and plays the video again.
I did a quick-fix in this file:
themes\enfold\config-templatebuilder\avia-template-builder\php\shortcode-helper.class.phpOld:
/** * Converts a shortcode into an array **/ static function shortcode2array($content, $depth = 1000) { $pattern = empty(ShortcodeHelper::$pattern) ? ShortcodeHelper::build_pattern() : ShortcodeHelper::$pattern; $depth --; preg_match_all( "/$pattern/s", $content , $matches); ...
NEW:
/** * Converts a shortcode into an array **/ static function shortcode2array($content, $depth = 1000) { $pattern = empty(ShortcodeHelper::$pattern) ? ShortcodeHelper::build_pattern() : ShortcodeHelper::$pattern; $depth --; // fixing shortcode-bug with wordpress 4.0.1 // $content = html_entity_decode($content); // does not seem to work. $content = str_replace("’", "'", $content); $content = str_replace("”", '"', $content); $content = str_replace("”", "''", $content); $content = str_replace(array("’", "′"), "'", $content); preg_match_all( "/$pattern/s", $content , $matches); ...
Perhaps this helps someone.
- This reply was modified 10 years ago by frame_michael.
Btw: “No Updates available. You are running the latest version! (3.0.4)”
But on the dev-page, still no team-icons available.Ah i see.
Can you please tell me, which files where modified, so i can copy the changes row by row or file by file?
-
AuthorPosts