Forum Replies Created

Viewing 30 posts - 7,561 through 7,590 (of 11,485 total)
  • Author
    Posts
  • in reply to: Move content to top for each tab when using Tab Section #1001506

    can i see that link too. Sometimes i found a solution.

    i do that myself often to insert into a tab content field some alb shortcodes.

    in reply to: blacklist emails from contact form #1001505

    Thanks!

    in reply to: SVGs not displaying on front end #1001493

    use instead svg support plugin.

    another advantage: you see previews on mediathek. You can define a class that enables the replacement from img svg to svg inline.
    Means if it comes to an image with a given class and a svg – it will insert instead the svg itself.
    This is something i use often for the logo. Because you can do nice things with svg on hovering f.e.

    you can see it here on startpage: https://webers-testseite.de/cynthia/
    shrinking the logo only blending some path in the svg out. Hovering makes only that path red.

    But indeed here it is also necessary to define (if it is not in the svg itself) a width for it – guess you can have a monster witdth – because it is than handled to 100% width through the Enfold settings:

    img[src$=".svg"] {
        width: 3000px !important;
    }

    PS : test that code first with your plugin aswell

    i think this is not only an avada theme thing. I remeber that i have used a plugin for that feature.
    But i have to make a research for the name. it is a few years ago.

    Edit : yes – it is Twenty20 : Link

    Link to a : Demo of Twenty20

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Enfold doesn't support pretty URLs for Tabs #1001304
    in reply to: Tabs in Enfold don't have proper slug #1001290

    just so it’s clear. I am concerned with solving your problem – not the other way round.
    A child theme is a completely normal thing in the use of WordPress.
    It is highly recommended to use one, too – many things will become easier, and are independent from the next enfold update, i.e. they will not be lost the next time the parent topic is updated.

    on the other hand, no one is forcing you to use a toggler. An Accordion does not have to be used either. These elements are used to design the length of the content in such a way that even with large amounts of content, pages are not too long. Such pages usually frighten away the normal visitor of a page.
    A toggler therefore leaves the decision of whether or not to view content to the visitor of the site.

    So if you attach great importance to SEO, then create the content as single pages.

    PS: If you want simple solutions, you have to be satisfied with simple requirements.

    in reply to: Accordion Title to h2 #1001272

    Yes – it is hard to make a statement only about the simulation in the developer tools.
    So i’m glad that it works for you now

    in reply to: Accordion Title to h2 #1001214

    if you mean that toggler –
    “Warum sie Diamantwerkzeug kaufen sollten” etc.

    this is not possible – it will work with that code above and:
    as additional line: replaceElementTag('.togglecontainer p.toggler', '<h3></h3>');

    but toggler is predefined over p tag – so there will be a lot to change in css to reach the toggle effect then.

    in reply to: Accordion Title to h2 #1001206

    ok i see your homepage now. – but where is the accordion ? – pleas look to your page and tell me the name of the alb element you used!

    in reply to: Accordion Title to h2 #1001205

    you want from h3 to h2 a change!
    look to your source code of your page – allmost all modern browsers got developer tools
    most you can go with your mouse over the element to inspect and then press context button of your mouse ( most right mouse button) – there will be something like inspect ( or inspect element) or so.

    in reply to: Tabs in Enfold don't have proper slug #1001202

    the most snippets and scripts to enqueue go over that ( at the beginning empty) functions.php of the child theme.

    in reply to: Tabs in Enfold don't have proper slug #1001200

    if you got a child-theme installed there will be under dashboard – appearance – editor

    in reply to: Tabs in Enfold don't have proper slug #1001186

    all is above said:
    to functions.php of your child-theme

    Yoast : you have to make your meta settings for the whole page – not for the #tabs

    in reply to: Tabs in Enfold don't have proper slug #1001180

    the whole page is visible and readable too. See source code all tab content is there.
    Google will index the whole page ! : http://thomasianwilson.com/learn
    but it will not index it with the hash as single content e.g. for: http://thomasianwilson.com/learn/#tab-id-4

    the code above allows you to set the id to e.g: http://thomasianwilson.com/learn/#color-blindness

    you see that allthough the first tab is active – the content of the second tab is not set to display:none.
    it is in source code visible/crawlable/readable
    (click to enlarge)

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Accordion Title to h2 #1001176

    PS
    this line

    replaceElementTag('h3.aviaccordion-title', '<h2></h2>'); 
    

    could be added by new lines in the same way (‘tag to replace’, ‘new tag’)
    so you can use this for more replacements

    in reply to: Accordion Title to h2 #1001174

    put this in your functions.php of your child-theme:

    function replace_tags_with_tags(){
    ?>
    <script>
      (function($) {       
          function replaceElementTag(targetSelector, newTagString) {
            $(targetSelector).each(function(){
              var newElem = $(newTagString, {html: $(this).html()});
              $.each(this.attributes, function() {
                newElem.attr(this.name, this.value);
              });
              $(this).replaceWith(newElem);
            });
          }
        
          replaceElementTag('h3.aviaccordion-title', '<h2></h2>'); 
        
      }(jQuery)); 
    </script>
    <?php
    }
    add_action('wp_footer', 'replace_tags_with_tags');
    in reply to: video loop #1001169

    first : is there a link we could see.
    then : describe a bit more your settings. Where did you place the video – as background in color-section; as video alb element in content; as a link and video opens on lightbox etc.

    in reply to: How can I add an Icon to my text in the navigation? #1001097

    or you can insert on Dashboard / Menu into the navigation label an image just before the text
    f.e. : <img src="https://webers-testseite.de/wp-content/uploads/webers-web-256farben.png" alt="image-before-menupoint" /> testpages

    it is easier to address if you gave to that menu point a custom class as i did : imagelink

    then on quick css the rest:

    .imagelink.menu-item img {
        display: inline-block;
        width: auto !important;
        height: 50%;
        position: relative;
        vertical-align: middle;
        padding-right: 5px;
    }

    you have to adjust a bit for your needs the height
    and for the mobile menu ( hamburger maybe display none or style it extra css)

    look here on testpages menupoint: https://webers-testseite.de/

    in reply to: Tabs in Enfold don't have proper slug #1001090

    have a look to these “internal linking tut” ond Yoast: Link
    but as far as i know google don’t like those url fragments : Link

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Tabs in Enfold don't have proper slug #1001082

    first of all you can activate the prettier url hashes by this to functions.php of your child-theme:
    you can then give each tab a unique custom id

    add_theme_support('avia_template_builder_custom_tab_toogle_id');
    

    indeed these anchors are not crawled as a link for a unique page.
    for Yoast it is best you ask there for a solution – they would know of that problematic.

    i do alway make a sitemap.xml and upload that to google webmaster tools.

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Enfold; Socket – enable URL links? #1001010

    by the way – these entry fields of Enfold Options like copyright or telephone number field – They accept the input via shortcode

    so you can even create a enfold button – activate the debug mode and copy/paste the shortcode to that entry fields

    yes – my solution will show the whole video – alway – like it was a background-size : contain.
    But this will end in black bars left/right on wide screens – if you can live with a crop – than it is ok.
    Glad we found a solution.

    without black bars left/right this will be not possible on wide screens.
    you can force the height by:

    
    #top.home .av-video-slide iframe {
        height: calc(100vh - 88px) !important;
        top: 0 !important;
    }
    
    .home #wrap_all {
        height: 100vh !important;
    }

    because your header height is 88px at the beginning

    PS:
    you have to go through your media links ( favicon etc. alot of them aren’t https) a search and replace plugin can do the job

    just give a padding-top to main content:

    .html_header_transparency #main {
    	padding-top:35px
    }
    in reply to: Urgent !! How to change opacity ? #1000628
    .wpb_animate_when_almost_visible {
    opacity: 1;
    }

    The opacity property can take a value from 0.0 – 1.0. The lower value, the more transparent:

    https://www.w3schools.com/css/css_image_transparency.asp

    ja aber wie gesagt – es ist doch alles vorhanden:
    https://webers-testseite.de/beenee/

    Sorry es ist normalerweise nicht logo oben Nav unten – habe ich nur mal für diese Seite gemacht, deshalb nicht optimiert.
    Das Bild was du hast muss auch anders sein.

    Aber das ist es doch .

    in reply to: LayerSldier Menu does show on firefox, but not on Chrome. #1000541

    Thanks – !

    in reply to: Customize my account login page #1000539

    you mean that normal /wp-login.php page?

    this comes to functions.php of your child-theme

    function custom_login_logo() {
        echo '<style type="text/css">
        h1 a { background-image:url(/wp-content/uploads/logo.png) !important;
        background-size: contain !important; 
        height: 100px !important; 
        width: 300px !important; }
        </style>';
    }
    add_action('login_head', 'custom_login_logo');
    
    add_filter( 'login_headerurl', 'custom_loginlogo_url' );
    function custom_loginlogo_url($url) {
      return 'https://url...';
    }

    the second one is for the backlink of the new image
    you have to adjust the height and width to your logo and your needs

    f.e. :

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: How can I add an Icon to my text in the navigation? #1000538

    well –
    1 you had to know the hex-code of the icon you like to use
    2 you had to know the name of the icon-set
    3 you had to know the menu-item id
    4 this comes to quick css:

    #menu-item-2467 a::before {
        content: "\e8c9";
        font-family: entypo-fontello;
        display: inline-block;
        font-size: 30px;
        padding-right: 5px;
        vertical-align: middle;
        color: #f00;
    }

    5 you must decide the style ( color of the icon-font , font-size etc)
    see here with my impressum link : https://webers-testseite.de/

    if you have transparency pages it might be a good idea to define a color for it:

    .header-scrolled #menu-item-2467 a::before {
    color: #333
    }
    in reply to: blacklist emails from contact form #1000536

    maybe we can do something over this check in contact.js:

    if(classes && classes.match(/is_email/))
    {
    	if(!value.match(/^[\w|\.|\-]+@\w[\w|\.|\-]*\.[a-zA-Z]{2,20}$/))
    	{
    		surroundingElement.removeClass("valid error ajax_alert").addClass("error");
    		send.validationError = true;
    	}
    	else
    	{
    		surroundingElement.removeClass("valid error ajax_alert").addClass("valid");
    	}
    	nomatch = false;
    }
Viewing 30 posts - 7,561 through 7,590 (of 11,485 total)