Forum Replies Created

Viewing 30 posts - 23,281 through 23,310 (of 67,510 total)
  • Author
    Posts
  • in reply to: Change size and layout of icon box #1102359

    Hi,

    Thanks for the update.

    You just changed the class attribute name and adjusted the css code above using that particular class attribute (center_icon_box). If you want to create space between the box and the text, add this css code.

    .center_icon_box {
        width: 40% !important;
        float: left !important;
        margin-right: 50px;
    }

    Best regards,
    Ismael

    in reply to: Troubles with BLOG #1102358

    Hi,

    Thanks for the update. And sorry for the confusion.

    In order to make it much more convenient for you, let’s try the following. Create a new page, add a full width submenu to it and take note of the page id because we’re going to use it inside a filter. After creating the page with the full width sub menu element, add this filter in the functions.php file.

    add_action( 'ava_after_main_title', 'ava_after_main_title_mod' );
    function ava_after_main_title_mod() {
        if( ! is_archive() ) return;
    
        $the_id = 4679;
        $post = get_post( $the_id );
        $content = Avia_Builder()->compile_post_content( $post );
    
        echo $content;
    }
    

    Replace the value of the “$the_id” with the actual id of the page with the sub menu element.

    Best regards,
    Ismael

    in reply to: Menu Not Visible #1102357

    Hi,

    That’s not possible, unfortunately. You have to modify the existing taxonomy or archive template files manually, or create your own.

    Best regards,
    Ismael

    in reply to: Sub menu roll out delay #1102356

    Hi,

    Thanks for the update.

    We tested it by changing the duration value to 10000 and it worked. The sub menu container stayed visible for 10 full seconds before disappearing. Please don’t forget to toggle the Performance > File Compression settings, or purge the plugin cache after adjusting the duration value.

    Did you add any custom modification for the menu?

    Best regards,
    Ismael

    in reply to: Back end, front end, not working #1102355

    Hi,

    Thanks for the update.

    The account doesn’t have admin rights. Please change the user role.

    Did you create a development or staging area for this particular site? Please clone the site to a staging site or domain so that we can debug the issue there.

    // https://www.wpbeginner.com/wp-tutorials/how-to-create-staging-environment-for-a-wordpress-site/

    Best regards,
    Ismael

    in reply to: Disable image overlay function? #1102354

    Hi,

    Thanks for the update.

    We have added the following css code in the Quick CSS field.

    .avia-image-overlay-wrap a.avia_image .image-overlay {
        display: none !important;
    }

    Please don’t forget to remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    Hi,

    You have to dequeue or deregister the original js file first, then register the new one or the script file in the child theme.

    // https://developer.wordpress.org/reference/functions/wp_deregister_script/
    // https://developer.wordpress.org/reference/functions/wp_register_script/

    Best regards,
    Ismael

    Hi,

    Please continue here: https://kriesi.at/support/topic/testimonials-gone-and-video-widget/

    We’ll close this one for now.

    Best regards,
    Ismael

    in reply to: Blog setting #1102350

    Hi,

    Thanks for the update.

    This filter should help change the layout of the archive page and display the featured images back.

    //change category page layout to blog single big style
    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-big';
       return $layout;
    }

    Best regards,
    Ismael

    in reply to: error404.php Sprache ändern in de_DE.po #1101785

    Hi,

    Awesome! Glad it worked. Please don’t hesitate to open a new thread if you need anything else.

    And if you have the time, please take a moment to review our theme and show your support https://themeforest.net/downloads
    For future reference, don’t forget to bookmark the Enfold Documentation.

    Have a nice day!

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Sorry about that. I didn’t know that there is a new “Image Effect” option in that element or I just forgot it completely. Anyway, I checked the page and the css code for the white overlay effect is missing. Please add this css code to bring the effect back.

    #top .av-hover-overlay-white.av-caption-style-overlay .av-masonry-item-with-image:hover .av-inner-masonry-content {
        background: rgba(255,255,255,0.35);
    }

    We’ll report the issue. Again, thank you for your patience.

    Best regards,
    Ismael

    in reply to: Menu Not Visible #1101778

    Hi,

    Thanks for the update.

    Are you trying to edit the actual taxonomy or the terms page using the advance layout builder? You can only use the ALB for the posts that belong to the terms inside that taxonomy, not for the taxonomy or the terms page itself. Again, you can’t edit the term, or the taxonomy where it belongs to, using the advance layout builder. You have to edit the taxonomy, category or archive template file for that or create them manually if they don’t exist yet.

    // https://developer.wordpress.org/themes/template-files-section/taxonomy-templates/

    Best regards,
    Ismael

    in reply to: Submenu active menu item #1101770

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Please bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Troubles with BLOG #1101769

    Hi,

    Thanks for the update.

    1.) We forgot to include this css code.

    .fake-thumbnail .slide-image {
        display: none !important;
    }

    The small preview can be removed on the single post page, but the following css code will also affect those posts with featured image.

    .single .small-preview {
        display: none;
    }

    2.) This is an example of the full width sub menu shortcode.

    [av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_switch='av-switch-768' mobile_submenu='' av_uid='']
    [av_submenu_item title='Menu Item 1']
    [av_submenu_item title='Menu Item 2']
    [/av_submenu]
    

    You can wrap that around the do_shortcode function and echo it out in the archive.php file or template. You can find an example of that in the function reference page.

    // https://developer.wordpress.org/reference/functions/do_shortcode/

    Best regards,
    Ismael

    in reply to: masonry gallery transition time – how to change? #1101763

    Hi,

    Thanks for the update.

    Try to remove the “divided by 2” in the transition value.

    hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed/2, 'linear', fadeCallback);
    

    .. change to:

    hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed, 'linear', fadeCallback);
    

    Best regards,
    Ismael

    Hi,

    Is it possible to specifically hide this horizontal gallery only for firefox users?

    Yes, that is possible. You can prepend the “.avia-mozilla” selector to the id or class attribute of the horizontal gallery. Example:

    .avia-mozilla .av-horizontal-gallery { display: none !important; }
    

    Best regards,
    Ismael

    in reply to: Submenu not sticky #1101745

    Hi,

    We would like to apologize for the late response.

    You can remove that code completely, but we’re not sure if it’s going to break something else. Don’t forget to toggle the Performance > File Compression settings after the modification.

    Best regards,
    Ismael

    Hi,

    Alright. Please don’t to hesitate to update us if you need anything else. We’ll close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Personal Token two #1101741

    Hi,

    Thanks for the update.

    You need the latest version of the theme in order for that filter to work properly. Please try to update to version 4.5.7 manually via FTP.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Avia Builder Not Resolving #1101740

    Hi,

    Thanks for the update.

    Did you add any custom scripts on the “Contact” page? Please create a new thread or ticket so that we can close this one. Provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Change size and layout of icon box #1101739

    Hi,

    Thanks for the update.

    You should add the actual iconbox shortcode inside the text block, then turn on the custom css class field so that we can target that specific text block or icon box element directly.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    You can generate the iconbox shortcode from a separate post using the shortcode generator.

    The content of text block should look something like this once you have included the iconbox shortcode plus the actual content that should wrap around the icon box.

    [av_icon_box position='left' icon_style='' boxed='' icon='1' title='IconBox Title' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-29zeuo' custom_class='av_wrap_icon_box']
    Icon Box Text
    [/av_icon_box] Text block content lorem ipsum dolor sit amet i am so osamu andsamu haha
    

    If you noticed, we added the custom_class parameter to the icon box shortcode and added the value “av_wrap_icon_box”. We can use that class attribute to change the style of the icon box.

    #top .iconbox.av_wrap_icon_box {
        width: 50%;
        float: left;
    }

    Best regards,
    Ismael

    in reply to: Cant change widgets or menu #1101736

    Hi,

    Thanks for the update.

    Did you copy that code from your email? Please copy it directly from the forum to avoid the conversion of signs or symbols to their character code.

    Best regards,
    Ismael

    in reply to: Easy Slider – Slide direction #1101735

    Hi,


    @mintsuze
    : You can now find that script in the config-templatebuilder > aviashortcodes > slideshow > slideshow.js file. If you want to override it in your child theme, you have to add the “avia_load_shortcodes” filter and create a new folder called “shortcodes” or whatever path name it is that is set in the filter.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Ismael

    in reply to: Testimonials gone and Video Widget #1101728

    Hi,

    Thanks for the update.

    I don’t have a Safari browser to check this with, so I’ll ask the team to help. Can you provide a screenshot of the page or the facebook video section on Safari?

    Best regards,
    Ismael

    in reply to: Need some custom code #1101725

    Hi,

    We would like to apologize for the late response.

    1.) For that, you can use this css code to adjust the position of the menu items whenever the page scrolled.

    .header-scrolled .avia-menu.av-main-nav-wrap {
        margin-top: 0 !important;
    }

    Make sure that you add it right after this css code.

    .avia-menu.av-main-nav-wrap {
        margin-top: 23px !important;
    }
    

    2.) The layer slider is by default, a full width element, so it pushes the sidebar underneath it. Try to add the layer slider shortcode inside a text or block.

    Best regards,
    Ismael

    in reply to: Mega Menu Styling Issue #1101723

    Hi,

    Thanks for the update.

    It doesn’t work because there’s a PHP code and a random URL inside your Quick CSS field, which is not supposed to be there. The PHP code should be added in the function.php file. This is the code.

    remove_action('tribe_events_single_event_after_the_meta', 'tribe_single_related_events');
    

    And please copy the code directly from the forum instead of your email. That usually converts symbols into their html entity code and the conversion breaks the code.

    We corrected the code. Please check the page again after removing the browser cache.

    Best regards,
    Ismael

    in reply to: ampforwp #1101720

    Hi,

    Thanks for the update.

    The theme is not amp ready yet, but we do have some recommendations on how you can optimize the theme without amp. You can find those in the following article.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Reverse blog post order for specific post types? #1101662

    Hi,

    Awesome. Glad that you a solution. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Reverse blog post order for specific post types? #1101660

    Hi,

    Awesome. Glad that you a solution. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Back end, front end, not working #1101657

    Hi,

    Thanks for the update.

    We can’t figure out the issue. We edited a few files and deactivated the plugins to no avail. We also tried to login in the dashboard but the previous info is no longer valid. Please provide another account so that we can recheck the settings.

    Best regards,
    Ismael

Viewing 30 posts - 23,281 through 23,310 (of 67,510 total)