Forum Replies Created

Viewing 30 posts - 10,591 through 10,620 (of 67,443 total)
  • Author
    Posts
  • in reply to: CTA Color on Mobile #1353748

    Hi,

    Thank you for the update.

    Did you purge the cache or try to check the site on incognito mode? This is how the read more button looks on our end when it is active. (see private field)

    Best regards,
    Ismael

    in reply to: Animate Color Section Background Image #1353745

    Hey bbertuzzi7,

    Thank you for the inquiry.

    This option is not available in the color section, unfortunately. You may need to use one of the theme sliders or create a custom slider using the layer slider plugin.

    Best regards,
    Ismael

    in reply to: Target Blog Post Element Feature image using a tag #1353743

    Hey finchkelsey,

    Thank you for the inquiry.

    You may need to target the post based on its ID.

    Example:

    .slide-entry.post-entry-1570 {
        display: none;
    }
    

    This should hide the post with the ID 1570 in the list.

    Best regards,
    Ismael

    in reply to: Search a specific category in portfolio items. #1353682

    Hi,

    Thank you for the clarification.

    To adjust the query for the default AJAX search field, try to use this filter in the functions.php file.

    
    function avf_modify_ajax_search_query($search_parameters) {
    	if ( is_admin() ) return;
    
        parse_str($search_parameters, $params);
    
        if( is_page('tipos-de-cancer') ) {
    		$params['post_type'] = 'portfolio_entries';
            $params['tax_query'] = array(
                array(
                    'taxonomy' => 'portfolio_entries',
                    'terms'    => 'cancers',
                ),
            );	
    	}
    
        if( is_page('doctors') ) {
    		$params['post_type'] = 'portfolio_entries';
            $params['tax_query'] = array(
                array(
                    'taxonomy' => 'portfolio_entries',
                    'terms'    => 'doctors',
                ),
            );
    	}
    
        $search_parameters = http_build_query($params);
    
    	return $search_parameters;
    }
    
    add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);
    

    Make sure to replace the values in the following lines with the actual names of the portfolio categories.

    'terms'    => 'cancers',
    

    ====== AND ======

    'terms'    => 'doctors',
    

    You may need to adjust or use the actual name of the “doctors” page in this line.

    if( is_page('doctors') ) {
    

    Best regards,
    Ismael

    Hi,

    Sorry about that. We forgot to initialize the $scoll_target_offset. Please look for this line..

    $scoll_target_offset = $(window).width() < 768 ? 10 : 100;
    

    .. and replace it with:

    var $scoll_target_offset = $(window).width() < 768 ? 10 : 100;
    

    This should remove this error.

    Uncaught ReferenceError: $scoll_target_offset is not defined
    

    Best regards,
    Ismael

    in reply to: problems with Pinterest #1353680

    Hi,

    Thank you for the update.

    Did you import the parent theme options? Please import the parent theme options if you haven’t done already, then toggle or temporarily disable the Enfold > Performance > File Compression settings to regenerate the scripts and stylesheets. Make sure to purge the cache afterwards.

    Best regards,
    Ismael

    in reply to: problème d'actualisation suite modification du CSS #1353678

    Hi,

    The changes are immediately reflected in the dynamic_avia stylesheet when we disabled the plugins, but we are not yet sure which plugin is actually causing the issue. Please try to activate the plugins one at a time to find the cause of the problem.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: problème d'actualisation suite modification du CSS #1353677

    Hi,

    The changes are immediately reflected in the dynamic_avia stylesheet when we disabled the plugins, but we are not yet sure which plugin is actually causing the issue. Please try to activate the plugins one at a time to find the cause of the problem.

    Thank you for your patience.

    Best regards,
    Ismael

    Hey fkm,

    Thank you for the inquiry.

    Where did you place the links or buttons for the portfolio overview page? The URL or link of these buttons should contain the custom_ajax parameter and the value should be the ID of the portfolio item that you would like to open on page load.

    Example:

    http://kriesi.at/portfolio?custom_ajax=123
    

    When the button containing this link is clicked, it will redirect to the portfolio overview page and open the portfolio item with the ID 123. Make sure to enable the AJAX portfolio option.

    Best regards,
    Ismael

    in reply to: Enfold-Theme #1353674

    Hi,

    Thank you for the update.

    We were able the access the dashboard but not the theme options because the user is not an admin. Please set the user role to admin so that we can check the settings properly. Did you follow these steps?

    // https://kriesi.at/documentation/enfold/contact-form/#activate-google-captcha

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Make image NOT take up the full column width #1353670

    Hi,

    Should I remove the first code you provided and replace it with this new code or keep both?

    You should keep both. The previous css code will decrease the size of the first and third images, and the other will adjust their position.

    Best regards,
    Ismael

    in reply to: ALB on Custom Page #1353669

    Hey davidfourieza,

    Thank you for the inquiry.

    Unfortunately, this is not possible, the Advance Layout Builder (ALB) can only be enabled for default pages and custom post types. You may need to hire a freelance developer or contact our partner Codeable for further customizations.

    Best regards,
    Ismael

    Hey epkdesign,

    Thank you for the inquiry.

    You use this css code to apply a border to the right side of the first column but it will not look exactly the same as the default sidebar template.

    div .flex_column:first-child {
        border-right-style: solid;
        border-right-width: 1px;
        margin-right: -1px;
        padding-right: 50px;
    }
    

    You can also use this css code to adjust the font color of the widget links.

    #top .widget a {
        color: gray;
    }
    

    Best regards,
    Ismael

    in reply to: Tab section resize #1353660

    Hey jenjo88,

    Thank you for the inquiry.

    This should be possible with a simple css but we will have to inspect the page or element first. Please apply a custom css class name or ID to the tab section element (documentation below), and post the site URL in the private field.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: Tab section resize #1353659

    Hey jenjo88,

    Thank you for the inquiry.

    This should be possible with a simple css but we will have to inspect the page or element first. Please apply a custom css class name or ID to the tab section element (documentation below), and post the site URL in the private field.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: wordwrap #1353656

    Hey Veronika,

    Thank you for the inquiry.

    Adding this css code should break the text by characters instead of words.

    #top h1 a, #top h2 a, #top h3 a, #top h4 a, #top h5 a, #top h6 a {
        word-break: break-all;
    }
    

    Best regards,
    Ismael

    in reply to: Non-clickable area in the upper-region of a website #1353655

    Hi,

    Thank you for following up.

    The layer slider links are not clickable on scroll because the empty header covers them once it sticks at the top edge of the page. To fix the issue, try to edit the page and set the Header visibility and transparency settings to the last option (Hide header on this page).

    Best regards,
    Ismael

    Hi,

    …to something like that?

    Yes, that should work. Try to replace the line with:

    
    $scoll_target_offset = $(window).width() < 768 ? 10 : 100;
    $('html:not(:animated),body:not(:animated)').animate({scrollTop: scoll_target - $scoll_target_offset},200);
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the script.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Masonry custom link doesnt work #1353549

    Hi,

    Thank you for the info.

    The format of the Youtube URL that you are using in the custom links are not valid or is not recognized by the lightbox script. (see private field)

    Best regards,
    Ismael

    in reply to: CTA Color on Mobile #1353547

    Hey navindesigns,

    Thank you for the inquiry.

    We can’t reproduce the issue on our end, but if you are looking to adjust the style of an active button, try to add this code in the Quick CSS field.

    .avia-button.avia-size-large:active, .home #av_section_3 .avia-content-slider-inner .read-more-link a:active, .page-id-167 #av_section_5 .avia-content-slider-inner .read-more-link a:active, #top .av-masonry-load-more:active {
      transform: translateY(-3px);
      color: #ffffff !important;
      border: 2px solid #007ca5 !important;
      background-color: #007ca5 !important;
      text-decoration: none;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    Hey Paul,

    Thank you for the inquiry.

    Is the slider working correctly when you remove the full width submenu element above it? Looks like the slider doesn’t initialize properly on mobile view because of the space or placeholder created by the sticky submenu.

    Best regards,
    Ismael

    Hey solf,

    Thank you for the inquiry.

    We are not yet sure what is causing that issue but it looks like only a single item acquires the category string and it gets duplicated based on the number of entries listed in the page that belongs to the active category sort. For example, if there are 4 items listed in the page that belongs to the active category sort, the item that shows acquires 4 category strings or class names.

    
    <div data-ajax-id="22685" class=" grid-entry flex_column isotope-item all_sort no_margin post-entry post-entry-22685 grid-entry-overview grid-loop-1 grid-parity-odd  push-travel-trolley_sort push-travel-trolley_sort push-travel-trolley_sort push-travel-trolley_sort  av_one_fourth first default_av_fullwidth " style="position: absolute; left: 0px; top: 0px;">
    

    As you can see, the portfolio item 19/90 Monorail Push Travel Trolley contains the class name push-travel-trolley_sort, which has been repeated 4 times.

    Did you modify anything in the theme files?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you remove the logo sub text? We are not seeing it anymore in the site.

    Regarding the mobile view gap, you may need to wrap the previous code inside a css media query so that it only affects the desktop view.

    Example:

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    
    }
    
    

    Place the css modification inside the css media query above.

    Best regards,
    Ismael

    in reply to: PDF wrong name and Portfolio #1353535

    Hey bopartkunsttransporte,

    Thank you for the inquiry.

    In which element did you apply the PDF file as link? Please provide a screenshot of the section containing the element so that we can check it properly.

    If you are using a Button element, just go to the Content > Link Settings toggle, then set the Open in new window settings to the second option (Open in a new window). This will add the target attribute to the element and set its value to _blank, which should open the link in a new tab.

    Best regards,
    Ismael

    in reply to: Video link stopped working #1353534

    Hi,

    but I do not see a Link Settings toggle.

    You have to edit the page, open the gallery element in the Advance Layout Builder, then look for the Advanced > Link Settings toggle. Let us know if you are having difficulty finding the element.

    Best regards,
    Ismael

    in reply to: Non-clickable area in the upper-region of a website #1353533

    Hi,

    Thank you for the info.

    Are you referring to the layer slider links below the banner? The links are working correctly on our end and they are immediately accessible on page load — we checked the site on Chrome Macos.

    Which browser are you using to check the site?

    Best regards,
    Ismael

    in reply to: problème d'actualisation suite modification du CSS #1353532

    Hi,

    Thank you for following up.

    Your server creates copies of the enfold_child.css file in the storage/dynamic_avia and within the /wp-content/uploads/dynamic_avia folder, but it loads the file in the storage/dynamic_avia folder, which is probably not updated or it doesn’t reflect the latest changes. Would you mind asking your hosting provider about this?

    Can we deactivate the plugins temporarily?

    Best regards,
    Ismael

    in reply to: masonry gallery sort option #1353531

    Hey soltner,

    Thank you for the inquiry.

    Did you install any plugin that can sort posts such as the Post Types Order plugin? Please post the login details in the private field so that we can check the issue properly.

    Best regards,
    Ismael

    in reply to: Make image NOT take up the full column width #1353530

    Hi,

    Thank you for the update.

    1.) Try to apply the same background color (#c7c234) directly to the grid row element.

    2.) This css code should help.

    #av-layout-grid-1 .flex_cell:nth-child(3) {
        left: 80px;
    }
    
    #av-layout-grid-1 .flex_cell:nth-child(1) {
        right: 80px;
    }

    Best regards,
    Ismael

    in reply to: spacing footer #1353426

    Hi,

    Glad to know that the modification is working. To adjust the style of the widget text and title, try to add this css code.

    #wrap_all #footer .widget p, #wrap_all #footer.widget li a  {
        font-size: 16px;
        text-transform: initial;
    }
    
    #wrap_all #footer .widget .widgettitle {
        font-size: 24px;
        letter-spacing: 1px;
        text-transform: initial;
    }
    

    And to adjust the text color, try to include this css code.

    .footer_color h3, .footer_color a, .footer_color p, .footer_color strong {
        color: chartreuse;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 10,591 through 10,620 (of 67,443 total)