Forum Replies Created

Viewing 30 posts - 2,431 through 2,460 (of 9,352 total)
  • Author
    Posts
  • in reply to: Basic Gallery Thumbnails #301945

    Hi!

    You can re-size the thumbnail images with css code – insert it into the quick css field:

    
    #top .avia-gallery .avia-gallery-thumb a {
    width: 14.288%;
    }
    

    Best regards,
    Peter

    in reply to: Group Lightbox #301943

    Hey!

    The lightbox now uses the data-rel attribute instead of the standard rel attribute to group images. Instead of:

    
    <a href="http://www.visioglas.com/wp-content/uploads/2014/07/Glasdesign-Klarglas-1.jpg" class="avia_image lightbox-added" rel="prettyphoto">...
    

    you just need to write:

    
    <a href="http://www.visioglas.com/wp-content/uploads/2014/07/Glasdesign-Klarglas-1.jpg" class="avia_image lightbox-added" data-rel="prettyphoto">...
    

    I’ll ask Kriesi to look into it though – probably we’ll add a rel to data-rel conversion script.

    Cheers!
    Peter

    in reply to: Several issues #301942

    Hey!

    1) The session_start() warning tells you that the server can’t write or create a session file because the permission of the tmp folder doesn’t allow it. You must contact the server administrator and ask him to fix the folder permissions. Alternatively you can deactivate all theme sessions with this code (add it to the theme functions.php):

    
    add_theme_support('avia_no_session_support');
    

    but this may break the portfolio breadcrumbs which sometimes use sessions to store data. In addition it doesn’t solve the issue that your server can’t write/use php sessions at the moment.

    2) Please elaborate – the gallery and the lightbox of the gallery seems to work for me: http://www.clipular.com/c/6723826687672320.png?k=1O9pRoZNwv4Bp_Qj2kiR4NMEv1I

    Best regards,
    Peter

    in reply to: image 404 #301941

    Hi!

    I think the problem is the permalink structure. WordPress tries to load a subpage or post of this page: http://thestandardblog.com/2014/08/ramen-night/
    because the image permalink ( http://thestandardblog.com/2014/08/ramen-night/toro-tartare-with-wasabi-sesame-seeds-shiso-leaf-and-fried-chicken-skin-with-togarashi-and-toro-sashimithestandardblog_posts20/ ) also contains it in the url. Did you try to change the ramen-night slug to another slug or to change the image slug on the attachment editor page?

    Regards,
    Peter

    in reply to: Layout Issue #301940

    Hey Arran!

    Probably the easiest solution is to use the right sidebar layout for the blog page, to hide the sidebar with css code and to extend the blog column width to 100% of the container width:

    
    #top.page-id-22 #main .sidebar{ display: none !important; }
    #top.page-id-22 .container .nine.units { width: 100% !important; }
    

    You can insert the css code into the quick css field.

    Regards,
    Peter

    in reply to: Blog and Search etc. is not translated #301939

    Hey!

    Yes, seems to be a limitation of the plugin. You can also use Poedit: http://poedit.net/ if you want to translate the files offline on your PC or Mac.

    Regards,
    Peter

    in reply to: WPML Plugin #301938

    Hey!

    1) Did you install/configure this WPML extension: http://wpml.org/documentation/getting-started-guide/media-translation/ ? It’s required to translate images like posts/pages.

    2) Make sure all posts/pages/portfolio entries are translated independently. Otherwise the original entry overwrites the “cloned” translated entry. You just need to click the “Translate Independently” button: http://www.clipular.com/c/4673705724608512.png?k=0JgIrSOUpHKLo5oIjhbT1mPAbY8 on the editor page to stop this behavior.

    3) See http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/

    Cheers!
    Peter

    in reply to: Responsive behaviour in a range #301935

    Hi!

    Try to add important to the width attribute like:

    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .page-id-7165 .container {
    width: 428px !important;
    }
    }
    

    Regards,
    Peter

    in reply to: Selection Categories #301933

    Hey!

    1) No, unfortunately there’s no code to display the category widget at the top. The sidebar will always display after the content.

    2) The category select box is a standard wordpress widget and thus we can’t fix this issue. Maybe the iphone doesn’t support multiple instances of the widget on the same page. You can try to use another category widget plugin like: http://wordpress.org/plugins/extended-categories-widget/

    Cheers!
    Peter

    Hi!

    No, the license code is stored in the database and you can remove it by simply clearing the license code option/text field or you can simply replace it with another serial as soon as you imported the data.

    Regards,
    Peter

    in reply to: Enfold Ajax Search & WMPL #301762

    Hi!

    Yes, unfortunately ajax requests are not allowed across different domains (i.e. from http://fiberreed.de/ to http://fiberreed.com/ or vice versa). Afaik you can solve this with CORS: http://www.d-mueller.de/blog/cross-domain-ajax-guide/ but implementing such a solution is beyond the scope of our support forum. You can try to contact the WPML support staff – maybe they can provide a solution. Otherwise I recommend to deactivate the ajax search feature on the website with following code (insert it into the functions.php file):

    
    add_filter('avf_frontend_search_form_param', 'avia_deactivate_ajax_search',10,1);
    function avia_deactivate_ajax_search($params)
    {
    	$params['ajax_disable'] = true;
    	return $params;
    }
    

    You could also change the url of the English website from http://fiberreed.com/ to http://fiberreed.de/en/ which would also solve the problem because the domain ( http://fiberreed.de/ ) is the same.

    Best regards,
    Peter

    in reply to: Sort masonry gallery by title #301759

    Hey!

    Try to insert this code into the theme functions.php file:

    
    if(!function_exists('avia_change_posts_query'))
    {
    	function avia_change_posts_query($query, $params)
    	{
    	    if(!empty($query['orderby']) && $query['orderby'] == 'post__in')
    	    {
                       $query['order'] = 'ASC';
                       $query['orderby'] = 'title';
    	    }
    	
    	    return $query;
    	}
    	
    	add_filter('avia_masonry_entries_query', 'avia_change_posts_query', 10, 2);
    }
    
    

    Cheers!
    Peter

    in reply to: WMPL country code instead of flags #301758

    Hey!

    I noticed if you don’t use a child theme you must place the code at the very top of the enfold/functions.php file. Open up the file and replace:

    
    <?php
    
    global $avia_config;
    

    with

    
    <?php
    
    global $avia_config;
    
    	if(!function_exists('avia_append_lang_flags'))
    	{
    		//first append search item to main menu
    		add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
    		add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
    		
    		function avia_append_lang_flags( $items, $args )
    		{
    		    if ((is_object($args) && $args->theme_location == 'avia'))
    		    {
    		        global $avia_config, $sitepress;
    		
    		        if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu');
    		        if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items;
    		
    		        $languages = icl_get_languages('skip_missing=0&orderby=custom');
    		
    		        if(is_array($languages))
    		        {
    		            $num_el = $total_el = count($languages);
    
    		            foreach($languages as $lang)
    		            {
    		               $num_el--;
    		                $currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
    		
    		                if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
    
    		                $style = ($num_el != $total_el) ? ' padding-left:5px;' : '';
    		
    		                $items .= "<li class='language_".$lang['language_code']." $currentlang'><a style='padding-right:0;{$style}' href='".$lang['url']."'>";
    		                $items .= "	<span class='language_flag'>".strtoupper($lang['language_code'])."</span>";
    		                if($num_el > 0) $items .= " | ";
    		                $items .= "</a></li>";
    
    		            }
    		        }
    		    }
    		    return $items;
    		}
    	}
    
    

    Then the code should work.

    Regards,
    Peter

    Hi mirokato!

    Wie habt ihr den Domain ausgetauscht? Da sowohl WordPress als auch Enfold auf serialized data zurückgreift, könnt ihr die Domain-Namen nicht einfach in der Datenbank austauschen. Ich persönlich würde empfehlen die Datenbank mit WP MigrateDB oder WP MigrateDB PRO zu exportieren und die alte Domain/URL gegen die neue Domain/URL zu tauschen. Das Plugin sollte dann alle Vorkommen der alten Domain gegen die neue Domain ersetzen. Anschließend mache ein Backup der alten Datenbank, lösche die Daten aus der Datenbank und importiere das SQL File, welches mit dem Plugin erzeugt wurde.

    Best regards,
    Peter

    in reply to: Fullscreen slider disable pause/play #301753

    Hey!

    You can try to hide the play/pause button with this css code – insert it into the quick css field:

    
    #top .avia_playpause_icon{ display: none !important; }
    

    Regards,
    Peter

    in reply to: Help with header position #301751

    Hey!

    Try to use this code instead.

    
    @media only screen and (min-width: 989px) and (max-width: 1499px) {
    .html_header_top.html_header_sticky #main {
    padding-top: 255px !important;
    }}
    

    It should exclude the mobile devices from the css rule. You can also replace 989px with another screen size (i.e. 768px).

    Regards,
    Peter

    in reply to: Revisionary & Avia Layout Builder conflicting #301750

    Hi lomadad!

    No, unfortunately we’re not familiar with the Revisionary plug in and we can’t support it. The template builder supports the default wordpress revision feature though. We use following code (located in wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php ) to restore the default wordpress revisions:

    
    	        function avia_builder_restore_revision( $post_id, $revision_id )
    	        {
    	            //$post     = get_post($post_id);
    	            $revision = get_post($revision_id);
    	            $meta_fields = array('_aviaLayoutBuilderCleanData', '_avia_builder_shortcode_tree');
    	
    	            foreach($meta_fields as $meta_field)
    	            {
    	                $builder_meta_data  = get_metadata( 'post', $revision->ID, $meta_field, true );
    	
    	                if (!empty($builder_meta_data))
    	                {
    	                    update_post_meta($post_id, $meta_field, $builder_meta_data);
    	                }
    	                else
    	                {
    	                    delete_post_meta($post_id, $meta_field);
    	                }
    	            }
    	        }
    

    – maybe it gives you a starting point…

    Best regards,
    Peter

    in reply to: Images in footer too small #301746

    Hi!

    Unfortunately this is not possible without hacking WooCommerce. I found a tutorial which might help you: http://www.terrytsang.com/tutorial/woocommerce/add-sales-end-date-for-woocommerce-product-price/ and you can probably use this code to add a space to to the € sign like:

    
    add_filter( 'woocommerce_get_price_html', 'custom_price_html', 100, 2 );
    function custom_price_html( $price, $product ){
    $price = str_replace("€", "€ ", $price);
    return $price;
    }
    

    If it doesn’t work please contact the WooCommerce developers: https://support.woothemes.com/hc/en-us maybe they can provide a better solution. Unfortunately we don’t have time to help with woocommerce customizations…
    Cheers!
    Peter

    in reply to: Need to adjust Header Size #301739

    Hey!

    Please try this code instead:

    
    @media only screen and (max-width: 520px) {
    .responsive .logo a, .responsive .logo img {
    margin-top: 10px;
    max-width: 300px !important;
    height: auto !important;
    }
    }
    

    Cheers!
    Peter

    in reply to: Permalink issues… #301734

    Hey!

    The WP Countdown Pro breaks the permalinks. I deactivated the plugin and the permalinks work now. Please contact the plugin author and ask him to fix the issue or use an alternative plugin.

    Cheers!
    Peter

    in reply to: Menüänderung für Smartphone und Tablets #301727

    Hey Martin!

    Nein, die Umschaltweite lässt sich leider nicht leicht anpassen. Wir könnten aber das Logo mit einer Media Query verkleinern, sodass das Menü es nicht überlappt:

    
    @media only screen and (max-width: 989px) and (min-width: 768px){
    #top .logo img{
    width: 120px;
    margin-top: 30px;
    }
    }
    

    Regards,
    Peter

    Hey soltner!

    Ich weiß leider auch nicht, welcher Post die genannte Modifikation enthält. Habt ihr vielleicht ein Backup der alten table.php, welche uns als Referenz für die Modifikationen dienen kann? Ihr könnt auch versuchen nach table.php im Forum zu suchen: https://kriesi.at/support/search/table.php/ – vielleicht stoßt ihr über den Post.

    Regards,
    Peter

    in reply to: Accordian and Easy Sliders Not Working #301723

    Hi!

    We’ll fix this warning with the next update. It doesn’t break anything and your website will work even with the warning but obviously it’s not best practice to keep theme code which is not 100% clean and valid. If you need a quick fix you can follow the instructions I posted here: https://kriesi.at/support/topic/accordion-slider-msg-error/#post-299271

    Cheers!
    Peter

    in reply to: WMPL country code instead of flags #301223

    Hi!

    Try to add this code to the theme (or child theme) functions.php file:

    
    
    	if(!function_exists('avia_append_lang_flags'))
    	{
    		//first append search item to main menu
    		add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
    		add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
    		
    		function avia_append_lang_flags( $items, $args )
    		{
    		    if ((is_object($args) && $args->theme_location == 'avia'))
    		    {
    		        global $avia_config, $sitepress;
    		
    		        if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu');
    		        if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items;
    		
    		        $languages = icl_get_languages('skip_missing=0&orderby=custom');
    		
    		        if(is_array($languages))
    		        {
    		            $num_el = $total_el = count($languages);
    
    		            foreach($languages as $lang)
    		            {
    		               $num_el--;
    		                $currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
    		
    		                if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
    
    		                $style = ($num_el != $total_el) ? ' padding-left:5px;' : '';
    		
    		                $items .= "<li class='language_".$lang['language_code']." $currentlang'><a style='padding-right:0;{$style}' href='".$lang['url']."'>";
    		                $items .= "	<span class='language_flag'>".strtoupper($lang['language_code'])."</span>";
    		                if($num_el > 0) $items .= " | ";
    		                $items .= "</a></li>";
    
    		            }
    		        }
    		    }
    		    return $items;
    		}
    	}
    
    

    Best regards,
    Peter

    in reply to: Logo to big on mobile #301221

    Hi Tim!

    Please try to insert this code into the quick css field:

    
    @media only screen and (max-width: 767px){
    .responsive .mobile_slide_out .logo img {
    width: auto !important;
    }
    }
    

    Best regards,
    Peter

    in reply to: google translation plugin #301220

    Hi!

    You can probably use css to change the position – please post a link to your website and we’ll see if we can provide some code to change the position.

    Regards,
    Peter

    in reply to: Page members only #301216

    Hi squaic!

    Enfold or WordPress does not support this feature by default. You can either install a membership plugin like S2Member or http://wp-member.com/ or you can hire a freelancer who can develop a custom membership plugin which fits your requirements.

    Cheers!
    Peter

    in reply to: Blog and Search etc. is not translated #301211

    Hey doze!

    Please try to use the Codestyling plugin to translate or change existing text strings. Download and install the plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate/change the text strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner). You can also use tools like Poedit instead: http://poedit.net/ and oupload the po/mo translation files into the Then upload them into the wp-content/themes/enfold/lang/ folder.

    Best regards,
    Peter

    Hey Ben!

    I’m sorry but the Safari browser for windows is outdated and we don’t support it. Apple discontinued the development for windows with Safari 5 in 2010. The latest version for Apple is 7 and was released 2013. Safari 5 is simply outdated and thus it doesn’t render the website well…

    Regards,
    Peter

    Hi Ingrid!

    Try this code:

    
    #top h1 a, #top h2 a, #top h3 a, #top h4 a, #top h5 a, #top h6 a {
    font-weight: normal;
    font-family:'Open Sans'; 
    }
    

    and replace the font family value if necessary.Don’t forget to clear the browser cache – otherwise you might not notice the changes.

    Cheers!
    Peter

Viewing 30 posts - 2,431 through 2,460 (of 9,352 total)