Forum Replies Created

Viewing 30 posts - 301 through 330 (of 11,475 total)
  • Author
    Posts
  • in reply to: Anchor Link doesn’t work on smartphone but on PC #1476628

    this is how gtag manager is implemented – Change the GTM-XXXXX with your code:

    function ava_g_tag_custom_script() { 
    ?>
    <!-- Google Tag Manager -->
    <script>
      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
      })(window,document,'script','dataLayer','GTM-XXXXX');
    </script>
    <!-- End Google Tag Manager -->  
    
    <!-- Google Tag Manager (noscript) -->
    <noscript>
      <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-XXXXX"
      height="0" width="0" style="display:none;visibility:hidden"></iframe>
    </noscript>
    <!-- End Google Tag Manager (noscript) --> 
    <?php
    }
    add_action('wp_head', 'ava_g_tag_custom_script');

    how to set the conversion – please inform on google docu.

    in reply to: Anchor Link doesn’t work on smartphone but on PC #1476627

    btw. on my end the anchor even works on mobile:

    Did you read :

    Security and privacy for conversion tracking
    Google has strict security standards. Google Ads only collects data on sites and apps where you have configured tracking.
    Ensure that you provide users with clear and comprehensive information about the data you collect on your sites, apps, and other properties. Make sure that you also get consent for that collection where required by law or any applicable Google policies governing user consent, including Google’s EU User Consent Policy.

    Ich weiß ja nicht wie es bei Euch in Österreich ist, aber auch Ihr solltet unter die EU Gesetze fallen.
    Du musst mehr Augenmerk auf das Cookie Handling setzen. Selbst wenn ich alles ablehne bei deiner Seite sehe ich folgende Cookies munter senden:

    in reply to: IconList – make icons clickable #1476622

    Hier wäre es ja auch zunächst sinnlos, denn das Hovern zeigt dir ja dann die Rückseite – wozu also den Link auf dem Icon haben?
    Es gibt allerdings die Möglichkeit zunächst beim Öffnen die Rückseite zu zeigen, und dann bei Hover die Frontseite. In dem Fall siehst du dann das Icon –
    klickbar ist hier wie auch im anderen Fall immer die gesamte Fläche.

    – wenn man den Link nicht in den Backside Content als Link einfügt sonder diese Option dort nutzt ( – Erweitert – Link Einstellungen )

    Den Punkt “Inverse Layout – Ignored For Tooltip” findest du da, wo du den Rückseiten Inhalt eingegeben hast als Checkmark.

    Hier die erste Flipbox (oben) ist mit reverse order: https://webers-testseite.de/4inarow/

    in reply to: IconList – make icons clickable #1476618

    Auf welcher Enfold Version läuft deine Installation – gefühlt glaube ich das gibt es schon ewig dort.

    Edit: hattest du nicht von Listenelement gesprochen – über welches Element reden wir ? Rasterelement ( da muss ich erstmal schauen was das ist- ich nutze meist die englische Oberfläche)

    Jetzt verstehst du auch meine Frage: wo das Listenelement auf deiner Seite ist. Du sprichst hier über ein anderes Element. Icon/Flipbox Grid

    in reply to: Anchor Link doesn’t work on smartphone but on PC #1476617

    and that filter is set like described on my post:

    There is now a filter for this which you can set in the child-theme functions.php.

    and this will not hamper anchor links.

    on the page you linked above – i can see the id=”kontaktfooter” but found no link inside the DOM : href=”#kontaktfooter” neither on desktop view nor on mobile view.

    by the way: if you link to the kontakt page: https://augemusic.at/kontakt/
    you can choose inside editor that you only show the socket and not show the footer. – Why – then you will not see two kontakt forms.

    in reply to: Remove lightbox opening of feature image on blog post #1476612

    that filter set in child-theme functions.php removes the anchor and onty the image is inserted instead.

    add_filter( 'avf_post_ingnore_featured_image_link', '__return_true' );
    

    btw. that filter can be selective to posts from f.e. categories:

    function custom_avf_post_ingnore_featured_image_link( $ignore_image_links ){
      //  e.g. available variables
      global $avia_config, $post_loop_count;
    
      $ignore_image_links = in_category( array( 1, 'grafik' ) ) ? true : false;
      return $ignore_image_links;
    }
    add_filter( 'avf_post_ingnore_featured_image_link', 'custom_avf_post_ingnore_featured_image_link', 10, 1 );
    in reply to: Logo Not Showing Up on Mobile View #1476569

    can you post the child-theme functions.php here?
    (if so – please use the code tag)

    the other way round ? the first is your edited version – and the second the existing enfold one?

    in reply to: IconList – make icons clickable #1476563

    wo genau befindet sich deine Iconlist?

    im Element selbst hast du ja die Links gesetzt – Advanced Tab (Erweitert)- weiter unten siehst du dann ein Dropdown Menü:

    I run many portfolios – and I have never seen such a fatal error on my websites. As you mentioned, there are no other messages about this on the forum.
    What exactly are you changing manually? – Do you have any custom post types running?

    in reply to: Umlaute bei Table of Contents #1476547

    thats why i wrote:

    you know how to have child-theme js files?

    The Subfolder Structure is korrekt

    put this to your child-theme functions.php:

    function wp_child_theme_widget_script() {
      wp_deregister_script( 'avia-widget-js' );
    
      $vn = avia_get_theme_version();
      $options = avia_get_option();
      $child_theme_url = get_stylesheet_directory_uri();
    
      $min_js = avia_minify_extension( 'js' );
    
      $condition = ( avia_get_active_widget_count() > 0 );
      avia_enqueue_script_conditionally( $condition , 'avia-widget-js-child', "{$child_theme_url}/js/avia-snippet-widget{$min_js}.js", array('avia-default'), $vn, true);
    }
    add_action( 'wp_enqueue_scripts', 'wp_child_theme_widget_script', 100 );
    in reply to: Umlaute bei Table of Contents #1476509

    on : avia-snippet-widget.js i commented out the first regex – hope that this will not come into conflict with other settings.

    function av_pretty_url(text)
    {
    	return text.toLowerCase()
    		// .replace( /[^a-z0-9]+/g, "-" )
    		.replace(/ /g,"_")
    		.replace( /^-+|-+$/g, "-" )
    		.replace( /^-+|-+$/g, '' )
    		.replace(/ä/g, 'ae')
    		.replace(/ö/g, 'oe')
    		.replace(/ü/g, 'ue')
    		.replace(/ß/g, 'ss');
    }

    see: https://webers-testseite.de/datenschutz2/
    for example datenschutzerklärung

    download it here (both files min.js too) : https:://webers-testseite.de/avia-snippet-widget.zip

    you know how to have child-theme js files?

    in reply to: Umlaute bei Table of Contents #1476508

    you have to edit the function av_pretty_url(text) in avia-snippet-widget.js
    there you see that a lot of characters are replaced by “-”
    we now had to find a solution where ä is ae; ü is ue etc. …

    in reply to: Cannot use iconfonts (displayed as empty boxes) #1476507

    first: on fontello there is on top the option to give them a name.
    second: before uploading – rename those zip files to something reflecting the icons ( as on enfold : enfold medical icons etc. )
    ( This is only to have in media-library a meaningfull name – not important for the function )
    see: https://kriesi.at/documentation/enfold/icon#download-fontello-or-flaticon-icons-included-in-enfold-demos

    PS : inside the zip-file there is a folder with fontello-123456xyz – you can leave that. important is to rename the zip file and the font on downloading on fontello.

    in reply to: Logo Not Showing Up on Mobile View #1476479

    by the way – with that enormous main navigation menu – you had to break to the hamburger much earlier:

    @media only screen and (max-width: 1200px) {
        #top #header .av-main-nav > li.menu-item  {
            display: none!important;
        }
        #top #header .av-burger-menu-main {
            cursor: pointer;
            display: block!important;
        }
    }
    in reply to: Logo Not Showing Up on Mobile View #1476478

    it seems that you have all pages with transparency option ?
    so you can overwrite the behaviour to show now the alternate logo anyway. on all mobile devices
    This is merely an emergency solution now

    
    .responsive.avia_mobile #top .header_bg {
      opacity: 0.1;
    }
    
    .responsive.avia_mobile #top #header:not(.av_header_transparency) .header_bg {
      opacity: 1;
      background-color: rgba(0,0,0,0.2) !important;
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
    }
    
    .responsive.avia_mobile #top .av_alternate_logo_active .logo a > img, 
    .responsive.avia_mobile #top .av_alternate_logo_active .logo a > svg {
      opacity: 0;
      width: 200px
    }
    .responsive.avia_mobile #top  .logo img.alternate, 
    .responsive.avia_mobile #top  .logo .subtext.avia-svg-logo-sub {
      display: block;
      opacity: 1;
    }
    .responsive.avia_mobile #top  .logo img.alternate, 
    .responsive.avia_mobile #top  .logo .subtext.avia-svg-logo-sub {
      display: block;
      padding: 10px 0;
    }
    
    .responsive.avia_mobile #top .logo img.alternate, 
    .responsive.avia_mobile #top .logo .subtext.avia-svg-logo-sub svg {
      top: 50%;
      transform: translateY(-50%);
    }

    nevertheless – you had to find the reason for that url mismatch – and why the normal logo could not be overwritten by a new uploaded one.

    in reply to: Logo Not Showing Up on Mobile View #1476477

    there is no entry in your child-theme functions.php that uses the filter :
    avf_logo – and you also have no entry regarding $logo ?

    on default Enfold handles to show on mobile the normal logo – because they give up the transparency setting and have a white background on logo container. So you must have some css code to force transparency and to set #main to padding-top: 0
    that is the reason why they show the normal logo allthough the header is set to transparency.

    see demo behaviour on mobile: https://kriesi.at/themes/enfold-2017/

    in reply to: Cannot use iconfonts (displayed as empty boxes) #1476476

    you uploaded that svg file from the Flaticon zip to fontello.
    Do you have any warning on uploading? (Compound path … )
    Are these icons monocolor icons?
    Do you see the icons on fontello as you like to have it?

    in reply to: Centre align 5 star icons #1476473

    if you tried it then the DOM will have there a p-tag with an inline text-align: center!
    so we can use this as a selector:

    .avia-testimonial p[style*="center"] {
      margin-top: 0;
      display: inline-block;
    }

    see : https://webers-testseite.de/testimonial-styling/
    PS: the css code there is only for the other styling of those testimonials

    in reply to: Centre align 5 star icons #1476471

    like this: https://kriesi.at/themes/enfold-2017/#best-rated
    but you know how to insert those icons – the only problem is to get them centered – allthough you have tried using the text-align feature of the editor?

    in reply to: events with an expiration date #1476465

    just a question – you are talking about events; you got an events plugin that does not have expiration dates?

    Sorry i only read your topic – not the post
    there are lot of plugins that can be asumed under events f.e.: https://wp-events-plugin.com/ The Free Plan is good enough for the most possibilities.

    in reply to: events with an expiration date #1476464
    in reply to: Logo Not Showing Up on Mobile View #1476460

    insert manually the url and save

    https://october7coalition.com/wp-content/uploads/2024/01/logo_black.png
    
    in reply to: events with an expiration date #1476455

    have a look at this small plugin: https://gitlab.rrze.fau.de/rrze-webteam/rrze-post-expiration
    (GNU General Public License v2.0 or later – so you can use it)

    you will have then on all posts under publishing the post :

    after expiration those post/pages goes to an extra “Expired” State.
    PS – there is only the setting for post/pages not for portfolio. BUT only two places in sourcecode can change that to have it for portfolio too.
    /includes/main.php (line 86 – add to the array ‘portfolio’ )
    and
    /includes/settings.php (line40 – add a new line with portfolio)

    in reply to: transparant #1476454

    or:

    #top.page-id-2 #main{
        background: transparent !important;
    }
    
    #top.page-id-2 .main_color,
    #top.page-id-2 .header_bg,
    #top.page-id-2 #socket {
        background-color: rgba(255,255,255,0.6);
       -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    in reply to: Logo Not Showing Up on Mobile View #1476453

    What have you inserted to your :
    Dashboard – Settings – General : “WordPress Address (URL)”. and “Site Address (URL)”. ?

    in reply to: Cant remove or change background image? #1476399

    your background-image – is it a svg file?
    if you are on an older enfold version update to the newest enfold version – there is in the meanwhile (since 5.6.9) a css to give an absolute width value to svg on body.wp-admin.

    in reply to: Logo Not Showing Up on Mobile View #1476396

    why does logo image url differ to domanin url?

    https://october7coalition.org

    on mobile the normal logo (non transparency case ) is shown and this leads to :
    https://october7coalition.org/wp-content/uploads/2024/01/logo_black.png
    on desktop the transparency logo is shown so the alternate logo inside sub-text is there.
    https://october7coalition.com/wp-content/uploads/2024/01/logo_black-300x133.png

    in reply to: How to set a sticky column ? #1476361

    this will hard to get i see:
    https://webers-testseite.de/sandy/
    because all three columns are inside the same parent container – the stick will not end when the 1/1 column reaches the top.

    ________

    but you can have a page/post without sidebar and use then color-sections – the sidebar then is shown as content element : widget area:
    click to enlarge the preview:
    preview

    see code and example page:
    https://webers-testseite.de/sandy-2/

    in reply to: How to set a sticky column ? #1476328

    you can have on child-theme functions.php :

    
    function add_slug_body_class( $classes ) {
    global $post;
      if ( isset( $post ) ) {
        $classes[] = $post->post_type . '_' . $post->post_name;
      }
      return $classes;
    }
    add_filter( 'body_class', 'add_slug_body_class' );

    then a post/portfolio/page will have on body (#top) an additional class f.e.
    post_name-of-my-post
    portfolio_name-of-my-post
    page_name-of-my-post

    maybe that helps you to better select.
    On your example page it will then be : post_sand-box-post

    why do i include to that class the post-type? because it might be that you have post and a page with same slug – then you can differ between them
    if you do not need that – remove the instertion of the post-type:

    function add_slug_body_class( $classes ) {
    global $post;
      if ( isset( $post ) ) {
        $classes[] = $post->post_name;
      }
      return $classes;
    }
    add_filter( 'body_class', 'add_slug_body_class' );
Viewing 30 posts - 301 through 330 (of 11,475 total)