Forum Replies Created

Viewing 30 posts - 61 through 90 (of 10,875 total)
  • Author
    Posts
  • in reply to: How to submit and use custom fonts #1470892

    and command line means using : terminal
    Btw: the __MACOSX had to be ignored too.

    can you test it:
    but if you know how to create an automator script you can have a drag&drop symbol on your desctop to zip without any hidden OSX file.
    on default it will create a zip file with same name as the object ( folder or file ) – but it will ask you to enter a filename. Let the mark on

    you can download that little program on : https://webers-testseite.de/zip-it.zip

    Can you download it – and test it – because on all docus about automator it says that this method will exclude hidden osx system files ( not the hidden files)

    in reply to: Change color of mouse over titles #1470889

    i can see that too! So must be a caching problem.

    By the way: if you do not need bigger menu-items in hamburger menu – you can make that overlay smaller ( goto Main Menu – Burger/Mobile Styliing : “Flyout Width”) try 200px

    in reply to: Sort items on color in the masonry gallery #1470884

    Edit : oh sorry did not see that your masonry is a image gallery.
    But the sorting list did not exist on image masonry galleries at all.

    _______________
    if you follow ismaels proposal then you can show the masonry element by tag.
    you then can set for each of your post/portfolio a tag (color) and sort these entries – then by tag.

    PS if you got posts and portfolios with the same tag – they will be shown side by side.

    in reply to: Masonry – Sort options as list #1470838

    maybe it will be the easiest way to not show the sub-menu on different pages ;)

    #top:not(.page-id-41084) .sort.menu-item .sub-menu {
      display: none !important;
    }
    in reply to: Masonry – Sort options as list #1470837

    see example page again
    https://webers-testseite.de/masonry-blog/
    – but did this for now only for that page. Not coming from a different page. From different page it first starts with all sorting.

    However, in my opinion, the decision to place the sorting near the masonry makes more sense than the navigation solution.

    function transfer_click_to_sort_options() { 
    ?>
    <script type="text/javascript">
    window.addEventListener("DOMContentLoaded", function () { 
    	(function($){
    		$('.sort .sub-menu a').click(function() {
    			var linkPath = $(this).attr('href');
    			var linkHash = linkPath.split('#')[1];
    			$('#top').find('.av-sort-by-term a[data-filter="'+ linkHash +'"]').trigger('click');
    		});
    	})(jQuery);
    });
    </script>
    <?php 
    }
    add_action('wp_footer', 'transfer_click_to_sort_options');

    create your main menu with individual links – link is the page with your masonry and that hash value of the sorting. (the data-filter on the sorting are built by NAME_sort and for all it is all_sort)
    to better select the first level domain i give a custom class to (Sorting) : sort

    i have no solution of coming from a different page to open the masonry directly with that sorting.

    in reply to: Contact for: Styling submit bottom #1470773

    you can do that via font-size and either padding or min-width:

    .avia_ajax_form .button {
      padding: 16px 50px;
      font-size: 1.4em;
      min-width: 200px;
    }
    in reply to: seemingly random high LCPs, bug? #1470772

    It would be nice to be able to do this on a page-by-page basis. Check which elements are used on the page and only load that js/css combination. We have already discussed this here on the board. I don’t know if this is feasible.
    The function you are referring to only collects the information about which elements have been used on the entire installation and then loads them.

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470745

    But this works only for: non-ALB generated Posts / even Portfolios are untouched.

    you did that on layer slider project settings?

    what i can see on that page is the layer-slider setting – and on my iPhone this is still there (the layerslider).

    is it on your own page?
    if so – you are on 1and1?

    in reply to: Masonry – Sort options as list #1470678

    here is a css solution – but not with sort option in navigation – that is – as ismael mentioned a lot of work
    PS: maybe the sticky option is too much.

    https://webers-testseite.de/masonry-blog/

    and to have no influence on other masonry pages – it might be good to stay site-specific.

    in reply to: Contact for: Styling submit bottom #1470666

    The rulesets concerning to contact form are:

    .avia_ajax_form .button {
      border-radius: 15px;
      color: #fff;
    }
    .main_color input[type="submit"]{
      background-color: #55726f;
    }
    .main_color input[type="submit"]:hover{
      background-color: #37a196;
    }
    

    if you realy like to have no color – change on hover – change to your needs

    i could not imagine that a logo is the reason for bad LCP Values. (maybe if you use a svg Logo with embedded image gradients (like Instagram now did) ) a svg with 10MB 🙂‍↔️ (https://about.meta.com/brand/resources/instagram/instagram-brand/)

    if you got for example a bigger advanced slider – that could cause it
    on pagespeed insights – go to the diagnostic part and open the LCP part to see what is responsible for that.

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470644

    thanks – now i got it.

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470641

    this seems to work:

    function avf_custom_masonry_loop_prepare( $key, $entries ) {
    	if($key['post_type'] !=  'attachment') {
    		$separator = ' / ';
    		$updated_date = get_the_modified_date( get_option('date_format') , $key['ID'] );
    		$output .= '<span class="updated-date meta-color av-masonry-date">'.$separator.'Updated on: ' . esc_html( $updated_date ) . '</span>';
    		$key['text_after'] .= trim( $output, $separator  );
    	}
        return $key;
    }
    add_filter( 'avf_masonry_loop_prepare', 'avf_custom_masonry_loop_prepare', 10, 2 );

    i do not know why the positiv check does not work ( case post or portfolio)

    Edit :
    i thought that this

    if($key['post_type'] ==  'post' || $key['post_type'] ==  'portfolio') {
    // could be shortend to:
    if($key['post_type'] ==  ('post' || 'portfolio')) {

    first one works – shortform not

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470640

    the filter allows those two : ( $key, $entries )
    thats why i tried :
    if($key['post_type'] == ('post' || 'portfolio' )) { … }

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470636

    Yes – but Masonry Galleries are influenced too. I do not want image galleries to be part of that additional info.
    Only Masonry Entries should be doing that. I tried $context == 'av_masonry_entries' but again with no success.
    https://webers-testseite.de/image-masonry/

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470622

    but you kept the first line of the functions.php of the child theme (<?php)
    or is there another function named avf_custom_post_slider_meta_content?
    (function names had to be unique)

    so the snippets couldn’t be the reasons for that – i always test them :
    https://webers-testseite.de/blog/. and for masonry: https://webers-testseite.de/masonry-blog/

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470620

    did you enter this in the functions.php of the parent theme? (unfortunately all this would be lost again after the next update).
    this is possible – but my recommendation is to use a child theme.

    in reply to: Keep menu item bold #1470575

    if you only got these projects as portfolio files – yes:
    (otherwise if there are different portfolios – the item ID 44 will do that too. – then we had to find a more complex way.

    #top.single-portfolio li#menu-item-44 .avia-menu-text {
      font-weight: 800;
    }

    PS: i recommend doing that: https://kriesi.at/support/topic/keep-menu-item-bold/#post-1470571
    because : too many fonts are loaded (on team page). This is not necessary for performance reasons – you have everything you need if the variable font works correctly.

    in reply to: Keep menu item bold #1470574

    Next Question: did you set the fonts on General Styling – Fonts : ( on uploaded Fonts) ?

    in reply to: Keep menu item bold #1470571

    What is meant by my comment about plugin loading of fonts:
    on creating the template (i guess you choosed “barber”) there is a Styling option:

    do not choose here the montserrat font.

    in reply to: Keep menu item bold #1470562

    https://kriesi.at/support/topic/menu-on-one-page-is-bolder/
    ???
    der variable font den du jetzt hast arbeitet doch korrekt!

    War es damit nicht gelöst?
    Du hattest wohl offensichtlich bei der Erstellung des Templates die Schrift mit ausgewählt. Mein Rat war es dort auf default (nutze die Themenschrift) zu lassen. Durch das Nachladen der Montserrat Schrift nur auf dieser Seite (und dort wurde der bold font mitgeladen) erschien dann nur dort auf der Seite die Schrift im Menü bold. Auf den anderen Seiten wurde diese Schrift nicht nachgeladen, weshalb nur die Montserrat light zur Verfügung stand.

    Meine Empfehlung deshalb war: im Plugin die Standard Schrift nutzen ( welche dann eine sauber konfigurierte Montserrat des Systemes wäre )
    Und die Montserrat vernünftig zippen, und hochladen.

    _____________

    Wasn’t that the solution?
    You had obviously selected the font when you created the template. My advice was to leave it at default (use the theme font). By reloading the Montserrat font only on this page (and the bold font was also loaded there), the font then only appeared there on the page in the bold menu. This font was not loaded on the other pages, which is why only the Montserrat light font was available.

    My recommendation was therefore: use the standard font in the plugin (which would then be a cleanly configured Montserrat of the system)
    And zip the Montserrat properly and upload it.

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470551

    Next Question : we got the filter for masonry entries: avf_masonry_loop_entry_content
    Is it possible to add via that filter new loop keys ( like the above updated date f.e.) ?

    __________
    Edit : perhaps not the most elegant method – but it works on masonry entry – and i have to find a way to only influence Masonry Entries and not masonry galleries.

    function avf_custom_masonry_loop_prepare( $key, $entries ) {
    	$separator = ' / ';
    	$updated_date = get_the_modified_date( get_option('date_format') , $key['ID'] );
    	$output .= '<span class="updated-date meta-color av-masonry-date">'.$separator.'Updated on: ' . esc_html( $updated_date ) . '</span>';
    	$key['text_after'] .= trim( $output, $separator  );
    	return $key;
    }
    add_filter( 'avf_masonry_loop_prepare', 'avf_custom_masonry_loop_prepare', 10, 2 );
    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470549

    here just a Question concerning to this – how to avoid showing on blog the date and comment count?
    The “Blog Meta Elements” show option only is working for the single blog post. Not for the blog. There the time is always displayed.
    is it because of ? :

    $show_meta_time = apply_filters( 'avf_postslider_posts_meta_data_show', true, 'time', $index, $entry, $this );
    

    same on comments. But having a child-theme postslider.php with these settings to false – will only disable time showing – but comments are still there. ?

    Edit: i only looked to the normal blog page that is created by wordpress. If i use the blog-post alb – it will have influence on both.
    Sorry

    but nevertheless : Is there a way to have a child-theme solution to show/hide these metas on blog? And not having a child-theme postslider.php

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470547

    Wow – thats nice – only if you like to get your desired MM/DD/YYYY – you should change the date format to : 'm/d/Y'

    ______________
    or if you like to have the same date format as the setting of your wordpress installation:

    function avf_custom_post_slider_meta_content( $meta_content, $entry, $index, $atts, $meta_array ) {
        $updated_date = get_the_modified_date( get_option('date_format') , $entry->ID );
        $meta_array[] = '<div class="updated-date">Updated: ' . esc_html( $updated_date ) . '</div>';
        $meta_content = implode( '<div class="slide-meta-del">/</div>', $meta_array );
        return $meta_content;
    }
    add_filter( 'avf_post_slider_meta_content', 'avf_custom_post_slider_meta_content', 10, 5 );
    in reply to: transparent header #1470524

    there is a globaly setting on : theme options – transparency options ( aktivate that switch) there you have :

    in reply to: Flipbox images not displaying in certain browsers #1470509

    I can see your pictures on my iPhone, but it’s extremely difficult to “scroll” by swiping on that page. First try to give the backside some content so that we can judge what is happening.

    in reply to: Custom ID Attribute CSS help #1470507

    a little bit under the column link settings there is the “Developer Settings” Tab – you can set here a custom css class.
    that custom class goes like the avia-link-column class to the flex_column class so – if it is for example special-highlight – you code could change to :

    .flex_column.special-highlight:hover {
      background-color: rgba(118, 54, 38, 1);
    }
Viewing 30 posts - 61 through 90 (of 10,875 total)