Forum Replies Created

Viewing 30 posts - 38,221 through 38,250 (of 66,745 total)
  • Author
    Posts
  • Hi,

    Thank you for the update.

    1.) The class attribute is there now and the only thing missing is the css styling. Please add the following code in the Quick CSS field and adjust the color value as you wish.

    .current-page-ancestor .avia-menu-text {
        color: green;
    }
    

    2.) I’m not so sure what you meant by that because the code should disable the hover effect.

    3.) Which text or element would you like to apply the font? Please provide a specific element so that we can give you the proper selector. Or provide a link to the page.

    4.) I don’t know of any plugin that will create an automatic option in the theme so you have to make use of the existing font options or use the plugins above but you still have to specify the font-family property in the Quick CSS field or the style.css file. For example, if you want to change the body or the paragraph text, you can add something like the following.

    body, body p {
       font-family: "nameofthefont";
       font-weight: 300;
    }

    If possible, please create a different post for each inquiry. Thank you!

    Best regards,
    Ismael

    in reply to: Enfold Blog layout do not work in English Language #717368

    Hi,

    Please follow the instructions here. http://kriesi.at/documentation/enfold/how-to-register-a-google-maps-api-key/

    Best regards,
    Ismael

    in reply to: Zoom in Images #717365

    Hey AboveDigital,

    Thank you for using Enfold.

    1.) Could you please provide a screenshot? Are you referring to the color section background? You can set the “Background Repeat” to “Scale to Fit” but it will contain the image and it won’t span full width.

    2.) Please add this in the Quick CSS field.

    .header_color .container_wrap_meta {
        background: transparent;
    }

    Best regards,
    Ismael

    in reply to: Plugin conflict WP Polls – Enfold #717364

    Hi,

    I checked the page but the advance layout builder is not loading properly. Please increase the memory limit to at least 128M.

    // http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Full Screen Slider Stopped Displaying youtube video. #717363

    Hi,

    We got these errors in the console.

    4QTIkBrEYL0?rel=0&enablejsapi=1&wmode=opaque:10 Uncaught ReferenceError: ytcfg is not defined(…)
    2016-11-27 12:07:14.928 rYjGANQeoX0?rel=0&enablejsapi=1&wmode=opaque:10 Uncaught ReferenceError: ytcfg is not defined(…)
    2016-11-27 12:07:14.931 TuK0oHdbO-0?rel=0&enablejsapi=1&wmode=opaque:10 Uncaught ReferenceError: ytcfg is not defined(…)
    2016-11-27 12:07:14.934 XiN8WQ-0Fbc?rel=0&enablejsapi=1&wmode=opaque:10 Uncaught ReferenceError: ytcfg is not defined(…)
    2016-11-27 12:07:14.938 XZjiDwCyoM0?rel=0&enablejsapi=1&wmode=opaque:10 Uncaught ReferenceError: ytcfg is not defined(…)
    2016-11-27 12:07:16.283 livesite.js?1480219:32 [LiveSite] [DEPRECATION] Some of the LiveSite CSS classes have changed and will soon be removed, type LiveSite.deprecationInfo() in console for more information.warn @ livesite.js?1480219:32
    

    Please try to deactivate every plugins then check the page again.

    Best regards,
    Ismael

    in reply to: Custom taxonomy #717362

    Hi,

    The “Portfolio Grid” element is created to display “portfolio” items and nothing else. You have to use the “Blog Posts” element if you want to display items from a different taxonomy or post type.

    Best regards,
    Ismael

    Hi,

    You can move the testimonial image above the text in order to create more space for it.

    .avia-testimonial-image {
        float: none;
        margin: 0 auto 10px auto;
    }
    
    .avia-testimonial-meta {
        margin-left: 0;
    }

    Best regards,
    Ismael

    in reply to: Productimages Woocommerce review-order.php #717359

    Hi,

    I’m very sorry for the confusion. You can actually override the templates as described in the link (https://docs.woocommerce.com/document/template-structure/). However, the theme configures the templates via hooks and filters. Do you have a cache plugin? Make sure that you’re not looking on a cached version of the site. The modification above should create a new column for the product thumbnail. We added this block of codes:

    
    <td class="product-thumb">
                                <?php $thumb = get_the_post_thumbnail_url($_product->id, 'shop_catalog'); ?>
                                <?php
                                    if(!empty($thumb)) {
                                        echo "<img src='{$thumb}' width='80px' height='100px'/>";
                                    }
                                ?></td>
    

    Best regards,
    Ismael

    in reply to: Blog tags on bottom of post #716690

    Hey!

    Please add this in the functions.php file.

    add_action('ava_after_content', function($id, $content) {
    	if(is_single()){
    		$categories = get_the_category();
    		$separator = ' ';
    		$output = '';
    		if ( ! empty( $categories ) ) {
    		    foreach( $categories as $category ) {
    		        $output .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</a>' . $separator;
    		    }
    		    echo trim( $output, $separator );
    		}
    	}
    });

    Best regards,
    Ismael

    in reply to: Replicate Header are above menu. #716685

    Hey!

    We need a way to lick the mountains to the bottom of the .top-header without them following up the logo as the logo shrinks in size.

    I’m sorry but what do you mean by “lick the mountains to the bottom of the .top-header “? If you want the vertical alignment of the logo to be at the bottom of the top-header container, please try this css code.

    .top-header {
        min-height: 500px;
        background-image: url(https://www.ptmi.net/wp-content/themes/pacifictrail/assets/images/header.jpg);
        background-size: cover;
        position: relative;
    }
    
    .top-header-logo {
        text-align: center;
        padding: 50px 0;
        display: block;
        bottom: 0;
        position: absolute;
    }

    These css declarations exist in the style.css file, I just added a few css properties. Use a css media query if you want to apply it on smaller screens.

    Best regards,
    Ismael

    Hey!

    You have to modify the single.php file template directly and add the modification as inline css. Are you using the advance layout builder for posts or just the default editor? If you’re using the default editor, edit the single.php file, look for this code:

    <div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    

    Cheers!
    Ismael

    in reply to: Enfold breaks any youtube video embeds #716682

    Hi Peter!

    Thank you for using Enfold.

    We replied on another thread. https://kriesi.at/support/topic/enfold-youtube-preview-image/#post-716662

    Please follow the simple instruction there and update us here.

    Best regards,
    Ismael

    in reply to: Bilder Farben verändert nach dem hochladen #716681

    Hi Olly!

    Thank you for using Enfold.

    I’m sorry but I don’t see any issue with the images. They all look great. Could you please explain the issue further or provide a screenshot so that we can understand it better?

    Best regards,
    Ismael

    in reply to: Replace social icons with text #716675

    Hi,

    The text is displaying. Please check it on another computer. This is the css modification.

    #top .av-logo-container .social_bookmarks .avia_hidden_link_text {
        display: block;
    }

    Best regards,
    Ismael

    in reply to: Transparent header in all single post #716672

    Hi,

    Thank you for the update.

    Please add this in the functions.php file.

    add_action( 'after_setup_theme', 'enfold_customization_product_switch' );
    function enfold_customization_product_switch(){
    	add_filter('avf_builder_elements', 'avf_builder_elements_mod');
    }
    
    function avf_builder_elements_mod($elements)
    {
        $screen = get_current_screen();
        if( 'post' == $screen->id  )  {
            $counter = 0;
            foreach($elements as $element)
            {
            	if($element['id'] == 'header_transparency')  {
                    $elements[$counter]['std'] = 'header_transparent';
                }
    
                $counter++;
            }
        }
    	return $elements;
    }

    Best regards,
    Ismael

    in reply to: Portfolio Sorting Disappeared #716668

    Hey Taryn,

    Thank you for using Enfold.

    Did you add any modifications to the theme? Please try to deactivate the plugins.

    Best regards,
    Ismael

    in reply to: Anchors not working on mobile #716666

    Hi,

    Thank you for the info. Please try the solution provided in the following link.

    // https://kriesi.at/support/topic/page-anchors-on-mobile-devices/#post-698195

    Or post the ftp details here so that we can do a few tests. Are you using the columns’ “Mobile display” option?

    Best regards,
    Ismael

    in reply to: Accordion Slider: Place Text When Open #716665

    Hey raythecreator,

    Thank you for using Enfold.

    I’m sorry but you cannot add a text on that area. You can only specify the Caption Title and the Caption Text. The captions are going to be positioned in the dark transparent area.

    Best regards,
    Ismael

    Hi,

    We have reported the issue to Kriesi. Please post the FTP details here so that we can do a few tests.

    Best regards,
    Ismael

    in reply to: Enfold Youtube Preview Image #716662

    Hi,

    It’s a “mixed content” issue. Please adjust the youtube url and replace “http” with “https”.

    Best regards,
    Ismael

    in reply to: Mobile Fixed Background Image #716659

    Hey leoadmin,

    Thank you for using Enfold.

    Most mobile devices do not support the “background-attachment: fixed” property due to performance issues.

    Fixed-backgrounds have huge repaint cost and decimate scrolling performance, which is, I believe, why it was disabled. – @PaulIrish:

    There’s a workaround but I’m not sure if it is going to work.

    // http://stackoverflow.com/questions/16009035/fixed-position-background-on-ios

    Best regards,
    Ismael

    in reply to: Blog Comments Form – Fields in Wrong Order #716653

    Hi,

    Great! Thanks for the update. :)

    Best regards,
    Ismael

    in reply to: Possible AJAX conflict with Events Calendar (Pro) #716652

    Hey EastBayMeditation,

    Thank you for using Enfold.

    I’m not sure what could be causing the issue. Have you asked the tribe support team? I’m sure they’ll know what those logs mean.

    Best regards,
    Ismael

    Hi,

    It seems that Enfold’s CSS is sending the text to a second line “earlier” than what it should. Can’t a CSS code fix this?

    The text should wrap on a single line as long as there is enough space. The text in safari looks a little thick compare to chrome or firefox. Maybe, you can decrease the font size by 1px or decrease the side padding of the grid content.

    .grid-content {
        padding: 20px 10px;
    }

    Best regards,
    Ismael

    in reply to: Layerslider – no build wanted on the slides #716650

    Hi,

    I don’t see any delay with the layers but if you’re referring to the “short blink” when the slide transitions, that’s quite normal if the transitions or animations are disabled.

    Best regards,
    Ismael

    in reply to: Blog view distorted – only when one post per column #716649

    Hi,

    Thank you for the info. Please replace the code with the following.

    // Add Signature Image after single post
    add_filter('the_content','add_signature', 1);
    function add_signature($text) {
     	global $post;
     	if(($post->post_type == 'post') && is_single()) 
        $text .= '<div class="signature"><img src="http://www.houseofhuber.net/wp-content/uploads/2016/11/Signature_Nad_3_resize_small.jpg"></div>';
        return $text;
    }

    Best regards,
    Ismael

    in reply to: Blog using LAYOUT BUILDER #716648

    Hi,

    Yes, my bad. Please use this css code to remove the date and comments in the page and archives.

    .page .comment-container, .page .date-container, .archive .comment-container, .archive .date-container {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: WAIT PAGE WITH COLOR SECTION #716307

    Hi!

    Could you please provide a screenshot of the issue? The site looks fine on emulation. What is the actual model of your iPhone? If you’re testing on an iPhone with retina display, you should double or triple the size of the background images.

    Cheers!
    Ismael

    in reply to: Mega menu font disappears #716305

    Hi!

    The site is using a very old version of the theme, 3.5.2,which is not compatible with the latest version of WordPress. Please update the theme to version 3.8.1.

    Regards,
    Ismael

    in reply to: One of my pages is not responsive on iPhone #716304

    Hey!

    How do I get the API code….or whatever the new process is to update the theme?

    This should help with that. http://kriesi.at/archives/the-complete-guide-to-updating-enfold > How to Update Enfold via the WordPress Backend

    Best regards,
    Ismael

Viewing 30 posts - 38,221 through 38,250 (of 66,745 total)