Forum Replies Created

Viewing 30 posts - 1,801 through 1,830 (of 9,352 total)
  • Author
    Posts
  • in reply to: Wp Media Elements #972257

    Hey image2site,

    Can you please ask the plugin developers which dependencies (js/css files) are missing if Enfold is used?

    Best regards,
    Dude

    in reply to: Pre-Sale Questions #972245

    Hi,

    Best regards,
    Dude

    Hey Esther,

    Ja man kann das Burger-Menü auch in der Desktop-Darstellung aktivieren. Einfach unter Enfold > Theme Optionen > Hauptmenü (bzw. “Main Menu” in Englisch) unter “General” die Option “Menu Items for Desktop” auf “Display as icon” setzen.

    LG,
    Dude

    in reply to: terms and condition link not working #972236

    Hey!
    Great, I’ll close this thread now.

    Cheers!
    Peter

    in reply to: Enfold Google Maps API #972235

    Hey!
    Ich kann Dir auch auf Deutsch antworten :)

    1) Stelle bitte sicher, dass Google Maps richtig konfiguriert wurde und deine Kreditkartendaten hinterlegt sind ( https://forums.envato.com/t/google-now-require-a-credit-card-to-access-google-maps/168936 und https://cloud.google.com/maps-platform/user-guide/pricing-changes/ bei Frage “Benötige ich eine Kreditkarte oder ein Rechnungskonto?”).

    2) Sofern dies nicht hilft, richte mir bitte einen Admin-Accoun ein und ich werde mir das Problem mit dem API-Key ansehen

    Cheers!
    Peter

    in reply to: Security issues? iThemes vs Norton #972231

    Hi Peter!
    I don’t think this is a theme issue otherwise other Enfold websites would trigger security alerts too. I tested my Enfold websites and also Kriesi’s website here ( https://safeweb.norton.com/report/show?url=https%3A%2F%2Fkriesi.at ) and did not get any alerts.

    You can try following:

    1) Connect with ftp to your server, go to the wp-content/themes folder, rename the enfold theme folder to enfold_bak
    2) Download the latest Enfold version from themeforest and unzip the file.
    3) Upload the unzipped Enfold folder to the wp-content/themes and test your website again.

    If the issue persists, try to switch to another theme and test your website again.

    Regards,
    Peter

    in reply to: Logo wird nicht angezeigt #971787

    Hey!
    Das Problem liegt am Logo – irgendetwas fügt diese URL zum Logobereich hinzu. Sofern ihr die Theme-Dateien modifiziert habt, prüft bitte diese Änderungen. Falls nicht, versucht einmal diesen Code in the enfold/functions.php einzufügen:

    
    add_filter('avf_logo_subtext', 'kriesi_logo_addition', 999);
    function kriesi_logo_addition($sub) {
        $sub = '';
        return $sub;
    }
    

    Regards,
    Peter

    in reply to: Membership area with Enfold #971777

    Hi Carsten Ohrmann!
    Enfold does not offer such a feature out of the box but you can use a plugin like S2members to add a membership area. However there’s no “special integration” of this plugin and we can’t guarantee all Enfold features are fully compatible with a certain membership plugin and vice versa.

    Best regards,
    Peter

    in reply to: Lizenz #971771

    Hey Manuel!

    1) wenn ich mir das Enfold Theme kaufe – kann ich damit eine kommerzielle Website bauen und verkaufen?
    Ja, du benötigst zumindest eine “Regular License” ( https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 )

    2) Und, muss ich für jede weitere Website das Theme erneut kaufen bzw. ist das Theme für eine bestimmte Anzahl von Webseiten limitiert?
    Ja, sofern Du nur eine “Regular License” erwirbst musst Du für jede Website (kann auch zB auf Domain und Subdomain liegen) eine eigene Lizenz kaufen. Wenn sehr viele Websites betrieben werden sollen, zahlt sich möglicherweise die “Extended License” aus, welche es erlauben würde, das Theme unlimitiert zu installieren/verwenden. Nur der Weiterverkauf als Produkt (dh das Anbieten als eigenes Theme auf Themeforest) wäre davon nicht gedeckt. Wenn man die Preise vergleicht, muss man minderstens 50 “Regular Licenses” erwerben, um den Preis einer “Extended License” zu erreichen.

    Cheers!
    Peter

    in reply to: Avia Page Builder with own custom Shortcode #971703

    Hi,

    Great – glad we could help you!

    Best regards,
    Dude

    Hi,

    We’ll include a fix with the next update. For now you can patch the theme files manually by replacing the entire code in enfold/includes/helper-privacy.php with the code from here: https://pastebin.com/raw/adiW49Q3

    Best regards,
    Dude

    Hey!
    Ich habe auf der WP SuperCache-Seite ( http://www.profil-design.de/wp-admin/options-general.php?page=wpsupercache&tab=contents#listfiles ) den Button “Cache leeren” betätigt und jetzt sind die Inhalte wieder aktuell. Ich empfehle daher einfach diesen Button zu klicken, falls der Fehler wieder auftauchen sollte.

    LG,
    Peter

    in reply to: Create a child theme of a modified website #971692

    Hey WindowStories!

    You can import all theme options from the parent theme. Activate the child theme, then go to the theme options page (i.e. Enfold Child > Theme Options) and click on the “Import/Export” tab on the left side. Then click the blue “Import Parent Theme Settings” button and the child theme will import all parent theme options. Note that the child theme can’t import changes you coded directly into the parent theme css/php/js files – you must collect these code changes and add the css code to the child theme style.css file, then add the custom js code to a child theme js file and the php code to the child theme functions.php, etc.

    Cheers!
    Peter

    in reply to: Logo wird nicht angezeigt #971687

    Hi Symbion7!

    Ich habe das Problem mit folgenden CSS Code gelöst (Quick CSS Feld in den Theme Optionen):

    
    #top #wrap_all .av_header_transparency.av_alternate_logo_active .logo a > img {
        opacity: 1;
        filter: alpha(opacity=100);
    } 
    

    Sofern Du die Änderung nicht gleich siehst, bitte den Browser Cache löschen!

    LG,
    Peter

    in reply to: Avia Page Builder with own custom Shortcode #971403

    Hey!
    I created a custom shortcode based on the toggles shortcode for you:

    
    <?php
    /**
     * Featurebox
     * 
     * Shortcode which creates a text element wrapped in a div
    */
    if ( ! defined( 'ABSPATH' ) ) {  exit;  }    // Exit if accessed directly
    
    if ( !class_exists( 'avia_sc_olicci_featurebox' ) )
    {
        class avia_sc_olicci_featurebox extends aviaShortcodeTemplate
        {
            static $toggle_id = 1;
            static $counter = 1;
            static $initial = 0;
            static $tags = array();
            static $atts = array();
    
            /**
             * Create the config array for the shortcode button
             */
            function shortcode_insert_button()
            {
    			$this->config['self_closing']	=	'no';
    			
                $this->config['name']           = __('Feature Box', 'avia_framework' );
                $this->config['tab']		= __('Content Elements', 'avia_framework' );
                $this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-contentslider.png";
                $this->config['order']		= 70;
                $this->config['target']		= 'avia-target-insert';
                $this->config['shortcode'] 	= 'av_olicci_featurebox';
                $this->config['shortcode_nested'] = array('av_olicci_featureitem');
                $this->config['tooltip'] 	= __('Create an olicci Feature Box Element', 'avia_framework' );
                $this->config['disabling_allowed'] = true;
            }
    
    		function admin_assets()
    		{
    			$ver = AviaBuilder::VERSION;
                wp_enqueue_script('avia_tab_toggle_js' , AviaBuilder::$path['assetsURL'].'js/avia-tab-toggle.js' , array('avia_modal_js'), $ver, TRUE );
    		}
    			
            function extra_assets()
    			{
    				//load css
    				wp_enqueue_style( 'avia-module-toggles' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/toggles/toggles.css' , array('avia-layout'), false );
    				
    					//load js
    				wp_enqueue_script( 'avia-module-toggles' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/toggles/toggles.js' , array('avia-shortcodes'), false, TRUE );
    
    			}
            
    
            /**
             * Popup Elements
             *
             * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
             * opens a modal window that allows to edit the element properties
             *
             * @return void
             */
            function popup_elements()
            {
                $this->elements = array(
    
                        array(
                                "type"  => "tab_container", 'nodescription' => true
                            ),
                            
                        array(
                                "type"  => "tab",
                                "name"  => __("Content" , 'avia_framework'),
                                'nodescription' => true
                            ),
                        array(
                            "name" => __("Heading", 'avia_framework'),
                            'desc' => __('Trage hier die Headline ein','olicci'),
                            'id' => 'heading',
                            'type' => 'input',
                            'std' => 'Adserver'
                        ),
                        array(
                            "name" => __("Subheading","avia_framework"),
                            "desc" => __("Add an extra descriptive subheading below the actual heading","avia_framework"),
                            "id" => "subheading",
                            "type" => "input",
                            "std" => ""
                        ),
                    array(
                        "name" => __("Adserver Auswahl", 'avia_framework' ),
                        "desc" => __("Trage hier die Adserver ein, in denen das Feature enthalten ist", 'avia_framework' ),
                        "type" 			=> "modal_group",
                        "id" 			=> "content",
                        "modal_title" 	=> __("Edit List Item", 'avia_framework' ),
                                "std" => array(
                                    array('title' => 'Display AdServer','color' => "#400954", "link" => "")
                                ),
    
                        'subelements' 	=> array(
    
                                    array(
                                        "name" => "AdServer Titel",
                                        "desc" => "Der Titel des AdServers",
                                        "id" => "title",
                                        "std" => "Adnetwork",
                                        "type" => "input"
                                    ),
                                    array(
                                        "name" => "Link",
                                        "desc" => "Link zur Adserver Beschreibung",
                                        "id" => "link",
                                        "type" => "linkpicker",
                                        "fetchTMPL" => true,
                                        "std" => "",
                                        "subtype" => array(
                                            __('No Link', 'avia_framework' ) =>'',
                                            __('Set Manually', 'avia_framework' ) =>'manually',
                                            __('Single Entry', 'avia_framework' ) =>'single',
                                            __('Taxonomy Overview Page',  'avia_framework' )=>'taxonomy',
                                        )
                                    ),
                                    array(
                                        "name" => "Kreis-Farbe",
                                        "desc" => "Farbe des Kreises des Elements",
                                        "id" => "link_color",
                                        "type" => "colorpicker",
                                        "std" => "",
                                    )
    
                        )
                    ),
    				
    				array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    				),		
    						
    								array(
    									"type" 	=> "tab",
    									"name"	=> __("Screen Options",'avia_framework' ),
    									'nodescription' => true
    								),
    								
    								
    								array(
    								"name" 	=> __("Element Visibility",'avia_framework' ),
    								"desc" 	=> __("Set the visibility for this element, based on the device screensize.", 'avia_framework' ),
    								"type" 	=> "heading",
    								"description_class" => "av-builder-note av-neutral",
    								),
    							
    								array(	
    										"desc" 	=> __("Hide on large screens (wider than 990px - eg: Desktop)", 'avia_framework'),
    										"id" 	=> "av-desktop-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    								
    								array(	
    									
    										"desc" 	=> __("Hide on medium sized screens (between 768px and 989px - eg: Tablet Landscape)", 'avia_framework'),
    										"id" 	=> "av-medium-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    										
    								array(	
    									
    										"desc" 	=> __("Hide on small screens (between 480px and 767px - eg: Tablet Portrait)", 'avia_framework'),
    										"id" 	=> "av-small-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    										
    								array(	
    									
    										"desc" 	=> __("Hide on very small screens (smaller than 479px - eg: Smartphone Portrait)", 'avia_framework'),
    										"id" 	=> "av-mini-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    									
    								
    							  
    				
    							
    								
    							array(
    									"type" 	=> "close_div",
    									'nodescription' => true
    								),	
    								
    								
    						
    						
    					array(
    						"type" 	=> "close_div",
    						'nodescription' => true
    					),
    
                );
    
                if(current_theme_supports('avia_template_builder_custom_tab_toogle_id'))
                {
                    $this->elements[2]['subelements'][] = array(
                        "name" 	=> __("For Developers: Custom Toggle ID",'avia_framework' ),
                        "desc" 	=> __("Insert a custom ID for the element here. Make sure to only use allowed characters",'avia_framework' ),
                        "id" 	=> "custom_id",
                        "type" 	=> "input",
                        "std" 	=> "");
                }
    
            }
    
            /**
             * Editor Sub Element - this function defines the visual appearance of an element that is displayed within a modal window and on click opens its own modal window
             * Works in the same way as Editor Element
             * @param array $params this array holds the default values for $content and $args.
             * @return $params the return array usually holds an innerHtml key that holds item specific markup.
             */
            function editor_sub_element($params)
            {
                $template = $this->update_template("title", "{{title}}");
    
                $params['innerHtml']  = "";
                $params['innerHtml'] .= "<div class='avia_title_container' {$template}>".$params['args']['title']."</div>";
    
                return $params;
            }
    
            /**
             * Frontend Shortcode Handler
             *
             * @param array $atts array of attributes
             * @param string $content text within enclosing form of shortcode element
             * @param string $shortcodename the shortcode found, when == callback name
             * @return string $output returns the modified html string
             */
            function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
            {
                    extract(AviaHelper::av_mobile_sizes($atts)); //return $av_font_classes, $av_title_font_classes and $av_display_classes 
    
                    extract(shortcode_atts(array(
                    'font_color' => "",
                    'color' => '',
                    'size' => '',
                    
                    ), $atts, $this->config['shortcode']));
                    
                    
                    $custom_class = !empty($meta['custom_class']) ? $meta['custom_class'] : "";
                    $output = '';
                    $markup = avia_markup_helper(array('context' => 'entry','echo'=>false, 'custom_markup'=>$meta['custom_markup']));
                    $markup_text = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'custom_markup'=>$meta['custom_markup']));
    
                    $output .= "<!-- ";
                    $output .= var_export([$atts,$content],true);
                    $output .= "-->\n";
                    $output .= '<section class="av_featurebox_section">';// '.$markup.'>';
                    $output .= '<div class="olicci-sign">';
                    $output .= '<img src="'.trailingslashit(get_stylesheet_directory_uri()).'img/olicci-sign-30x30.png" alt="" />';
                    $output .= '</div>';
                    $output .= '<div class="title">';
                    $output .= "<h4>".$atts['heading']."</h4>";
                    $output .= "<h6>".$atts['subheading']."</h6>";
                    $output .= "</div>";
                    //$output .= "<div class='avia_textblock {$custom_class}' {$markup_text}>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";
                    $output .= "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";
                    $output .= "<div class='avia_footer'>";
                    $output .= "</div>";
                    $output .= '</section>';
                    return $output;
            }
    
            function av_olicci_featureitem($atts, $content = "", $shortcodename = "")
            {
                $output = $titleClass = $contentClass = "";
                /*$toggle_atts = shortcode_atts(array('title' => '', 'tags' => '', 'custom_id' => '', 'custom_markup' =>''), $atts, 'av_olicci_featureitem');
    			$toggle_init_open_style = "";*/
                
                $atts =  shortcode_atts(array('title' => '', 'link' => '', 'link_color' => ''), $atts, 'av_olicci_featureitem');
    
                $link = aviaHelper::get_url($atts['link']);
    
                $output = "<a href='".$link."' class='tooltip' data-tooltip='".esc_attr($atts['title'])."'>";
                $output .= "<div class='circle' style='background-color: ".esc_attr($atts['link_color'])."'></div>";
                $output .= "</a>";
    			
    
                return $output;
            }
    
        }
    }
    
    

    You can use it as a starting point for additional shortcode settings, etc.

    Regards,
    Peter

    Hi,
    Gerne :)

    Best regards,
    Dude

    Hey szenario-zwei,

    Did you update Enfold to the latest version? As far as I know this bug should be fixed with the latest Enfold update.

    Best regards,
    Dude

    Hi,

    Sure :) – I’ll close this thread now.

    Best regards,
    Dude

    Hi,

    Ich habe jetzt in das Quick CSS Feld (am Ende) diesen Code eingefügt:

    
    #top .avia-fullscreen-slider.avia_zindex_lower {
        z-index: 0 !important;
    }
    

    und dem Fullscreen Slider die CSS Klasse “avia_zindex_lower” gegeben. Dadurch überlagert der Slider die Spalten nicht mehr und die Animation wird richtig dargestellt.

    Best regards,
    Dude

    in reply to: Enfold vs. Woocommerce Sensei #970858

    Hi,

    Soweit die Sensei-Entwickler keine grundlegenden Änderungen an ihrem Plugin/templates vornehmen, nein :)

    LG,
    Dude

    in reply to: Reuse of Theme #970855

    Hi,

    Best regards,
    Dude

    in reply to: Reuse of Theme #970854

    Hi,

    Great, thank you :) – I’ll close this ticket now.

    Best regards,
    Dude

    in reply to: Mp3 player #970853

    Hi,

    You can use the default wordpress media library to add images to the event/concert infos.

    Best regards,
    Dude

    Hi,

    I added the filter code to your enfold child functions.php

    
    add_filter('avf_privacy_comment_checkbox_error_message', 'avia_privacy_comment_checkbox_error_message', 10, 1);
    function avia_privacy_comment_checkbox_error_message($message)
    {
      $url = htmlspecialchars($_SERVER['HTTP_REFERER']);
      return "Fehler: Sie m&uuml;ssen unserer Datenschutzerkl&auml;rung zustimmen, um einen Kommentar schreiben zu k&ouml;nnen. <a href='$url'>Zur&uuml;ck zu den Kommentaren</a>.";
    }
    

    You can replace the text with a custom error message :)
    I recommend to delete the helper-privacy.php from the child theme folder because it’s not required.

    Best regards,
    Dude

    in reply to: Cookie Secure #970846

    Hi,

    Great, glad you found the code you were looking for!

    Best regards,
    Dude

    in reply to: restaurant / Shop theme question #970844

    Hey buxton161,

    You can use this code to create the element:

    
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='collections' av_uid='av-6pr6fk']
    [av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6hwbk8']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/winter-girl-small-495x400.jpg' attachment='551' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product,66' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-6dsjcg']
    NEW
    WINTER COLLECTION
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6686k8']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/couple-sitting-495x400.jpg' attachment='546' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,15' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-61m3e8']
    LATEST
    STREET CLOTHES
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-5wd80g']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/girls-shopping-desat-495x400.jpg' attachment='549' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,12' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-5oekkg']
    FRESH
    SPORTSWEAR
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-jvrd4']
    
    [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working-495x400.jpg' attachment='554' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,10' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' av_uid='av-5cjrlk']
    FUNKY
    ACCECCOIRS
    [/av_image]
    
    [/av_cell_one_fourth]
    [/av_layout_row]
    
    

    I recommend to activate the debug mode ( https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode ) – then you can add this code directly to the debug field (textarea under the layout builder on the editor page). Then click the blue “update” button on the editor page and the editor will load the element after the saving process.

    Best regards,
    Dude

    Hi,

    Leider hat der angelegte Benutzer keine Admin-Berechtigung und ich kann mir den Code der Seite (Template Builder) nicht ansehen.

    Best regards,
    Dude

    in reply to: Mp3 player #970842

    Hey Satyaa,

    Yes Enfold supports mp3 files – I’d recommend to import the demo data from our DJ demo ( https://kriesi.at/themes/enfold-dj/ ) and to use it as a starting point.

    Best regards,
    Dude

    in reply to: Cookie Secure #970755

    Hey Pako,

    Please elaborate – what do you mean with “I can not figure out, how to change the .js file in this case.”
    Which JS file do you want to modify?

    Best regards,
    Dude

    in reply to: LearnDash Plugin #970751

    Hey Ivana,

    There’s no easy way to integrate the Advanced Builder in custom post types created by the LearnDash LMS plugin. It’s probably possible but would require quite a lot of work and testing and is beyond the scope of our support forum. I’d recommend to hire a freelancer for this task.

    Best regards,
    Dude

Viewing 30 posts - 1,801 through 1,830 (of 9,352 total)