Forum Replies Created

Viewing 30 posts - 45,571 through 45,600 (of 66,126 total)
  • Author
    Posts
  • in reply to: Headline rotator not working right #504475

    Hi!

    This seems to be a little bug in the rotator css styling. The font size property of the av-rotator-container-inner container is set to inherit but since there is no designated font size property applied to its parent element, it inherits the font size property of the body tag. Please edit css > shortcodes.css, look for this code:

    #top .av-rotator-container-inner{position: relative; line-height: 1.1em; margin:0; font-weight:300; text-transform:none; color:inherit; font-size: inherit;}
    

    ..replace it with:

    #top .av-rotator-container-inner{position: relative; line-height: 1.1em; margin:0; font-weight:300; text-transform:none; color:inherit;}
    

    We removed the font size property.

    Cheers!
    Ismael

    in reply to: My account ICON #504474

    Hey!

    Please replace the code in the functions.php file with this:

    // add account icon
    add_action('avia_meta_header', function() {
    	echo '<a class="mobile-account" href="#"><span class="av_font_icon avia_animate_when_visible av-icon-style-  av-no-color avia-icon-pos-left  avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span></a>';	
    });

    You can use the same css selector to adjust the position of the icon.

    .mobile-account {
        position: absolute;
        top: 0;
        right: 120px;
    }

    Adjust the values.

    Best regards,
    Ismael

    Hey!

    It’s basically the same as the first filter. Example:

    function avf_magazine_entries_query_mod($query, $params) {
        $query['category__not_in'] = array( 27, 18 );
        return $query;
    }
    add_filter('avf_magazine_entries_query','avf_magazine_entries_query_mod');

    Best regards,
    Ismael

    in reply to: Category archive page: change layout to show excerpt #504472

    Hey!

    Add this in the functions.php file:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-small';
    return $layout;
    }

    It will set the blog style of the category pages to single author, small preview style.

    Best regards,
    Ismael

    Hey!

    Alright. Please follow the following steps:

    1.) Add this code in the theme’s functions.php file:

    #
    # wrap single product image in an extra div
    #
    
    function avia_add_image_div() {
     echo "<div class='single-product-main-image alpha'>";
    }
    
    function avia_close_image_div() {
     echo "</div>";
    }
    
    #
    # wrap single product summary in an extra div
    #
    
    function avia_add_summary_div() {
     echo "<div class='single-product-summary'>";
    }
    
    function avia_close_summary_div() {
     echo "</div>"; //close out the summary
     get_sidebar();
    }
    
    function avf_product_sidebar_layout_mod($layout){
     if( is_single() )$layout = "sidebar_right";
     return $layout;
    }
    
    add_action('init', 'ava_product_sidebar_mod');
    function ava_product_sidebar_mod() {
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25 );
     add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3 );
     add_filter( 'avf_product_sidebar_layout', 'avf_product_sidebar_layout_mod', 5);
    }

    2.) Edit config-woocommerce > config.php then look for this code around line 573:

    $sidebar_setting = avia_layout_class( 'main' , false );
    

    .. replace it with:

    $sidebar_setting = apply_filters( 'avf_product_sidebar_layout', avia_layout_class( 'main' , false ) );
    

    3.) Add this in the Quick CSS field or css > custom.css file:

    .single-product .template-shop .product {
    width: 68%;
    margin-right: 4%;
    clear: none;
    float: left;
    }

    4.) Smile. :)

    Done.
    Cheers!
    Ismael

    in reply to: Place an image betwen the top of page and the header #503885

    Hi!

    You can check the test page here: http://idetox.voyage/testfullscreen/

    Check the codes on Quick CSS and header.php file.

    Best regards,
    Ismael

    in reply to: Archive Category Page Sort Order #503874

    Hi!

    Thank you for the info. Try to change the “order” parameter to “ASC” instead of “DESC”.

    Best regards,
    Ismael

    in reply to: Page Title Always Shows "Home" #503873

    Hey!

    The site is not using the latest version of the theme. Please update to the latest version, 3.3.2. Did you add any modifications in the functions.php file?

    Regards,
    Ismael

    in reply to: Color Section & PrintFriendly & sidebar #503872

    Hi!

    Glad you found a solution! Thanks for sharing the final settings. :)

    Best regards,
    Ismael

    in reply to: Upcoming Events Plugin #503869

    Hey!

    Add this below the code we mentioned on the previous post:

    $excerpt = $entry->post_excerpt;
    							$output .= "<span class='av-upcoming-event-excerpt'>{$excerpt}</span>";
    

    Make sure that you add a summary in the events’ excerpt box. Replace post_excerpt with post_content if you want to show the event’s whole content.

    Best regards,
    Ismael

    in reply to: Sub Level nav help #503863

    Hi!

    Can you please provide a link to the actual page? We would like to check it. Try to use the “.active-parent-item” class selector.

    Cheers!
    Ismael

    in reply to: Replace Archive for category with category title only #503860

    Hi vemaybayanz!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
    function avf_change_which_archive($output)
    {
    	if(is_category()) {
    		$output = single_cat_title('',false);
    	}
    	return $output;
    }

    Cheers!
    Ismael

    in reply to: Increase height of item in masonry #503858

    Hey!

    You can use this to change the height of the image:

    .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
        padding-bottom: 130%;
    }

    Best regards,
    Ismael

    in reply to: WooCommerce checkout page – moving few things around #503856

    Hi Edna!

    Thank you for using Enfold.

    1.) Use this in the Quick CSS field to move the field:

    #top .checkout .col-2 {
        clear: both;
        float: left;
    }

    2.) Add this code:

    #customer_details {
        width: 48%;
        float: left;
    }
    
    #top .checkout .col-1, #top .checkout .col-2 {
        width: 100%;
    }
    
    #order_review, #order_review_heading {
        clear: none;
        float: left;
        width: 48%;
        margin-left: 2%;
    }

    Best regards,
    Ismael

    in reply to: ENFOLD – making Toggle Object sticky to bottom #503852

    Hi!

    Add this in the Quick CSS field:

    .loesungseinstieg {
        position: fixed;
        bottom: 0;
        z-index: 9999;
        max-width: 90%;
        width: 1400px;
    }

    Remove this css code:

    .av_toggle_section {
        bottom: 0px;
        position: fixed;
    }

    Regards,
    Ismael

    in reply to: Change height images masonry Perfect Grid #503851

    Hi!

    Not sure what you mean by that. You only need to add a tag called landscape and portrait. That is the only way to change the orientation of the images, unfortunately.

    Cheers!
    Ismael

    in reply to: Place an image betwen the top of page and the header #503850

    Hey!

    The code should be enough to make it work. Again, we would like to ask for the login details so that we can add the code for you.

    Regards,
    Ismael

    in reply to: Creative layout #503844

    Hey maaike!

    Thank you for using Enfold.

    There is no word cloud element by default so you will have to create it manually. Try the examples provided here:

    http://mistic100.github.io/jQCloud/
    http://onwebdev.blogspot.com/2011/05/css-word-cloud.html

    Best regards,
    Ismael

    in reply to: Jquery noconflict + Plus Gallery Sort order not working… #503842

    Hey!

    Where did you get the code for this playlist? Is this a plugin? Please try to contact the plugin developer for more info regarding the issue.

    Cheers!
    Ismael

    in reply to: Sort portfolio from a to z #503841

    Hey!

    I just realized that the solution above might not work in your installation. Please use this instead:

    add_action( 'pre_get_posts', 'pre_get_posts_post' );
    
    function pre_get_posts_post( $query )
    {	
    	
    	if( $query->is_main_query() && is_category( array(8, 12) ) ) {
    		$query->set('orderby', array('meta_value' => 'ASC', 'title' => 'ASC'));
    	}
        return $query;
    }

    Again, you can change the ids in the is_category function.

    Best regards,
    Ismael

    Hey ventoetc!

    Thank you for using Enfold.

    There are too many plugins installed in the site. One of these plugins, in combination with gravity form, is probably causing the issue. Please try to deactivate all plugins then test the builder again.

    Cheers!
    Ismael

    in reply to: Featured images full size #503838

    Hi!

    Yes, that should work as well. Make sure to create a change log of the code modifications just in case.

    Best regards,
    Ismael

    in reply to: Welcome. this is the new shop banner, how to edit ? #503835

    Hi BetuwePC!

    Thank you for using Enfold.

    Please go to Enfold > Shop Options then look for the Main Shop Page Banner option. If you have a custom shop page, just add a color section at the very top of the page then set a background image.

    Best regards,
    Ismael

    in reply to: Page in widget mod based on page id #503834

    Hi WSRJohn!

    Thank you for using Enfold.

    I don’t think this is possible with the theme and the plugin that you used has not been updated for over 2 years which makes it incompatible with the latest version of WordPress. Unfortunately, I don’t know of any plugin that can accomplish this. You might need to add the content of another page manually. Or you can try this plugin: https://wordpress.org/plugins/rps-include-content/

    Cheers!
    Ismael

    in reply to: Social share buttons #503829

    Hey midischool!

    Thank you for using Enfold.

    The social share element will fetch the current url of the page, in this case, https://www.midischool.com/?p=6609. I’m sorry but I don’t think this is going to work the way you expected. Please use a third party plugin or script that will work in the current setup of the page.

    Regards,
    Ismael

    in reply to: Adding animation to media in text block #503828

    Hi dabellator!

    Thank you for using Enfold.

    Can you please provide a screenshot of the layout? Use imgur or dropbox. You can use the icon list then set the images as background image via Quick CSS field. Something like this:

    .avia-icon-list:nth-child(1) .iconlist_icon {
        background-image: url('IMAGE URL HERE');
        background-color: black;
    }
    
    .avia-icon-list:nth-child(2) .iconlist_icon {
        background-image: url('IMAGE URL HERE');
        background-color: green;
    }

    Cheers!
    Ismael

    in reply to: Full Width Sub Menu button not working on mobile device #503827

    Hey JPOsteen!

    Thank you for using Enfold.

    Please edit the menu item then change the url to http://jeanpaulosteen.com/#contact instead of http://jeanpaulosteen.com/home/#contact.

    Regards,
    Ismael

    in reply to: ALIGN CENTER TEXT FIELD FORM #503824

    Hi mleite1!

    Thank you for using Enfold.

    Please add this in the Quick CSS field:

    .wpcf7-form {
        text-align: center;
    }

    Cheers!
    Ismael

    in reply to: Can't embed video #503822

    Hey!

    Please go to the text block again then switch to Text or HTML mode before adding the embed or iframe code.

    Best regards,
    Ismael

    in reply to: Display socket but not logo or menu #503820

    Hi tammybauer!

    Thank you for using Enfold.

    Please edit the page then look for Layout > Header visibility and transparency. Select “Hide header on this page”.

    Best regards,
    Ismael

Viewing 30 posts - 45,571 through 45,600 (of 66,126 total)