Forum Replies Created

Viewing 30 posts - 5,461 through 5,490 (of 9,352 total)
  • Author
    Posts
  • in reply to: multiple footer for different templates #215259

    Hey!

    if i change the get_footer in the template-guilder.php, it will change the footer for every page, correct?

    Yes, that’s correct. However you can use conditionals: http://codex.wordpress.org/Conditional_Tags to load different footers on different pages. I.e. Replace this code in template-builder.php

    
    get_footer();
    

    with

    
    
    if(is_page(array(42,54,6))){
    get_footer('miamifooter');
    }else if(is_page(array(4,5,67))){
    get_footer('othercustomtmp');
    }else{
    get_footer();
    }
    

    Then replace 42,54,6 and 4,5,67 with your custom page ids and make sure that the right templates are called. The example code above would use the “miamifooter” template on the pages 42,54 and 6. The “othercustomtmp” is used on 4,5,67 and all other pages will use the default template.

    Regards,
    Peter

    Hey!

    It seems like your website won’t load the font icon files. The network traffic shows that the font files from the google fonts api are loaded but not the icon files. Please try insert this code

    
    	@font-face {
    	font-family: 'entypo-fontello'; font-weight: normal; font-style: normal;
    	src: url('http://www.movers.ru/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=2');
    	src: url('http://www.movers.ru/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=2#iefix') format('embedded-opentype'), 
    	     url('http://www.movers.ru/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=2') format('woff'), 
    	     url('http://www.movers.ru/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=2') format('truetype'), 
    	     url('http://www.movers.ru/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=2#entypo-fontello') format('svg');
    	}
    

    into the quick css field.

    Regards,
    Peter

    in reply to: Black Header / Menu in IE9 #215243

    Hi!

    You can try W3TC: http://wordpress.org/plugins/w3-total-cache/ instead of Better WordPress Minify. Maybe BWM compresses some files incorrectly (i.e. by removing necessary line breaks, etc.) and this may break the scripts.

    Cheers!
    Peter

    in reply to: blog post title removed when link #215231

    Hey!

    Yes but this is an (expected) limitation of the “link” post format. The link post format gives you the possibility to feature ONE link on your blog page (i.e. like here: http://kriesi.at/themes/enfold/blog/page/2/ ). If you want to use a post for multiple links I suggest to use the “standard” post format instead. Then the title will link to another page where you can show an unlimited number of links.

    Best regards,
    Peter

    in reply to: Open link in Lightbox/iframe #215226

    Hi Campleiter!

    You can’t link the entire/slide image to an lightbox iframe popup. However you can select “Slide Link?” – “No Link” and then insert your iframe link into the slide title or description field (both fields support html code). The link must look like

    
    <a href="http://www.google.com?iframe=true&width=100%&height=100%" rel="prettyPhoto[iframes]" title="Google.com opened at 100%">Google.com</a>
    

    and replace http://www.google.com with your url and the title and link text with your custom text. Note that you can not use the slide itself as a link if you add a link to the title/description field . otherwise you would add a link to a link and that’s not a valid html code.

    Regards,
    Peter

    in reply to: No animation on gallery load #215225

    Hi!

    Please try to clear the browser cache – I checked all portfolio pages: http://screencast-o-matic.com/watch/c2VtixnjZG and I didn’t notice a fade in animation. The images pop up as soon as the browser loaded them.

    Regards,
    Peter

    in reply to: Breadcrumbs for Home / Category / Postname #215223

    Hey!

    Great :)

    Cheers!
    Peter

    in reply to: How to make blog posts appear in subdirectory #215222

    Hey Bogusz!

    Afaik you can set a static prefix to your permalinks: http://wordpress.org/support/topic/add-blog-to-url-for-single-posts but this change may effect other post types (including portfolio entries) too.

    Regards,
    Peter

    in reply to: Advanced editors WPML compatibility #215219

    Hey!

    That’s why we added this filter function. I’m not sure why it does not list all translated entries of the current language on your website though. You can try ton insert following code at the bottom of functions.php:

    
        add_action( 'init', 'avia_deactivate_wpml_page_filter', 10);
        function avia_deactivate_wpml_page_filter()
        {
            remove_filter( 'avf_dropdown_post_query', 'avia_wpml_filter_dropdown_post_query', 10, 4);
            add_filter( 'avf_dropdown_post_query', 'avia_custom_wpml_filter_dropdown_post_query', 10, 4);
        }
    
        function avia_custom_wpml_filter_dropdown_post_query($prepare_sql, $table_name, $limit, $element)
        {
            global $wpdb;
            $wpml_lang = ICL_LANGUAGE_CODE;
            $wpml_join = " INNER JOIN {$wpdb->prefix}icl_translations ON {$table_name}.ID = {$wpdb->prefix}icl_translations.element_id ";
            $wpml_where = " {$wpdb->prefix}icl_translations.language_code LIKE '{$wpml_lang}' AND ";
        
            $prepare_sql = "SELECT distinct ID, post_title FROM {$table_name} {$wpml_join} WHERE {$wpml_where} AND post_type = '".$element['subtype']."' ORDER BY post_title ASC";
            return $prepare_sql;
        }
    

    It will list all entries of the current language without any limit (by default Kriesi adds a limit to the sql query to avoid errors on websites with several hundred posts/pages) and without taking care of the post status (published, draft, etc.).

    Regards,
    Peter

    in reply to: Slider & Accordion #215062

    Hi ey3!

    1) You can set the autorotation duration on the option page. Click on the “Fullscreen Slider” element and after the modal window is visible search for the “Slideshow autorotation duration” setting – there you can configure the slideshow speed in seconds.

    2) In wp-content/themes/enfold/js/shortcodes.js replace

    
    thisheading.on('click', function()
    

    with

    
    thisheading.on('hover', function()
    

    However this code customization will probably cause weird side effects and you probably need to implement a script like: http://cherne.net/brian/resources/jquery.hoverIntent.html to use it on a production website – personally I recommend to stick with the default click event because we can’t help you with the implementation of the hoverIntent script.

    Regards,
    Peter

    in reply to: Content Dissapears in Default Editor #215061

    Hey Dan!

    Yes, the advanced layout content and the “default” editor are not compatible with each other. You can use the magic wand icon: http://www.clipular.com/c/4652103171571712.png?k=ws664PuoPbE6Hw-A55RIsFtLcmk if you want to create a shortcode within the default editor. Alternatively you click on the “Advanced Layout Editor” button to switch back to the visual layout builder.

    Regards,
    Peter

    in reply to: Help with optin form #215060

    Hi!

    You can add it to the quick css code.

    Best regards,
    Peter

    Hey!

    1) Ich habe das Problem gefunden. Du hast php code (add_theme_support() Funktion) in das Quick CSS Feld eingefügt. Dieser Code ist natürlich nicht css valide (sondern muss in die functions.php Datei) und hat daher auch den fullwidth Map Code beeinflusst. In das “benutzerdefinierte CSS Klasse” Feld bitte auch keinen CSS Code einfügen sondern nur CSS Klassen. Die kann man dann mittels CSS Code in der Child Theme style.css oder mittels Code im Quick CSS Feld ansprechen. Mehr zu css Klassen: http://www.css-lernen.net/css-klassen.php

    2) Ihr könnt probieren eine fullwidth Sektion zu erstellen (verwendet wieder die Sektion und gebt ihr die ID “fullwidthmap”) und dann zieht ein 2/3 Spalten Element und ein 1/3 Spalten Element hinein. In das 2/3 Element gebt dann die Slideshow und in das 1/3 Element könnt ihr zB eine Widget Area geben. Das Ergebnis wird dann sicher nicht so gut aussehen wie hier http://www.turracherhoehe.at/ , aber ein Versuch ist es wert.

    Cheers!
    Peter

    in reply to: Help with optin form #215049

    Hey Antonio!

    This code:

    
    #top #optinform  input[type="text"]{
    display: inline;
    }
    

    will display the fields in a line. Probably some additional styling is required but it’s a good starting point.

    Regards,
    Peter

    Hey webWahine!

    Kriesi doesn’t use an icon for the toggle symbol but just some css code. If you want to replace it with an icon open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles.php and search for

    
    <span class="vert_icon"></span><span class="hor_icon"></span>
    

    Replace this code with an html img tag ( http://www.w3schools.com/tags/tag_img.asp ) which points to your icon.

    Cheers!
    Peter

    in reply to: Portolio Items #215045

    Hi zanardelligolf!

    Go to Settings > Reading and increase the “Blog pages show at most” value.

    Cheers!
    Peter

    Hey!

    Ja, bitte poste die Zugangsdaten als private reply und ich sehe mir die Sache an.

    Best regards,
    Peter

    in reply to: Portfolio Filters Not Working #215038

    Hey altr!

    Please update your theme to the latest version (2.4.5) and the issue should be fixed. See https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Peter

    Hey!

    Wenn du das “Klassen” Feld verwendest, musst du auch den CSS Code abwandeln – versuche

    
    .fullwidthmap .container { width: 100% !important; }
    

    Best regards,
    Peter

    in reply to: Google AdWords Tracking after Form has been submitted #215024

    Hi!

    No, unfortunately this code does not contain a function which can be triggered by an onclick event. Maybe this code helps you: http://stackoverflow.com/questions/2082129/how-to-track-a-google-adwords-conversion-onclick – you could add the js code snippet to header.php (insert it before the closing tag) and the

    
    trackConv(12345678910,"RLtFCOHMyQcQr7Op0QM");
    

    code must be part of the onclick event (see https://kriesi.at/support/topic/syntax-error-when-adding-tracking-code-to-form-submit-button/ which helps you to add it to the submit button). However I didn’t test it and I’m not sure if it works or not. If you really want to be on the safe side I suggest to hire someone who is familiar with the google adwords api.

    Regards,
    Peter

    in reply to: Gallery won't save selected images #215002

    Hey!

    Great, I’ll leave this thread open (for follow up questions).

    Best regards,
    Peter

    in reply to: Display Portfolio Title in Portfolio Categories #215001

    Hi doublesam27!

    You can use this plugin: http://wordpress.org/plugins/rich-text-tags/ to add html to the description text.

    Cheers!
    Peter

    in reply to: Fatal Errors after Migrating Site #214999

    Hey Lynn!

    I suggest to try this plugin instead: http://wordpress.org/plugins/nextcellent-gallery-nextgen-legacy/ – it uses the old Nextgen 1.9.x branch and should be more stable.

    Regards,
    Peter

    in reply to: Breadcrumbs for Home / Category / Postname #214998

    Hi!

    Please try to insert following code at the bottom of functions.php

    
    if(!function_exists('avia_modify_single_post_breadcrumb'))
    {
        function avia_modify_single_post_breadcrumb($trail)
        {
    	if(!is_single()) return $trail;
    	$category = get_the_category(get_the_ID());
    	if(empty($category)) return $trail;
    	
    	$newtrail = array();
    
            foreach($category as $cat)
            {
                    if(empty($cat->parent))
                    {
    			$category_link = get_category_link($cat->term_id);
    			$newtrail[] = '<a href="'.esc_url( $category_link ).'" title="'.$cat->cat_name.'">'.$cat->cat_name.'</a>';
                    }
            }
    	
    	if(empty($newtrail)) return $trail;
    	array_unshift($newtrail, $trail[0]);
    	$newtrail['trail_end'] = $trail['trail_end'];
            return $newtrail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_single_post_breadcrumb');
    }
    

    Best regards,
    Peter

    in reply to: Hot to remove user reference in posts? #214994

    Hey gentlemansgazette!

    Try to insert following code at the bottom of functions.php

    
    add_filter('avf_exclude_taxonomies', 'avia_exclude_tax', 10, 3);
    function avia_exclude_tax($tax,$post_type,$id){
    $tax[] = 'following_users';
    return $tax;
    }
    

    Regards,
    Peter

    in reply to: Shopp vs Woocommerce integration #214897

    Hey Alexoidea!

    No, unfortunately we have no experience with Shopp. I’ll leave the thread open – maybe another forum user can provide some feedback.

    Regards,
    Peter

    Hi!

    Alternatively you could select the “Don’t show the images at all and display the preview text only” option: http://www.clipular.com/c/6453051829256192.png?k=5TIdSdjsRn87CQytVuQeUU4899A

    By going this way Enfold will stretch the content area of the ajax preview to 100% width and you can use the new space to build your custom layout. I.e. use the the “Easy Slider” shortcode and the “custom link” option for each slide to apply your custom link(s) to the images.

    Regards,
    Peter

    Hi!

    No, but you can deactivate the slideshow links with following css code – insert it into the quick css field

    
    .portfolio-preview-image .avia-slideshow-inner li {
    pointer-events: none;
    }
    

    Regards,
    Peter

    in reply to: "Post_gallery" filter? #214817

    Hey!

    Yes because I don’t want that other user can see the utl to your functions.php file :)

    Regards,
    Peter

    in reply to: Blog page layout / fullwidth masonry / breadcrumb #214812

    Hey!

    You can use the code I posted here: https://kriesi.at/support/topic/breadcrumb-and-blog-title-formatting/#post-214336

    Cheers!
    Peter

Viewing 30 posts - 5,461 through 5,490 (of 9,352 total)