Forum Replies Created

Viewing 30 posts - 53,371 through 53,400 (of 67,505 total)
  • Author
    Posts
  • in reply to: Add Media stopped working #360560

    Hi!

    I’m sorry but you’re using a very old version of the theme, 2.7, which is not compatible with WordPress 4.0.1. Please download the latest version 3.0.4 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Ismael

    in reply to: Controlling the 'BOiNG' #360559

    Hi!

    Thank you for using Enfold.

    @R: I’m sorry but I can’ reproduce the issue on safari. Can you please provide a screenshot? The simple header switch is intentional because not all users require fancy animation for headers. If you want the animation on the link that you provided, unfortunately, this falls as a custom work and is beyond the scope of support. Please hire a freelance developer to configure the header.

    @adwbtody: Please provide a link to the actual page with the issue.

    Best regards,
    Ismael

    Hi AlexKK!

    Thank you for using Enfold.

    Set the Footer Columns to 4. Add a blank text widget on Footer – Columns 1 and 4. Add the actual widget on Footer – Columns 2 and 3. If you can provide a link to the actual website, we would like to check it.

    Best regards,
    Ismael

    in reply to: JS & CSS error #360554

    Hey yperfre!

    Thank you for using Enfold.

    Can you please deactivate the minify plugin so that we can see the issue?

    Cheers!
    Ismael

    in reply to: Adding ability to stretch and expand view on mobile #360551

    Hey!

    You can only enable the zoom function on mobile device when you disable the responsive layout of the theme. Please go to Enfold > General Layout > Dimensions panel. Disable the Responsive Site setting.

    Cheers!
    Ismael

    in reply to: Themeforest BIG PROBLEM! #360548

    Hi!


    @solljul
    : I’m sorry that you’re having this issue. We haven’t encountered this problem before. If I am not mistaken, there is no download limitation specially for themes because they require frequent update. I’ll ask Kriesi to clarify this.

    @adwbtoday: You can actually update the theme directly on the WordPress dashboard. Go to Enfold > Theme Updates panel. I’m sorry but you’re seem upset. Do you have any issues regarding the theme? You’re posting a lot of negative comments on multiple threads.

    Regards,
    Ismael

    in reply to: wp-content/themes/enfold/css/dynamic-css.php on line 772 #360544

    Hey!

    Please place the Portfolio Grid element inside a 1/1 column layout. This should fix the issue.

    Best regards,
    Ismael

    in reply to: Product Description Not Showing on Mobile #360541

    Hi timihecker!

    Thank you for using Enfold.

    I’m sorry but you’re using an old version of the theme, 3.0, which has some issues with WordPress 4.0.1. Please download the latest version 3.0.4 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: Confusing css using the Multilingual press Plugin #360540

    Hey!

    You can set the page’s Layout to No Sidebar then use Widget Area element as sidebar. Place it in the middle of the grid row elements. If you can provide a screenshot of what you’re trying to accomplish, it’ll help.

    Best regards,
    Ismael

    in reply to: iconbox_top .iconbox_icon CSS #360538

    Hi joanne!

    Thank you for using Enfold.

    You can move the icon with this:

    a.iconbox_icon:before {
    position: relative;
    left: 4px;
    }

    Regards,
    Ismael

    Hi!

    If you want to add the category on the grid blog style, please edit postslider.php. Look for this code:

    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));				

    Replace it with:

    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));				$category = get_the_category($the_id); 
    
                        if(!empty($category))
                        {
                           $output .= '<span class="blog-categories minor-meta">Published '.__('in','avia_framework')." ";
                           $output .= '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a>';			$output .='</span><div class="slide-meta-del">/</div>';	
                        };

    Best regards,
    Ismael

    in reply to: Testimonials #360536

    Hey harrisnext!

    Thank you for using Enfold.

    I’m sorry but this is not possible without major modification on the theme files. Unfortunately, this task is beyond the scope of support. Please hire a freelance developer or visit Envato Studio or Werkpress.

    Regards,
    Ismael

    in reply to: Sticky posts in grid and masonry layouts #360534

    Hi!

    I’m sorry but this is not possible without creating another query for the sticky posts on the config-templatebuilder > avia-shortcodes > masonry_entries.php file. Can you please provide a link to the single author blog posts with the sticky posts issue? We tested this on our installation and it’s only showing the sticky post once.

    Cheers!
    Ismael

    in reply to: Top and Bottom padding is different despite identical value #360524

    Hi axelfx07!

    Thank you for using Enfold.

    We tested this on our end and the padding of the color section looks the same. Can you please provide a link to the actual page with the issue? Yes, you can use the css to modify the color section padding.

    .avia-section-large .content, .avia-section-large .sidebar {
    padding-top: 70px;
    padding-bottom: 70px;
    }

    Cheers!
    Ismael

    in reply to: Paypal Button not being displayed correctly #360523

    Hey!

    Can you please provide the link to the actual page with the issue? Also, place the code of the paypal button on pastebin.com.

    Regards,
    Ismael

    in reply to: Link "Enfold child Averitsing Area" #360521

    Hi bicounet!

    Thank you for using Enfold.

    You can add this on functions.php:

    /**
     * Remove target attribute
     */
    
    add_filter('wp_footer', 'avf_remove_target', 10);
    function avf_remove_target() { ?>
    <script>
    (function($){
        $(window).load(function() {
        	$( ".avia_partner_widget a" ).each(function() {
    			$(this).removeAttr('target');  
    		});
        });
    	
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Logo in Enfold Business Flat demo #360520

    Hey!

    Thank you for using Enfold.


    @javierebollar
    : Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.

    If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!


    @elames
    : Thanks for helping out!

    Cheers!
    Ismael

    Hey!

    You can remove the pagination on the parent page with this on Quick CSS:

    .archive main.template-shop nav.pagination {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Logo Size : max-size doesn't allow any changes #360515

    Hey!

    Thank you for using Enfold.


    @elames
    : Thanks for helping out!


    @avrisar
    : Glad it worked. :)

    Cheers!
    Ismael

    Hey!

    Looks like it’s coming from the NGG plugin. Please add this on Quick CSS:

    .page-id-25 #av_section_1 h3.slide-entry-title.entry-title > a {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Pages with a different header image #360512

    Hi Jason!

    Thank you for using Enfold.

    When you say header image, you mean the logo? You can add this on functions.php:

    add_filter('avf_logo','avf_new_logo_url');
    function avf_new_logo_url($use_image){
    	if(is_page('PAGE NAME OR ID HERE')) {
    		$use_image = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
    	}
    	return $use_image;
    }

    Change the image url then add the page name or id.

    Best regards,
    Ismael

    in reply to: Small boxes above & below images #360509

    Hey!

    The screenshot is private. Please try to use imgur or get the proper dropbox link. It looks like this:

    https://www.dropbox.com/sc/9s409nv3dip1312/AACmD84GVLsDMwPtLlPmXOFNa

    Cheers!
    Ismael

    Hey!

    Why not place the h1 tag on the slider’s caption? Or add the special heading on top of the slider then push it upwards by adding a negative top margin.

    Best regards,
    Ismael

    Hi ecojedi!

    Thank you for using Enfold.

    There is no image limit on the easy slider but adding hundreds of images on one slide will surely affect the page load. Honestly, I haven’t tested more than 10 images on the slider.

    Regards,
    Ismael

    in reply to: Longer excerpts for blog page #359448

    Hey COLORIT!

    Thank you for using Enfold.

    Use this on functions.php:

    function avia_new_excerpt_length( $length ) {
    	return 300;
    }
    add_filter( 'excerpt_length', 'avia_new_excerpt_length' );

    Best regards,
    Ismael

    in reply to: Animated numbers are not responsive #359445

    Hi!

    Thank you for the link.

    Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    strong.heading.avia-animated-number-title span {
    font-size: 20px !important;
    }
    }

    Best regards,
    Ismael

    in reply to: table behavior #359443

    Hi!

    If you want to apply the background on that particular page, you can add the page id selector before the table selectors. Something like this:

    .page-id-3442 .main_color .avia-data-table .avia-highlight-col, .page-id-3442 .main_color table
    

    Do it on all selectors.

    Cheers!
    Ismael

    in reply to: Menu bugs #359442

    Hey!

    Please replace this css code:

    .current-menu-item .avia-menu-text {color: #d1202f!important;}
    

    with this:

    .current-menu-item > .avia-menu-text {color: #d1202f!important;}
    #top #header .av-main-nav > li.current_page_item > a .avia-menu-text { color: #d1202f; }
    

    Regards,
    Ismael

    in reply to: Problem with Submenue on iPad/Tablet #359440

    Hey art9-de!

    Thank you for using Enfold.

    You can move the menu upwards when viewing on mobile device:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    strong.logo {
    display: none;
    }
    }

    Cheers!
    Ismael

    in reply to: Multi author setting #359439

    Hi BootsD!

    Thank you for using Enfold.

    You can register their emails on gravatar.com.

    Cheers!
    Ismael

Viewing 30 posts - 53,371 through 53,400 (of 67,505 total)