Forum Replies Created

Viewing 30 posts - 57,301 through 57,330 (of 67,197 total)
  • Author
    Posts
  • in reply to: Magazine replace date with price #288546

    Hey Roy!

    Thank you for using the theme.

    This is possible but you’ll need to modify the theme files. Edit config-templatebuilder > avia-shortcodes > magazine.php, find this code on line 571:

    $output .= 		"<div class='av-magazine-content-wrap'>";
    			$output .=		"<header class='entry-content-header'>";
    			$output .=			"<time class='av-magazine-time updated' {$markupTime}>".$time."</time>";
    			$output .=			$separator.$author;
    			$output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";
    			$output .= 		"</header>";
    if($excerpt)$output .=		"<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}</div>";
    			$output .= 		"</div>";
    			$output .= 		"<footer class='entry-footer'></footer>";
    			$output .= "</article>";

    Replace it with:

    global $product;
    			$product = new WC_Product( $entry->ID );
    			$price = $product->price;
    		
    			$output .= 		"<div class='av-magazine-content-wrap'>";
    			$output .=		"<header class='entry-content-header'>";
    			$output .=			"<time class='av-magazine-time updated' {$markupTime}>$ ".$price."</time>";
    			$output .=			$separator.$author;
    			$output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";
    			$output .= 		"</header>";
    if($excerpt)$output .=		"<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}</div>";
    			$output .= 		"</div>";
    			$output .= 		"<footer class='entry-footer'></footer>";
    			$output .= "</article>";

    Cheers!
    Ismael

    in reply to: No featured image on translated entries #288533

    Hi!

    Thank you for the info.

    I’m not sure why the featured images are acting that way but please add this on custom.css:

    .small-preview img, .big-preview img {
    display: block;
    border-radius: 4px;
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    }

    You can also add it on Enfold (ES) and Enfold (CA) Quick CSS fields.

    Best regards,
    Ismael

    in reply to: Homepage text not outline #288527

    Hey!

    The link you provided lead us to a Page. You can’t add category to pages unless you’re using a plugin. Create another page called “producten”, then set this page as Parent page of “Tafels” page.

    Cheers!
    Ismael

    in reply to: HTML characters in Contact Form sender #288522

    Hi!

    Thank you for the update.

    Do you mind if we take a look at the actual website? Please post the contact page url here.

    Best regards,
    Ismael

    in reply to: Icons as squares #288521

    Hi!

    Thank you for the info.

    I’m really sorry but you need to update the theme to the latest version to make it compatible with WP 3.9.1. Please use a child theme next time if you’re planning to modify the theme.

    Cheers!
    Ismael

    in reply to: Fullwidth Slider #288519

    Hey!

    Thank you for using the theme!

    Please add this on Quick CSS or custom.css:

    .avia-fullscreen-slider .avia-slideshow>ul>li {
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    }

    Adjust the slider wrap when viewing on mobile devices:

    @media only screen and (max-width: 480px) {
    .avia-builder-el-0.av-minimum-height-100 .container, .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow {
    height: 200px;
    }
    ]

    Regards,
    Ismael

    Hi originaltours!

    Thank you so much for using the theme.

    What is the password? Are you using the Blog Posts element? Try to edit the loop-index.php file inside the includes folder.

    Best regards,
    Ismael

    in reply to: Portfolio grid problem after update to 2.8.1 #288514

    Hi!

    Thank you for the info.

    If you want to disable the image overlay, you can use this on Quick CSS or custom.css:

    span.image-overlay.overlay-type-extern {
    display: none !important;
    }

    Regards,
    Ismael

    Hi!

    Glad the logo is fixed.

    I’m not sure if I’m following the thread correctly but the content looks fine on portrait and landscape view. Can you please provide a screenshot? You can use imgur, dropbox, clipular etc.

    Cheers!
    Ismael

    in reply to: Adding your own Icon Fonts with child theme #288512

    Hi!

    Thank you for the info.

    Please try to ask your host to enable the php ZipArchive class.

    Cheers!
    Ismael

    in reply to: Toggles IE 11 #288506

    Hey!

    If I am not mistaken, IE 11 defaults to compatibility view and there is no compatibility button. Anyway, I’m not sure if this is going to work but in theory this should force the browser to render the site using the newest possible IE version. Edit header.php, find this code on line 13:

    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    

    On top of it, add this:

    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    

    Again, the toggle is working on IE11.

    Regards,
    Ismael

    in reply to: Separator / Whitespace controls #288488

    Hi!

    Yes, it’s best that you do this using a child theme. Add the code on the child theme’s function.php. Actually, just look for this code:

    /**
     *	Turn on Custom CSS Class field for all Avia Layout Builder elements
     *	@link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
     */
    	//add_theme_support('avia_template_builder_custom_css');

    Replace it with:

    /**
     *	Turn on Custom CSS Class field for all Avia Layout Builder elements
     *	@link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
     */
    	add_theme_support('avia_template_builder_custom_css');

    Cheers!
    Ismael

    in reply to: Layer Slider #288010

    Hey Finlando!

    Thank you for using the theme.

    Please edit the page then remove the Layer Slider element or choose the new sliders.

    Best regards,
    Ismael

    in reply to: Fatal Error in blog post #288009

    Hey!

    We’ll keep the thread open. Let us know if it fix the issue.

    Best regards,
    Ismael

    in reply to: Tool Tip Hover text #288006

    Hi!

    Thank you for the update. Sorry that you’re having this issue.

    Looks like you removed the pages with these kind of issues. We really need to inspect the website first hand in order to provide a possible fix. Try to increase the wordpress php memory limit. Add the following lines on the wp-config.php file located at the root of wp directory:

    define( 'WP_MEMORY_LIMIT', '128M' );
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );

    Cheers!
    Ismael

    Hey!

    Thank you for using the theme.

    To be honest, we really can’t provide advance support for these plugins as stated on our support policy. As Yigit stated there are various styling issues when using the Formidable. We suggest that you try both plugins’ demo then pick which ones suit you best.

    Cheers!
    Ismael

    Hi!4

    Thank you for the update.

    I enabled the WP Seo plugin and the advance layout builder is still working. Maybe a combination of your plugins are causing the issue. Activate them one at a time to find the culprit.

    http://reseauweb.fr/wp-admin/post.php?post=100&action=edit&lang=fr&message=1

    Cheers!
    Ismael

    in reply to: 2 – BlogPost Meta – Categories VS Author #287997

    Hey!

    Thank you for the access.

    What blog style are you planning to use? Please duplicate the includes folder on the child theme then place the loop-index.php. Edit the file, look for this code:

    echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
                echo $content;
                echo '</div>';

    Replace it with this:

    echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
                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>';
    			}
                echo '</div>';

    Best regards,
    Ismael

    in reply to: Toggles IE 11 #287990

    Hi ykblue!

    Thank you for using the theme!

    The site looks ok on IE11. Please try to remove all browser extension then check it again:

    Regards,
    Ismael

    in reply to: Testimonial Layout #287843

    Hey foking!

    Thank you for visiting the support forum!

    Please add this on Quick CSS or custom.css:

    div.avia-testimonial-meta {
    margin: 0;
    }
    
    div.avia-testimonial-image {
    float: right;
    }

    Cheers!
    Ismael

    in reply to: Seitentitel immer anzeigen lassen #287842

    Hey!

    Thank you for the info.

    This is possible but you should not enable the shrinking header option. Add this on Quick CSS or custom.css:

    div.stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
    position: fixed;
    z-index: 1000;
    border-bottom: 1px solid;
    }

    Cheers!
    Ismael

    in reply to: Video-Portfolio in Lightbox with Sublines #287841

    Hey Banqo!

    Thank you for using the theme.

    I see that you’re using the ajax portfolio to add a video plus description. It’ll be a good solution for now because the latest patch of Enfold will include a new a kind of lightbox. PrettyPhoto will be replaced by Magnific PopUp plugin.

    Cheers!
    Ismael

    Hey 2waybrasil!

    Thank you for using the theme!

    If you want to use a standalone version of the layer slider plugin, please add this on functions.php:

    add_theme_support('deactivate_layerslider')
    

    You can now install the layer slider on the Plugins panel.

    Regards,
    Ismael

    in reply to: Separator / Whitespace controls #287837

    Hi fgrippe!

    Thank you for using the theme!

    You can add a unique selector on any avia elements including the horizontal rule. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit the horizontal rule, add a custom css selector. For example, we’ll use “awesome-hr”. Add this on Quick CSS or custom.css to change the margin and height of that specific hr element:

    div.hr.awesome-hr {
    margin: 10px 0;
    height: 10px;
    line-height: 10px;
    }

    Regards,
    Ismael

    in reply to: Change portfolio-item url? #287834

    Hi!

    Thank you for using the theme!

    Please go to Settings > Permalinks, look for the Portfolio Items Base.

    Regards,
    Ismael

    in reply to: Custom shortcodes in Accordion title? #287831

    Hi!

    Thank you for using the theme.

    If I am not mistaken, you should use [shortcode1] not [image1] in order to call the shortcode function image1.

    Cheers!
    Ismael

    in reply to: Editing google fonts does not work with some lines #287827

    Hi!

    There is not testimonial element below the magazine overview but you can use this:

    div.avia-testimonial_inner, div.avia-testimonial_inner > * {
    font-family: "Source Code Pro", arial, sans-serif;;
    }

    Regards,
    Ismael

    in reply to: Portfolio items #287817

    Hi Charlie999!

    Thank you for using the theme.

    You can adjust the padding of the portfolio items:

    #top .grid-entry.isotope-item {
    z-index: 2;
    padding: 10px;
    }

    Regards,
    Ismael

    in reply to: form creation #287814

    Hey!

    A lot of users are using the Gravity Forms plugin so I’ll go with it but you can try both.

    Best regards,
    Ismael

    in reply to: How to make font size smaller in footer widgets #287811

    Hey Mkieling!

    Thank you for using the theme!

    Please use this on Quick CSS or custom.css:

    .footer_color a,  .footer_color p, .footer_color {
    font-size: 13px;
    }

    Regards,
    Ismael

Viewing 30 posts - 57,301 through 57,330 (of 67,197 total)