Forum Replies Created

Viewing 30 posts - 5,881 through 5,910 (of 9,352 total)
  • Author
    Posts
  • in reply to: Multilingual Press Pro + Enfold + Multisite #205863

    Hey german_photographer!

    Tbh I didn’t find enough spare time to test the plugin with Enfold yet. The developers of Multilingual Press Pro cooperate with us though and if you find an issue we’ll look into it.

    However please note that 1) we can’t promise or guarantee that Multilingual Press Pro works with Enfold and 2) we can’t promise that we’ll fix any reported incompatibility issue. Unfortunately such incompatibility issues are often very hard to debug and/or hard to fix and it simply doesn’t justify the effort in most cases – especially because Multilingual Press Pro is not as popular as WPML.

    Regards,
    Peter

    in reply to: Licensing für Multisite #205854

    Hey german_photographer!

    You must purchase a license for each wordpress installation or multisite blog. If you use Enfold on two multisite blogs (or subdomains) you need to purchase two separate licenses. An alternative would be to buy an extended license but obviously it’s a waste of money in your case.

    Regards,
    Peter

    in reply to: Please contribute and translate Enfold #205796

    Hi!

    Awesome – thank you. I managed to merge all changes and translations and we’ll include the with the next update.

    Cheers!
    Peter

    in reply to: Display Portfolio based on Tag #205790

    Hey!

    Try to insert following code at the bottom of functions.php (or insert it into the child theme functions.php file):

    
    
    add_filter('avia_post_slide_query','avia_add_post_type_to_query', 10, 2);
    function avia_add_post_type_to_query($query, $params)
    {
    $id = get_the_ID();
    if(7503 == (int)$id){
     $query['post_type'] = 'portfolio';
    }
    return $query;
    }
    

    You maybe need to replace the id of 7503 with another page id. This entry: http://designinsidechicago.com/portfolio/logan-square-chicago-interior-design-project-photos/ has the id 7503.

    Regards,
    Peter

    Hi!

    1) You can set a logo height for smaller screens with a media query – i.e. insert following code into the quick css field

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

    2) The list item icons size won’t change – regardless of the screen resolution. The main reason is that the user wouldn’t be able to see the icon with a reduced font size.

    3) The post slider image size changes because Kriesi turns a 4 column grid into a 2 column grid if the user views the website with a low resolution. The main reason is that a 4 column grid would make the content unreadable in certain cases. If you want to keep the 4 column structure insert following code into the quick css field

    
    @media only screen and (max-width: 767px){
    .responsive #top .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top .avia-content-slider-odd .slide-entry.slide-parity-even {
    margin-left: 4%;
    clear: none;
    }
    
    .responsive #top .slide-entry {
    width: 20%;
    margin-left: 4%;
    }
    }
    

    Regards,
    Peter

    in reply to: little problem list:/ #205781

    Hi!

    Update – I just noticed you mean the link which then shows the shipping cost form. You can always display it with following css code

    
    .shipping-calculator-form{
    display: block !important;
    }
    

    Cheers!
    Peter

    in reply to: little problem list:/ #205779

    Hi!

    Re 1) Because the WooCommerce shop plugin uses a custom template for the shop pages and this custom template does not support our template builder. If you want to feature some products on the homepage you can use the “Product Slider” or “Product Grid” elements in your advanced layout. Combining the Layerslider with the shop page is not possible.

    Re 6) If you just want to remove the sidebar on the blog page without extending the blog with use following code

    
    #top.blog #main .sidebar {
    display: none;
    }
    

    If you want to use a white bg color for all table rows insert following code into the quick css field

    
    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
    background: #fff;
    }
    

    Re “The second point is that in Germany, the point “forward to card” always stands below right, not left. How can I just witch those two blocks with eachother? So that “calculate delivery charges” is always left and cart amount block is always right.” and “carting out the point “calculate delivery charges”.

    We just use the default WooCommerce checkout template and you probably need to modify it somehow. If you purchased a woocommerce extension I suggest to contact the WooCommerce plugin developers ( http://www.woothemes.com/support/ ) – maybe they can help you for free. Otherwise you can try to hire someone to modify the checkout templates for you – i.e. here: http://www.microlancer.com/ or here: http://kriesi.at/contact/customization

    The same applies to the carting out issue – you would need to modify the php code or write a js code to pre-select the right dropdown item. CSS won’t help in this case.

    Regards,
    Peter

    in reply to: Portfolio View #205772

    Hi!

    No, this is currently not possible and this feature would require some theme code customization (especially in enfold/config-templatebuilder/avia-shortcodes/postslider.php and maybe in /wp-content/themes/enfold/js/shortcodes.js). Depending on your coding skills you might want to hire a freelancer here http://www.microlancer.com/ or here: http://kriesi.at/contact/customization

    Best regards,
    Peter

    in reply to: Color section > at least 40% #205767

    Hey oliviad!

    Yes, open up enfold\config-templatebuilder\avia-shortcodes\section.php and replace

    
    					array(
    						"name" 	=> __("Section Minimum Height",'avia_framework' ),
    						"id" 	=> "min_height",
    						"desc"  => __("Define a minimum height for the section. Content within the section will be centered vertically within the section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "",
    						"subtype" => apply_filters('avf_template_builder_section_height',array(   __('No minimum height, use content within section to define Section height','avia_framework' )	=>'',
    						                      __('At least 100% of Browser Window height','avia_framework' )=>'100',
    						                      __('At least 75% of Browser Window height','avia_framework' )	=>'75',
    											  __('At least 50% of Browser Window height','avia_framework' )	=>'50',
    											  __('At least 25% of Browser Window height','avia_framework' )	=>'25',
    						                  ))
    				    ),
    

    with

    
    					array(
    						"name" 	=> __("Section Minimum Height",'avia_framework' ),
    						"id" 	=> "min_height",
    						"desc"  => __("Define a minimum height for the section. Content within the section will be centered vertically within the section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "",
    						"subtype" => array(   __('No minimum height, use content within section to define Section height','avia_framework' )	=>'',
    						                      __('At least 100% of Browser Window height','avia_framework' )=>'100',
    						                      __('At least 75% of Browser Window height','avia_framework' )	=>'75',
    											  __('At least 50% of Browser Window height','avia_framework' )	=>'50',
    											  __('At least 40% of Browser Window height','avia_framework' )	=>'40',
    											  __('At least 25% of Browser Window height','avia_framework' )	=>'25',
    						                  )
    				    ),
    

    Then open up enfold\js\shortcodes.js and replace

    
    css += ".av-minimum-height-25 .container {height:"+wh25+"px;}\n";
    

    with

    
    var wh40		= Math.round( wh100 * 0.4 );
    css += ".av-minimum-height-40 .container {height:"+wh40+"px;}\n";
    

    Cheers!
    Peter

    Hey klabuz!

    Did you try to clear the IE11 browser cache? If the browser caches the dynamic stylesheet then it won’t notice that new styling code exists. This article: http://pcsupport.about.com/od/maintenance/ht/deltempintfilesie.htm shows you how to clear the cache.

    Best regards,
    Peter

    in reply to: Breadcrumb-Navigation #205583

    Hi klabuz!

    The breadcrumb does not query the menu items but it shows the page or category hierarchy. If you want a structure like Homepage/Datascience/Datamanagement you need to set the “Datascience” page as “parent page” for the “Datamanagement” page. WordPress has an option for the page hierarchy on the Edit / Add New Page screen under the heading Page Attributes. From here, you can easily choose a “Parent” page from a drop-down of published pages. This will change the URL structure of your page, and it will also force breadcrumbs to display the proper page hierarchy!

    Cheers!
    Peter

    in reply to: How can I update my Enfold theme? #205568

    Hi tredition!

    I recommend to update the files with ftp – see: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Peter

    in reply to: Portfolio entries, error 404 #205554

    Hey!

    I couldn’t get the portfolio slugs to work on your server (with or without WPML). It seems like your server won’t accept any new rewrite rules and I see no way to register the portfolio post type slug. I deactivated the rewrite rules for portfolio items now – at least you can use them without 404 errors. The disadvantage is that you won’t be able to use portfolio entries with “pretty permalinks”. I added following code to the child theme functions.php

    
    add_filter('avf_portfolio_cpt_args','avia_deactivate_portfolio_slug_rewrite', 10, 1);
    function avia_deactivate_portfolio_slug_rewrite($args)
    {
      $args['rewrite'] = false;
      return $args;
    }
    

    Best regards,
    Peter

    in reply to: Blog Full Width Question #205547

    Hi!

    The code in your custom.css file is not correct ( http://www.ilkoallexandroff.com/wp-content/themes/enfold/css/custom.css?ver=1 ). Replace

    
    & gt;
    

    with

    
    > 
    

    Regards,
    Peter

    in reply to: To add music to pages #205544

    Hey fjrichart!

    Afaik you an use the default wordpress player: http://make.wordpress.org/core/2013/04/08/audio-video-support-in-core/ to embed audio. The shortcode looks like

    
    [audio src="audio-source.mp3"]
    

    However I’m not sure if the player will start to play the music automatically (tbh many users don’t like background music anyway and personally I also think it’s a bad practice). If you want a “background music player” you can try: http://wordpress.org/plugins/audiobar/ or http://wordpress.org/plugins/wp-music/ – note that I didn’t test the plugins and they might not work with Enfold or WP3.8.

    Best regards,
    Peter

    in reply to: Enfold 2.5 #205542

    Hi oslpag!

    No, there’s currently no public beta version of the theme. Some threads mention 2.5 but it was actually a mistake and Kriesi released the 2.4.4 update as 2.5 and then upload the files with the right version number (2.4.4). 2.5 is reserved for the next “big” feature update.

    Best regards,
    Peter

    in reply to: BuddyPress vs BBpress #205541

    Hey!

    The “white screen” issue is probably caused by the php memory limit. Try to increase the laaocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Regards,
    Peter

    in reply to: Social button skype gives error #205366

    Hi hgroen!

    The social icons do not support “skype calls” like the official skype buttons (which use javascript to start the skype app). You can just use them to link to websites/profiles (i.e. to a public skype profile page if such a webpage exists). I’m not familiar with skype though and maybe the icon doesn’t make much sense for this service (yet).

    Edit: I found this article: http://developer.skype.com/skype-uris – you can try to insert a link which doesn’t use the http:// protocol but which uses the skype suffix like

    
    skype:USERNAME?call
    

    Best regards,
    Peter

    in reply to: Contact form doesn't send me a mail #205361

    Hi!

    Glad you solved the problem :)

    Cheers!
    Peter

    in reply to: create portafolio entry and 404 error #205360

    Hey!

    No, I just configured WPML and saved the permalinks again (Settings > Permalinks).

    Cheers!
    Peter

    Hi!

    No, you can’t use the menu for the masonry filter without a heavy theme code customization. Ifyou really need such a feature I recommend to hire a freelancer. However you can try this plugin: http://wordpress.org/plugins/taxonomy-terms-order/ to order the categories/terms and this plugin: http://wordpress.org/plugins/post-types-order/ to order the entries of the portfolio post type or standard posts, etc.

    Regards,
    Peter

    in reply to: Contact page settings missing address and Contact field #205301

    Hi!

    It seems like you’re using a theme which was not created by us (called “blackpearl”). Please switch to Enfold (or any other Kriesi theme) and we’ll look into it.

    Regards,
    Peter

    in reply to: home page spacing #205299

    Hey!

    Following css code should work

    
    #top.page-id-18 .avia_message_box.avia-size-normal {
    margin-bottom: 10px;
    }
    

    Best regards,
    Peter

    in reply to: Portfolio entries, error 404 #205298

    Hi p_niedrich!

    Another user reported a similar issue and I posted a solution here: https://kriesi.at/support/topic/create-portafolio-entry-and-404-error/#post-205295

    Install the WPML string translation extension and go to the option page: http://berlinguitartrio.de/wp-admin/admin.php?page=wpml-translation-management%2Fmenu%2Fmain.php&sm=mcsetup&admin_bar=1

    You’ll then see some text fields which help you to translate the portfolio slug ( http://www.clipular.com/c/5427218738053120.png?k=-y-mKIbXukjXaOL7CJjwBrDPQLE ). You must also configure the default slug on the “Settings > Permalinks” page. Afterwards save all settings (WPML and permalink settings) and the portfolio items should work.

    Regards,
    Peter

    in reply to: create portafolio entry and 404 error #205295

    Hi!

    I think it works now. I had to set a translation for the portfolio items slug here: http://coronatolive.com/wp-admin/admin.php?page=wpml-translation-management%2Fmenu%2Fmain.php&sm=mcsetup&lang=en&admin_bar=1

    –> screenshot: http://www.clipular.com/c/5427218738053120.png?k=-y-mKIbXukjXaOL7CJjwBrDPQLE

    You can change the slug/translations if you want but don’t use spaces or special characters. Underscores _ or -, etc. are allowed.

    Regards,
    Peter

    Hi hughjames!

    Actually the page is not random but it depends on the masonry grid items. If the entry (i.e.: http://subterranea.net/vusa2/products/caroline-avenue-gd-50060/ ) is part of the masonry grid ( http://subterranea.net/vusa2/vanities/ ) the breadcrumb will show a link to the masonry grid page ( Home / Vanities / Caroline Avenue GD-50060). If the entry is not part of the masonry grid (i.e. http://subterranea.net/vusa2/products/alexis-ps-265/ ) it will show a link to the product category instead (Home / Faucets / Alexis PS-265). You’ve two possibilities.

    1) Since WP3.8 and Enfold 2.4.4 you can restrict the prev/next entry button to the same category of the current post. If you want to activate this feature insert following code into your child theme functions.php file or insert it at the bottom of enfold/functions.php:

    
    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }
    

    2) Or deactivate the “masonry page” breadcrumb link – then all entries will show a link to the product/portfolio category and the breadcrumb will be consistent for all entries. In this case insert following code into your child theme functions.php file or insert it at the bottom of enfold/functions.php:

    
    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }
    

    Regards,
    Peter

    Hi!

    If you want to overwrite an existing shortcode create a “shortcodes” folder within the child theme directory, then copy the /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow.php into the child theme “shortcodes” folder and modify the php code (see Ismaels post). Then add following code into the child theme functions.php file

    
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }
    

    This code will make sure the the shortcode file of the child theme is loaded first and you can overwrite the parent theme slideshow shortcode file with the child theme.

    Best regards,
    Peter

    in reply to: SEO #205093

    Hi!

    Try to use an array with page ids instead –

    
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_product()) $args['heading'] = 'strong';
    if (is_page(array(42,43,44))) $args['heading'] = 'strong';
    return $args;
    }
    

    and replace 42,43,44 with your page id(s) and separate them with a comma.

    Cheers!
    Peter

    in reply to: To select Custom Sort Order for Portfolio Items #205010

    Hi!

    No, this is not possible (at least not with the current theme version). Tbh I don’t see the advantage of such a feature because it won’t increase the performance of the portfolio and it would probably even give you a strange “flash” effect when the page is loaded. I marked this thread for Kriesi though – maybe he wants to implement it in a future update but I haven’t seen many requests regarding this feature yet (maybe 3-5 users requested it so far and there’re definitely more popular feature requests out there which have an higher priority).

    Cheers!
    Peter

    in reply to: Subscribe to Forum. #205005

    Hey german_photographer!

    No, afaik there’s no feed for topic or forum entries. The default blog feed url is http://kriesi.at/feed/

    Best regards,
    Peter

Viewing 30 posts - 5,881 through 5,910 (of 9,352 total)