Forum Replies Created

Viewing 30 posts - 22,441 through 22,470 (of 66,745 total)
  • Author
    Posts
  • in reply to: Add slogan next to Logo #1104430

    Hi,

    Thanks for the update.

    Just add the font-size property for the h1 element.

    #top #wrap_all #text-7 .textwidget h1 {
        font-weight: 300;
        font-size: 16px;
    }

    Wrap that css code inside a css media query.

    Best regards,
    Ismael

    in reply to: New menu item in secondary menu isn't displayed #1104429

    Hi,

    Thanks for the update.

    Did you add the “Wat cliënten zeggen” in the main menu? It has to be added there. It’s currently not included in the main menu. We’d like to check it but the login token has already expired.

    Best regards,
    Ismael

    Hi,

    Thank you for update.

    It’s actually the opacity of the masonry items. Try this css code.

    .avia_desktop .av-hover-overlay-active .av-masonry-image-container {
        opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Navigation not working on mobile #1104425

    Hi,

    Odd. It doesn’t render the rest of the menu items, only the “home” page. Did you modify the header.php file or any template files in the child theme? Please upgrade the theme to version 4.5.7 and update the template files.

    Thanks for the update.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You should adjust the top margin of the main or content container to prevent the header from covering it.

    @media only screen and (max-width: 767px) {
    .responsive #top #main {
        margin-top: 80px!important;
    }
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You should be able to select the thumbnail size in the “Slideshow Image Size” settings. However, we’re not sure why it doesn’t work or display the actual thumbnail in your installation.

    Anyway, you should consider resizing the images based on the standard screen resolutions.

    // http://gs.statcounter.com/screen-resolution-stats

    Best regards,
    Ismael

    Hi,

    We are very sorry for the late reply.

    1.) Is there a test page where we can see the 1px border issue? A screenshot will help as well.

    2.) We can’t reproduce the issue in the gallery. The current container limit is set to 1310px and the masonry images are displaying as they should.

    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

    Hi,

    Thanks for the update.

    Is this an old page or site? The “header” custom field for those pages are set to “no”. We removed the value for one of the pages. (see private field)

    Best regards,
    Ismael

    in reply to: Image hover effect on mobile #1104410

    Hi,

    Thanks for the update.

    Is the site live? We need to inspect the masonry element. Did you toggle the Performance > File Compression settings after adding the suggested css code?

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You don’t need to add the “iframe” parameter or set it true. Just add the image and the theme will automatically detect it or open it in a lightbox container. The image has to be in jpg or png format. Where are you testing this? Please create a test page with the masonry element.

    Best regards,
    Ismael

    in reply to: FB debug tool cached on 4.5.6 Enfold update #1104399

    Hi,

    Thanks for the update.

    You need an access token before you can use the graph API or access any posts info with it.

    // https://developers.facebook.com/docs/graph-api/overview
    // https://developers.facebook.com/docs/facebook-login/access-tokens

    The debugger or scraper works fine.

    // https://developers.facebook.com/tools/debug

    Use the post url in the field.

    Best regards,
    Ismael

    in reply to: CHANGE WOOCOMMERCE PRODUCT-CAT ORDER #1104397

    Hi,

    We are very sorry for the late response.

    You should be able to move the content of the product archive pages using hooks.

    Example:

    remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );
    add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 40 );
    add_action( 'woocommerce_after_main_content', 'woocommerce_product_archive_description', 40 );
    

    That code should move the description below the product grid.

    Best regards,
    Ismael

    in reply to: Troubles with BLOG #1104396

    Hi,

    Thanks for the update.

    If you want to know the id of the page, just edit it and look at the url. You should see the “post” parameter and its value. That’s the id of the page. Example:

    http://www.site.at/wp-admin/post.php?post=8412&action=edit&classic-editor=1
    

    The ID of the page in that example is 8412.

    We updated the code in the functions.php file.

    add_action( 'ava_after_main_title', 'ava_after_main_title_mod' );
    function ava_after_main_title_mod() {
    	$the_id = null;
    
    	if( is_archive() ) {
    		$the_id = 8416;
    	} else if( is_category() ) {
    		$the_id = 8420;
    	} else if( is_page(600) ) {
    		$the_id = 8412;
    	} 
    
    	$post = get_post( $the_id );
    
    	if( ! $post instanceof WP_Post ) {	
    		return false;	
        }
    
    	$content = Avia_Builder()->compile_post_content( $post );
    	echo $content;
    }
    

    Best regards,
    Ismael

    in reply to: Fixed Frame > Content alignment in the tab section #1104395

    Hi,

    Odd. It seems to be working when we check it in the browser inspector. Please post the login details in the private field so that we can inspect the issue further.

    Thanks for the update.

    Best regards,
    Ismael

    in reply to: Request for help with article categories #1104393

    Hi,

    Thanks for the update.

    Yes, that is normal. It is possible to manually adjust the archive or category template and display the sub categories instead of the articles, but that is something we can’t help you with. Please hire a freelance developer or contact our partner, Codeable.

    More info about template creation in WordPress:

    // https://developer.wordpress.org/themes/basics/template-hierarchy/#category

    Best regards,
    Ismael

    Hi,

    Glad to hear. We’ll close this thread then.

    Einen schönen Tag noch!

    Best regards,
    Ismael

    in reply to: How to add a custom field to a portfolio with ACF? " #1104389

    Hi,

    Thanks for the update.

    Looks for this code around line 709:

    $output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
    

    Replace it with:

    $acf_provacat = get_field('provacategorie');
    $output .= "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt.$acf_provacat."</div>";
    

    That should render the value of the provacategorie inside the excerpt container. If you want to place another custom field below the feature image, look for this line:

    $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
    

    Just assign the custom field in a variable and render it inside the container as shown above.

    Best regards,
    Ismael

    Hey Ullrich,

    Thanks for the update.

    We manually set the background color of the 1/1 column to #ffffff or white, instead of using the default theme color which was somehow used in the frontend even if it’s not set.

    Best regards,
    Ismael

    in reply to: Text not in line #1104386

    Hi,

    We would like to apologize for the late response.

    The login info seems to be invalid. Please check it carefully. If possible, we would like to ask you to create a new thread because this one is getting a bit too long and is actually off the original topic. We will continue there.

    Best regards,
    Ismaelz

    Hi,

    Sorry for the confusion.

    The post or product navigation is created using the “get_adjacent_post” function and as the name suggests, it retrieves the next/previous post. The default order is by date, but you can use the “get_{$adjacent}_post_sort” filter to change it. The $adjacent refers to the type of adjacency, which is either “next” or “previous”.

    Example:

    function avf_get_previous_post_sort_mod( $sort ) {
    	if ( 'product' === get_post_type() )
    		return "ORDER BY p.post_title DESC LIMIT 1";
    	else
    		return $sort;
    }
    add_filter( 'get_previous_post_sort', 'avf_get_previous_post_sort_mod' );

    That should sort the previous post by title instead of date.

    Best regards,
    Ismael

    in reply to: Adjustments with Events Calendar plugin #1103546

    Hey Niklas,

    Thank you for using Enfold.

    1.) You cannot modify the calendar page using the advance layout builder, so you can’t add a color section. It’s possible but you have to modify the calendar template file manually, which is not something we can help you with.

    2.) Use the following css code to change the style of the headline.

    h1.tribe-events-page-title {
       /* styles here */
    }

    3.) Yes, it’s possible. You have to modify the theme’s \config-events-calendar\views\default-template.php file. Place the text right after this container. Or utilize the “tribe_events_before_html” filter.

    Example:

    /*
    * The Events Calendar - Add Content to Month View Only
    * @version 1.0
    */
    add_filter( 'tribe_events_before_html', 'tribe_events_before_html_mod', 10 );
    function tribe_events_before_html_mod( $tribe_events_before_html ) {
    	if ( tribe_is_month() ) {
    		$tribe_events_before_html .= 'Add your custom text here.';
    	}
    
    	return $tribe_events_before_html;
    
    }

    Best regards,
    Ismael

    in reply to: Theme not working with php 7.0 #1103545

    Hi,

    Thanks for the update.

    Can you delete the other Enfold folder and leave the latest version? There are 4 copies of Enfold in the themes folder.

    Best regards,
    Ismael

    in reply to: Updating from 4.1.2 #1103544

    Hey!

    Thanks for the update.

    The site is still using version 3.5.2. Please upload the latest version inside the “themes-old” folder. We’ll check it again afterwards.

    Regards,
    Ismael

    Hey jjsanderson,

    Thank you for using Enfold.

    Are you referring to this filter?

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type

    Best regards,
    Ismael

    in reply to: Fixing custom 404 page not being displayed #1103528

    Hi,

    Thanks for the update.

    It works when the “Maintenance Mode” option is disabled. This behavior is probably not intended but if you think about it, it doesn’t really necessary to have 404 page yet when the site is not even accessible or on maintenance mode. But we’ll still report the issue to our dev.

    Best regards,
    Ismael

    in reply to: Social share icons for section ID #1103521

    Hi,

    Thanks for the update.

    That is not possible with the current option as @Mike explained. You may need to look for a different social plugin.

    Best regards,
    Ismael

    in reply to: Vertical navigation menu edit #1103517

    Hi,

    Thanks for the update.

    You should replace the action name “ava_after_main_menu” with “ava_main_header_sidebar” if you’re not using the default top header.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    The login details are invalid. Please check them carefully.

    Best regards,
    Ismael

    in reply to: Newsletter: adding legal information #1103515

    Hi,

    UPDATE: Unfortunately, you can’t add a checkbox to the subscribe form because the current script doesn’t support that element. You may need to use a different newsletter plugin for that.

    Best regards,
    Ismael

    in reply to: Newsletter: adding legal information #1103513

    Hi,

    Thank you for the update.

    Have you tried adding a text block before or after the mailchimp subscribe element? That should be sufficient to direct users to your privacy policy page.

    Best regards,
    Ismael

    in reply to: Mobile responsive top social media icons #1103510

    Hi,

    Thanks for the update.

    Do you want to reverse the order of the social icons and the phone number? This css code should help.

    @media only screen and (max-width: 767px) {
    .responsive #top #header_meta .container {
        display: flex;
        flex-direction: column;
    }
    
    .responsive #top #header_meta .container .social_bookmarks {
        order: 2;
    }
    }

    Best regards,
    Ismael

Viewing 30 posts - 22,441 through 22,470 (of 66,745 total)