Forum Replies Created

Viewing 30 posts - 51,601 through 51,630 (of 67,524 total)
  • Author
    Posts
  • in reply to: Can't change number of gallery rows on gallery feature #396376

    Hi!

    I tested the content on my installation and as it turns out, the portfolio grid element is causing the issue. Please remove the portfolio grid element then update the page. After the update, add the portfolio element back. Check the page again.

    EDIT: It is also not working when AJAX is activated. Edit the config-templatebuilder > avia-shortcodes > gallery.php, look for this code:

    add_action('wp_footer', array($this, 'print_extra_style'));
    

    Replace it with:

    add_action('wp_footer', array($this, 'print_extra_style'), 5);
    

    Regards,
    Ismael

    Hi!

    This is not perfect but it might help. Add the code inside the functions.php file:

    add_action('wp_footer', 'ava_grid_height');
    function ava_grid_height(){
    ?>
    <script>
    (function($){
        $(window).resize(function() {
    		var win		= $(window),
    		calc_height = function() {
    			var winh		= win.height(),
    				header 		= $('#header').height(),
    				title       = $('.title_container').height(),
    				gridh 		= winh - header - title;
    			
    				$('#custom-grid').css('height', gridh/1.5 + 'px');
    		}
    		
    		win.on( 'resize', calc_height);
    		calc_height();
        }).resize();
    })(jQuery);
    </script>
    <?php
    }

    Add a unique id attribute to the grid row element using the For Developers: Section ID field. Use “custom-grid” for example.

    Best regards,
    Ismael

    in reply to: Resizing woes #396364

    Hey!

    Try to place the elements inside a color section then add unique id attribute using the For Developers: Section ID field. Use “custom-section” for example. Add this to the Quick CSS field:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive #custom-section .av_one_half.first + .av_one_fourth, .responsive #custom-section .av_one_half.first + .av_one_fourth + .av_one_fourth, .responsive #custom-section .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive #custom-section .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth, .responsive #custom-section .av_one_fourth.first + .av_one_fourth + .av_one_half {
    margin-left: 0;
    width: 100%;
    }}

    Regards,
    Ismael

    in reply to: Put Enfold Post layout options into LearnDash post #396361

    Hey!

    Look for this line:

    if($post_type == “sfwd-courses” || $post_type == “sfwd-lessons”)
    

    Add the default post:

    if($post_type == "post" || $post_type == “sfwd-courses” || $post_type == “sfwd-lessons”)
    

    Regards,
    Ismael

    in reply to: header background image #396358

    Hi!

    Can you please provide a screenshot of the header design? The header background image(gradient-top-light) is working but it’s too subtle and doesn’t contrast with the site’s background.

    Best regards,
    Ismael

    in reply to: Responsive Issues #396351

    Hey!

    Looks like the footer modification is also visible on desktop view. Please make sure that the modifications are inside the media query. Remove the font-size property here:

    .footer-info {
    color: #888888;
    font-size: 10%;
    }

    If possible, please provide a screenshot of the vertical alignment issue.

    Best regards,
    Ismael

    in reply to: edit tag TITLE on social image profile changed by myself #396350

    Hi!

    Please post the login details here. We would like to check it. Yes, you can add the code on the child theme’s function.php file.

    Best regards,
    Ismael

    in reply to: Transparency menu color #396348

    Hey goranmilo!

    Thank you for using Enfold.

    It’s not working because of this code:

    #top #header .av-main-nav > li > a .avia-menu-text, #top #header .av-main-nav > li > a .avia-menu-subtext {
    color: #ffffff;
    }

    You can remove that or add this to the Quick CSS field:

    #top .header_color.av_header_transparency, #top .header_color.av_header_transparency .phone-info.with_nav span {
    color: red !important;
    }

    Cheers!
    Ismael

    in reply to: Color – Tab container change on mobile device #396345

    Hi!

    Thank you for using Enfold.

    Add this to the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .main_color .active_tab_content {
    background-color: #f2f1ee !important;
    }}

    Cheers!
    Ismael

    in reply to: Mega Menu Bug? #396343

    Hey atef123!

    Thank you for using Enfold.

    Please update the theme to 3.0.8. Post the website url here so that we can check it.

    Regards,
    Ismael

    in reply to: Problem with website running Enfold Theme #396342

    Hi!

    @mbowers: Thanks for helping out. :)

    Best regards,
    Ismael

    in reply to: Take top rated products off single product #396341

    Hi gearouthere!

    Thank you for using Enfold..

    Add this to the Quick CSS field to remove the top rated products widget:

    .postid-2763 section#woocommerce_top_rated_products-2 {
    display: none;
    }

    No, unfortunately, you can’t control the products on the related products section. What you can do is to define or specify cross or up sell products: http://docs.woothemes.com/document/related-products-up-sells-and-cross-sells/

    Cheers!
    Ismael

    in reply to: can I have 2 different logos for transparent/normal header? #396339

    Hey!

    The only way to reproduce what you’re describing is when you scroll down a few pixels slowly. It doesn’t happen when you scroll down normally (as you would scroll when visiting facebook etc). Try to increase the transition:

    .logo img {
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out;
    }

    Best regards,
    Ismael

    in reply to: Table broken #396337

    Hi!

    Make sure that you close the html tags properly. Missing one element will break the layout of the table or the whole site. Anyway, can you please explain what broke? The table looks fine on the frontend.

    Regards,
    Ismael

    in reply to: Advanced Layerslider Permissions #396335

    Hi!

    I tried to login using the credentials above but they’re not working. Please check.

    Regards,
    Ismael

    in reply to: Gigya working with Enfold #396334

    Hey stunna42!

    Thank you for using Enfold.

    Have you tried it on a code block element? Unfortunately, we don’t provide support for third party plugins. Please contact the plugin author.

    Regards,
    Ismael

    Hi HeartGLO1!

    Thank you for using Enfold.

    We can’t reproduce the issue on our installation. The offset is working as expected. Make sure that you’re using the latest version of the theme, 3.0.8. Why not create a special category for the post slider called “ecards” for example? Select this category instead of showing all categories.

    Regards,
    Ismael

    in reply to: Page with Grid Portfolio shows "Nothing Found" #396329

    Hi!

    I tried to login to the site but wp-login and wp-admin is now working. Please check.

    Regards,
    Ismael

    in reply to: Gallery Thumbnails Loading Delayed #396328

    Hey JadynWelch01!

    Thank you for using Enfold.

    Add this code to the Quick CSS field to disable gallery loading animation:

    .avia_transform .avia-gallery-thumb img {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    }

    Regards,
    Ismael

    in reply to: Different header logo on some pages only #396327

    Hey!

    Thank you for using Enfold.

    Yes, you can use that code on functions.php. Use is_page for pages and has_term conditional function for portfolio categories. Refer to these links:

    http://codex.wordpress.org/Function_Reference/has_term
    http://codex.wordpress.org/Conditional_Tags#A_PAGE_Page

    Best regards,
    Ismael

    in reply to: Captcha style is broken #396326

    Hi!

    Add this:

    a#recaptcha_whatsthis_btn {
    overflow: visible !important;
    }
    
    a#recaptcha_whatsthis_btn:before {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: #810200 !important;
    bottom: -7px;
    position: absolute;
    z-index: 1000;
    }

    Best regards,
    Ismael

    in reply to: Magazine Element – dates on selected categories? #396325

    Hey!

    If you want to show the date only for the “news” category, edit config-templatebuilder > avia-shortcodes > magazine.php. Look for this code:

    $time = get_the_time(get_option('date_format'), $entry->ID);
    

    Replace it with:

    if(has_term('news', 'portfolio_entries', $entry->ID))$time = get_the_time(get_option('date_format'), $entry->ID);
    

    If you’re using the “news’ category for news portfolio items, leave the term as it is. If not, replace it with the proper term or portfolio category name. Unfortunately, you can’t show the actual event date without proper modification on the theme. You can add custom fields then edit the same file.

    Best regards,
    Ismael

    in reply to: masonry gallery : add link to download #396322

    Hey goch!

    Thank you for using Enfold.

    The lightbox script is using the large thumbnail size found on Settings > Media panel. Adjust the max width and max height to 9999 then regenerate the thumbnails using this plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: Problem with images loading in easy slider #396321

    Hey!

    We tested this plugin on our installation and it works. It should preload and prevent other images from loading when they are not inside the viewport. https://wordpress.org/plugins/rocket-lazy-load/

    For what it’s worth, this is the screenshot:

    Best regards,
    Ismael

    in reply to: Move telephone/my account/social icons #396317

    Hi!

    Adjust the code. Replace it with this:

    @media only screen and (min-width: 989px) {
    #header_meta .container {
    width: 29%!important;
    float: right;
    top: 65px;
    right: 25%;
    position: relative;
    }
    
    #header_meta {
    margin-top: -30px;
    }
    
    .html_header_top.html_header_topbar_active.html_header_sticky.html_bottom_nav_header #top #main {
    padding-top: 125px;
    }}

    Regards,
    Ismael

    in reply to: Double elements appearing #396312

    Hey!

    I think you gave us a different website url. The issue is happening on this page: http://forum-produktion.automotiveit.eu/referenten

    I accessed the site but I can’t find the page with the issue.

    Best regards,
    Ismael

    in reply to: Events Calendar styling #396311

    Hey!

    You can edit config-templatebuilder > avia-shortcodes > events_upcoming.php, look for this code on line 141:

    $output .= "<span class='av-upcoming-event-schedule'>".tribe_events_event_schedule_details($entry)."</span>";
    

    Replace it with:

    $eventshed = tribe_events_event_schedule_details($entry);
    							$output .= "<span class='av-upcoming-event-schedule'>".str_replace('@', '-', $eventshed)."</span>";
    

    Best regards,
    Ismael

    in reply to: BLOG Page #396310

    Hi!

    If you want to disable the link of the post title, use this on the Quick CSS field:

    h2.post-title.entry-title a {
    pointer-events: none !important;
    }

    I’m sorry but what you’re after requires custom modifications that are beyond the scope of support. Please hire a freelance developer.or visit Envato Studio and Werkpress for further modifications.

    Best regards,
    Ismael

    in reply to: Team Member Short Code Deleting Elements #396304

    Hi!

    Thank you for the info. Do you have a test page that we can check? I’m sorry but we can’t reproduce the issue on our installation.

    Cheers!
    Ismael

    in reply to: Bug on Media Entries Page #396303

    Hi atrixdave!

    Thank you for using Enfold.

    We can’t reproduce the issue no our installation. Make sure that you have the latest version of the theme, 3.0.8. Did you add any filter hooks to the functions.php file called avf_title_args?

    Best regards,
    Ismael

Viewing 30 posts - 51,601 through 51,630 (of 67,524 total)