Forum Replies Created

Viewing 30 posts - 3,361 through 3,390 (of 9,352 total)
  • Author
    Posts
  • in reply to: Flex slider – split Caption Title and Text position #271675

    Hey!

    No, unfortunately there’s no other way to change the position right now. You can try to use LayerSlider or a plugin like Master Slider if you want to change thwe position(s) of your text layers.

    Best regards,
    Peter

    in reply to: Save Template #271674

    Hi!

    Please use ftp to connect to your server, then download wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.css and replace this code:

    
    #_aviaLayoutBuilderCleanData{width:100%; height:300px; margin:20px 0; display:none;}
    

    with

    
    #_aviaLayoutBuilderCleanData{width:100%; height:300px; margin:20px 0; display:inline-block;}
    

    Then save the file and upload it to your server (overwrite the existing file if necessary).

    Regards,
    Peter

    in reply to: Sort By Name / Display Products page #271671

    Hi!

    Glad you solved the issue ;)

    Best regards,
    Peter

    in reply to: Latest News Widget Query from ALL custom post types #271670

    Hi crschulz!

    It depends on the cpts and taxonomies. If these post types use the same taxonomy you can query posts from multiple post types. If all (or some post types) use different taxonomies it’s not possible because our widget can just display the terms of one taxonomy.

    Regards,
    Peter

    in reply to: Problem with Fullwidth Masonry #271669

    Hi!

    Yes, you always need to select the right taxonomy. If you want to display portfolio entries please select the “portfolio entries” taxonomy. If you want to display standard blog posts please select “Categories”.

    Regards,
    Peter

    in reply to: MailChimp for WP plugin forms inline #271668

    Hi peterjaniga!

    Yes please provide a link to your website. Use the ” Set as private reply (Only you and moderators will see the content of this post)” checkbox below the text editor to post the link as private message.

    Cheers!
    Peter

    in reply to: Possiblities for a ticker #271666

    Hi SaraMichelle!

    I recommend to use this plugin: Foobar. I used it for a project and it worked very well and stable. It uses a table layout for the notification bar and it’s responsive.

    Regards,
    Peter

    in reply to: Fullscreen Slider Pause Issue #271664

    Hey kevinjsutton!

    Open up wp-content/themes/enfold/js/shortcodes.js and replace:

    
    		// public method: shows next image
    		next : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'next' );
    		},
    
    		// public method: shows previous image
    		previous : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'prev' );
    		},
    

    with

    
    		// public method: shows next image
    		next : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'next' );
    			this.options.autoplay = true;
    			this._startSlideshow();
    		},
    
    		// public method: shows previous image
    		previous : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'prev' );
    			this.options.autoplay = true;
    			this._startSlideshow();
    		},
    

    Regards,
    Peter

    in reply to: error issues with masonry_entries.php on line 33 #271660

    Hey!

    Unfortunately I can’t tell you how to fix the session error – this is definitely something which needs to be fixed by the server administrator/host. We just use the session_id() function: http://www.php.net/manual/en/function.session-id.php to check if a session exists and if not we call the session_start() function http://www.php.net/manual/en/function.session-start.php to create a new session. Everything else is handled by php on your server and our code can’t change/affect the session processing. The only “solution” would be to deactivate the theme session completely but this may break the breadcrumb. If you want to deactivate the session insert this code into your child theme functions.php file:

    
    add_theme_support('avia_no_session_support');
    
    

    Regards,
    Peter

    in reply to: Wrong URL for share this entry #271658

    Hey lsrmedia!

    We use the wp_get_shortlink() function ( http://codex.wordpress.org/Function_Reference/wp_get_shortlink ) to get the short url of the entry and you can’t change this url. Maybe WP still stores the old domain/url in the database and you need to replace it. I recommend to use WP MigrateDB or WP MigrateDB PRO to export the database. Use the “domain replacement” feature to replace all occurrences of your old domain with the new domain in your database and export the database. Then make a backup of your old database, delete the database data and import the database file you exported with the migrate plugin.

    Cheers!
    Peter

    in reply to: Version 2.8 missing fix #271377

    Hey!

    In fact the vast majority of Enfold users rely on Yoast SEO or another popular seo plugin which takes care of the page title and our theme complete leaves it up to the seo plugin to generate the page title. Enfold does not generate meta descriptions, meta keywords, og meta data,, etc. and if you want to enjoy seo you must install a dedicated seo plugin anyway. Enfold does not replace a seo plugin.

    I.e. Yoast supports the %%page%% shortcut to add the page number to the archive page title…

    Best regards,
    Peter

    in reply to: HELP!!! Trying to understand ERROR Message!!!!! #271362

    Hey msbllc!

    Please try to clear the browser cache and cookies for your website. It seems like the session cookie contains some invalid data and this data triggers the warning.

    Best regards,
    Peter

    in reply to: WPML Flags and Icon in text boxes #271359

    Hi!

    Our theme does not use the default WPML language switcher and thus it ignores the language switcher settings. If you want to show the language name just insert this code into the quick css field:

    
    .avia_wpml_language_switch li span.language_native{
    display: block;
    }
    

    If you want to show the translated language name instead use this code:

    
    .avia_wpml_language_switch li span.language_translated{
    display: block;
    }
    

    Regards,
    Peter

    Hi!

    Warum diese Fehlermeldung kommt weiß ich leider auch nicht. Ihr könnt aber versuchen die Zeile mit dem Funktionsaufruf zu löschen:

    
    $iconfont    = $image ? "" : av_icon_string($post_type);
    

    Regards,
    Peter

    in reply to: not work any SEO plugin #271350

    Hey Lido!

    Please try to increase the allocated memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Cheers!
    Peter

    in reply to: WPML Flags and Icon in text boxes #271233

    Hey!

    Ok, try to insert this code into your child theme functions.php file or enfold/functions.php:

    
    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
            add_action('ava_after_main_menu', 'avia_wpml_language_switch', 10);
    }
    

    Then insert this code into the quick css field:

    
    .avia_wpml_language_switch{
    margin-top: -30px;
    }
    

    and change the margin-top value if necessary.

    Best regards,
    Peter

    in reply to: Icon List – Icon Sze #271220

    Hi!

    I recommend to add a margin-top to the icons to fix the alignment issue – insert this css code into the quick css field

    
    .postid-237 .avia-icon-list .iconlist_icon {
    margin-top: 10px;
    }
    

    Regards,
    Peter

    in reply to: Magic wand button for shortcodes missing on multisite #271214

    Hi Rolf!

    Maybe a plugin which is activated for the entire network breaks the magic wand button?

    Cheers!
    Peter

    in reply to: BreadCrumbs show tertiary pages? #271212

    Hi!

    Try to insert this code into the child theme functionsphp file or into enfold/functions.php

    
    add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 5, 1);
    function avia_change_breadcrumb($trail) {
        if(is_page())
        {
            global $post;
    
            $front 			= avia_get_option('frontpage');
            $blog 			= avia_get_option('blogpage');
    
            if($post->ID == $blog || $post->ID == $front) return $trail;
    
            $parents = get_post_ancestors($post->ID);
            if(!empty($parents))
            {
                $home = $trail[0];
                $last = array_pop($trail);
                $trail = array(0 => $home);
    
                foreach($parents as $key => $data)
                {
                    $link = '<a href="'.get_permalink($data).'">'.get_the_title($data).'</a>';
                    $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link);
                    $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link);
                    $link = '<span typeof="v:Breadcrumb">'.$link.'</span>';
                    $trail[] = $link;
                }
    
                $trail[] = $last;
            }
        }
        return $trail;
    }
    

    Cheers!
    Peter

    in reply to: Version 2.8 missing fix #271202

    Hi Michael!

    Tbh I’m not sure if we want to add this to the core files. We’ll discuss this with Kriesi. I recommend to use a filter and your child theme functions.php to modify the output – then you don’t need to customize the header.php file. Use the filter like:

    
    add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2);
    function avia_change_title_tag($title, $wptitle) {
    	$page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' );
    	if(!empty($page) && $page > 1) $title .= ' - ' . $page;
            return $title;
    }
    

    Best regards,
    Peter

    in reply to: Portfolio Arrows #271194

    Hi!

    I noticed that the Post Types Order plugin breaks the next/prev navigation buttons. Unfortunately I don’t know how to fix this because we use standard wordpress functions ( http://codex.wordpress.org/Function_Reference/get_next_post and http://codex.wordpress.org/Function_Reference/get_previous_post ) and it seems to be a plugin/wordpress conflict which has nothing to do with our theme code. I suggest to contact the plugin author and to submit a bug report.

    Regards,
    Peter

    in reply to: Add a Google font to use for Headings, Menu #271189

    Hey!

    You just need to add this code to your child theme functions.php file. Then you can select the Rum Raisin font from the “font” dropdown on the theme options page (Enfold > Theme Options > General Styling > “General” tab – “Heading Font” dropdown). If you want to apply the font family to the menu links insert this code into the quick css field:

    
    #avia-menu li a{font-family: "Rum Raisin";}
    

    Cheers!
    Peter

    Hey!

    Did you upload your modified shortcode file into the wp-content/themes/enfold-child//shortcodes/ folder?

    Regards,
    Peter

    in reply to: Table controls in visual editor #271179

    Hey itchybrain!

    I don’t know a plugin which adds table controls to the editor but if you want to create advanced tables I can recommend this plugin: http://tablepress.org/ which works with shortcodes. It also supports responsive tables: http://tablepress.org/extensions/

    Regards,
    Peter

    in reply to: WPML Flags and Icon in text boxes #271178

    Hi soluciones1!

    1) Please post a link to your website and we’ll provide some css code to move the flags to the top of the menu.

    2) The icon boxes don’t support custom images. You can just select a font icon from fontello: http://fontello.com/ . If you want to add an image to your text I recommend to use the column elements to create the columns, then place an image element (you can find it in the “Media Elements” tab) into each column and then use some textblock elements to add some text to the columns. The round circle around your image requires some Photoshop work.

    Best regards,
    Peter

    Hey!

    1) Please create us an admin account and post the login credentials as private reply – we’ll check the configuration.

    2) No, Enfold just uses the standard wordpress search which doesn’t support such a feature. You can try a search plugin like: SearchWP though.

    Regards,
    Peter

    in reply to: Archive pages #271167

    Hi!

    Please replace the code Ismael posted :

    
    if(!is_archive()){
                echo $content;
    			} else {
    			$excerpt = the_excerpt(); 
    			echo $excerpt.'<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a>';
    			}
    

    with

    
    if(!is_archive()){
                echo $content;
    			} else {
    			$excerpt = get_the_post_thumbnail( get_the_ID(), "large"); get_the_excerpt();
    			$excerpt .=  get_the_excerpt();
    			echo $excerpt.'<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a>';
    			}
    

    Regards,
    Peter

    in reply to: Remove borders #271159

    Hi!

    Thanks Flikk for helping us out ;)

    Best regards,
    Peter

    Hey!

    Versuche einmal diesen Code:

    
    #top .products.slide-entry-wrap .inner_product_header {
    display: none !important;
    }
    

    Cheers!
    Peter

    in reply to: Google Maps Tooltip größer #271154

    Hi fotograf561!

    Die Größe des Tooltips wird von Google Maps automatisch anhand des Inhalts und der Größe des Browser-Fensters berechnet und kann mWn nicht unmittelbar per JS Code beeinflusst werden. Du könntest probieren die minimale Größe per CSS Code zu setzen, aber ich bin mir ehrlich gesagt nicht sicher, ob dies funktioniert. Hierzu fügt folgenden Code in das Quick CSS Feld ein:

    
    .gm-style .gm-style-iw, .gm-style .gm-style-iw div {
    min-width: 330px !important;
    }
    

    Ihr könnt natürlich statt 330px auch einen anderen Wert verwenden.

    Cheers!
    Peter

Viewing 30 posts - 3,361 through 3,390 (of 9,352 total)