Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • 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.

    in reply to: Video wont play in slideshow on mobile devices. #360108

    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.

    in reply to: Team-Icon Shortcodes don't render #357179

    I did a quick-fix in this file:
    themes\enfold\config-templatebuilder\avia-template-builder\php\shortcode-helper.class.php

    Old:

    /**
     * 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.

    in reply to: Team-Icon Shortcodes don't render #357129

    Btw: “No Updates available. You are running the latest version! (3.0.4)”
    But on the dev-page, still no team-icons available.

    in reply to: Team-Icon Shortcodes don't render #357119

    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?

Viewing 6 posts - 1 through 6 (of 6 total)