Forum Replies Created

Viewing 30 posts - 5,611 through 5,640 (of 11,983 total)
  • Author
    Posts
  • Every month I get an invoice from Google for 0Euro – what kind of traffic do you have on your site?
    By the way Yigit – using an image f.e. a screenshot of a google map will come into conflict with copyright law! So be carefull.

    ____________

    A clear distinction must be made here between the screenshots from Google Maps or Google Earth and the API (“application programming interface”) offered by Google for the Google Maps service.

    As far as we know, Google itself does not have exclusive rights to the map material or satellite images. Google itself obtains the content from other third parties that produce the images. Google is therefore not the decisive rights holder, but only has a corresponding licence for use, so that the respective third party companies are quite likely to issue warnings about the further use of their images or maps – e.g. through screenshots.

    For example, the aerial image provider Geocontent had already issued a warning in 2006 to an entrepreneur who used images from Google Earth for her company blog.

    in reply to: ** Quality of Colour Section Background Images ** #1221325

    hm – i can not confirm to this: on my opinion the poor rendering is given on firefox – chrome and safari are very near to each other.
    Click to enlarge the images:

    left to right: firefox, chrome, safari

    what makes me wonder is that on firefox it shows a jpg but on info about that image there is webp

    besides this it seems to be a high compression : an image of that dimension with only 48kb !

    in reply to: show main menu under slider #1221306

    Lieber Franz – kann ich nicht, da ich auch nur Teilnehmer hier wie Du bist. ;)

    in reply to: Shade effect or 2px frame around Special Heading? #1221294

    if these are headings then yes – might be done this way.
    But as far as i can see is “Vacation Rental World Summit” and “A new beginning” etc. pp a png file and no text.

    easiest way and not so performance intensive as f.e. filter : drop-shadow : just edit your images as png files with an outline in f.e. Photoshop.

    you can see with drop-shadow :

    .avia-image-overlay-wrap .avia_image {
       -webkit-filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
        filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
    }

    but you had to find a custom selector on your page. Bring a custom class to those containers.

    in reply to: Some fixes in 4.7.5 #1221247

    All sliders go back to that js file !

    For me it is working before with the 4.7.5. the only little bug was on transition speed from last to first image on looping and fading (not sliding)
    As you can see on Günters link to github that was solved by additional code on lines 838ff:

    if (self.current === 0) {
    	hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed/2, 'linear');
    	displaySlide.css(properties).avia_animate({opacity:1}, self.options.transitionSpeed/2, 'linear',fadeCallback);
    }
    in reply to: Some fixes in 4.7.5 #1221245

    yes – Günter that works as the file from before. with f.e. 7sec transition speed
    ( with that fix on line 838ff for fading last to next )
    https://webers-testseite.de/pureinstall/fullwidth-slider/

    but

    use the correct variable (key instead of i)

    when inserting this it is gone – even the transition speed goes back to default. not to the custom value.
    So that above from grizzlydev could not be the whole truth

    in reply to: Some fixes in 4.7.5 #1221237

    i tested it again :
    there was the topic of mine here: https://kriesi.at/support/topic/transition-speed-in-slider-alb/
    that on fading the images – the fade effect from last to first image on looping was with its default transition speed.
    so there was a fix for slideshow.js on : https://kriesi.at/support/topic/transition-speed-in-slider-alb/#post-1219428
    that was not perfect but much better than before.
    But when inserting your changings in that fixed file – the fading from last to first image is as before : wrong.

    in reply to: Some fixes in 4.7.5 #1221227

    sorry i try again.

    • This reply was modified 5 years, 8 months ago by Guenni007.
    in reply to: child theme download failed #1221222

    activate Enfold Parent : then export theme settings file.
    then activate Child : import theme settings file.

    in reply to: Display Pictures by Number Order #1221216

    it works ! i tested it afterwards

    But indeed i like to know how the syntax might be if i only want to have it on a given page.

    in reply to: Size of Featured Blog Post Image #1221167

    if you look into : functions.php file of parent enfold you see on line 174ff:

    Click to enlarge

    you see there is a filter: avf_modify_thumb_size which we can use to add or modify the thumbnails.
    you see that there are on some crop rules on the otheres not

    you can redefine such an existing size via that filter f.e:

    /***** redefine existing size  ****/
    function modified_thumb_for_blog_pages( $size ){
      $size['entry_with_sidebar'] = array('width'=>900, 'height'=>450 );      
      return $size;
    }
    add_filter('avf_modify_thumb_size', 'modified_thumb_for_blog_pages', 10, 1 );

    i think for single blog posts the “entry_with_sidebar” is taken.
    If you have no sidebar on the blog – clear – the entry_without_sidebar is taken.
    BUT: you will not see directly an effect. You had to regenerate the tumbnails ( see comment on functions.php )

    in reply to: diagonal ribbon #1221137

    did you fill something in the caption:

    and:

    in reply to: Sticky Header on Mobile Issue #1221135

    If you like to preserve that transparency header on start replace with:

    
    /****** responsive case when burger is visible *************/
    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header .container {
        width: 90%;
        max-width: 90%;
      }
       
      #header {
        position: fixed !important;
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
        background-color: transparent;
        color: #000000;
        border-color: #f2f2f2;
      }
       
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
    }
    in reply to: Sticky Header on Mobile Issue #1221131

    you had to see it on mobile advices.

    you break your menu at 990 so try please first remove the other code and try this in quick css:
    if it is done we will see if there will be more css to add – but i guess not.

    /****** responsive case when burger is visible *************/
    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header .container {
        width: 90%;
        max-width: 90%;
      }
       
      #header {
        position: fixed !important;
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .header_bg {
        opacity: 1;
        filter: alpha(opacity=100);
        background-color: #fff !important;
      }
      
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
    }
    in reply to: Always display Hamburger menu on specific page. #1221126

    this for your child-theme functions.php:
    Change if clause to your needs.

    function custom_burger_menu_active( $active, $context ){
      if( is_page(3) ) {
        return true;
      }
      return $active;
    }
    add_filter('avf_burger_menu_active', 'custom_burger_menu_active', 10, 2 );

    or do you mean: different menu items in the hamburger menu of a specific page ?

    there is one image loaded via http ( Inlite_logo_payoff_black_small.png ) that causes a warning.

    So if you can manage this – I would recommend that you don’t activate any other caching tool (or Enfold Merging).

    See the whole tutorial on: https://www.siteground.com/tutorials/wordpress/sg-optimizer/

    This of course does not explain why it is only now appearing.
    The server-side caching is not bad in principle, but probably leads to such inconveniences.

    have you installed that: SG Optimizer plugin ?
    maybe you try that first and see if the two listpoints will do the job

    on That Plugin:

    Manual Cache Purge
    Pressing this button will completely clear the Dynamic Cache stored for your website. Useable, if you want to make sure that you’re loading the latest version of your site.

    And:

    Automatic Cache Purge

    Enabling this option will allow our plugin to clear parts of your cache once it detects changes in your content. We’ve developed a set of rules to purge the dynamic cache in a smart, efficient way depending on the change that has occured on your site. We do a full purge on events like category deletion, plugin and theme update or switch, WordPress core update, etc. On the other hand, we do smart purge when a post is modified, a comment is added or a category is updated for example.

    But that maybe the issue: https://www.siteground.com/tutorials/wordpress/sg-optimizer/supercacher/

    maybe this helps you : https://wpshout.com/quick-guides/how-to-clear-your-siteground-cache/

    Caches are a great performance benefit for your site, but them getting “stale” or outdated is a bit bummer. Fortunately, it’s simple to clear the SiteGround cache of your WordPress website, and you’ll get into a rhythm with it quickly. Here’s a video guide …

    • Press the “Purge SG Cache” button in your top admin bar. If you don’t see this button, you’ll need to install the SG Optimizer plugin. (You should also contact SiteGround support to make sure that you’ve actually enabled its caching layers.)
    • To make sure the resources aren’t still being cached by your browser, hard-refresh your browser. You do this with Ctrl+Shift+R on Windows or Cmd+Shift+R on a Mac.

    on some hosters we had recognized that it is sometimes limited to 40M – and that is definitly not enough.
    i have 256 too and that is enough.

    Do you use a CDN ?

    Look again at my article before, we seem to have posted it here almost simultaneously.

    But you do not have a caching tool like W3TC or Total Cache running.
    Not that we would leave out something so mundane in the search for solutions. Because they just save static pages to be able to deliver them faster.

    to emphasize again what was just added above: of course this does not explain why content is also delayed.

    so there must be something more messed up.
    What about the php memory limit that WordPress is allowed to use?
    Is it set high enough?

    you can easily check it on the layerslider tab : Options : Systemstatus

    With Enfold under the Performance Tab, did you turn the merging on? ( File Compression )

    I recommend – as long as you are working on the site – to disable this merging completely. Merging does provide better performance, but it is a hindrance for this very reason.
    Below these settings you will find the switch : “Delete old CSS and JS files?” which should also be set to on.

    These merged files will stay there until you save them with the setting “Delete old CSS and JS files? These files are usually used for rendering your page.

    of course this does not explain why content is also delayed.

    in reply to: SVG for image with hotspots element #1221082

    if you switch to the advanced mode of the plugin you can have a trigger ( default is style-svg ) – on this the img src svg will be replaced by the svg itself (inline svg) sometimes this is very usefull.

    in reply to: Display Pictures by Number Order #1221031

    by the way – dear mods: how can i use this only for a specific page ?

    in reply to: Display Pictures by Number Order #1221028

    you can try that filter – put this to your child-theme functions.php

    function avia_change_posts_query($query, $params){
    	if(!empty($query['orderby']) && $query['orderby'] == 'post__in'){
    	$query['order'] = 'ASC';
    	$query['orderby'] = 'title';
    	}	
    	return $query;
    	}
    add_filter('avia_masonry_entries_query', 'avia_change_posts_query', 10, 2);

    i do not know how it is reacting on “load more” Galleries.

    in reply to: diagonal ribbon #1220923

    Guess that this is just an image – a photoshop thing.
    Do you need this often – or just for a few images?

    See here – this is made with caption of Image ALB:
    https://webers-testseite.de/image-with-ribbon/

    In any case I think it would be better to do it in a photo editing program. Just look at the way it behaves when you make the screen smaller.

    the image alb got a custom-class: with-ribbon

    .with-ribbon .av-caption-image-overlay-bg {
        display: none;
    }
    
    .with-ribbon .av-image-caption-overlay-center p {
      background-color: rgba(255,0,0,0.8);
      color: #fff;
      text-shadow: 1px 2px 3px #000;
      padding: 20px ;
      position: absolute;
      top:5%;
      left: -10%;
      transform: rotate(-30deg) ;
      width: 80%;
      text-align: left;
      text-indent: 40px;
      box-shadow: 1px 2px 8px #000;
      font-size: 36px;
      text-transform: uppercase;
    }
    in reply to: PLEASE MOVE the "Reset All Options" button. Please! #1220892

    Yes, the browser SHOULD show a verification button….but it did not. No warning.
    No undo option either.

    I haven’t done this in a long time. But I seem to remember there was another pop-up as a warning.

    Unfortunately, most users no longer read such pop windows, and to close the part quickly, press ok.

    This is my standard entry in child-theme functions.php

    function admin_head_mod() {
      echo '<style type="text/css">
      #avia_quick_css .avia_description {float: none;margin-bottom: 20px !important;padding-left: 0 !important;width: 98%}
      #avia_quick_css .avia_control {float: left;max-width: 98% !important;width: 98% !important}
      .avia_footer_links li {float: left;padding-right: 20px}
      .avia_footer .avia_footer_save {float: left}
      .avia_reset {display: none !important } 
      #avia_options_page { max-width: 3000px!important}
      </style>';
    }
    add_action('admin_head', 'admin_head_mod');

    it removes the button and it changes the position of the save all button to left position – due small screens
    additionally the whole options field is widened and the Quick CSS field is set to large.

    in reply to: Remove permanent link from the post h1 title #1220874

    When I install a new theme, I always look directly at how to install the corresponding child theme. With Enfold this is very easy. There is a pre-built one, which you just have to upload via ftp.
    An existing Enfold installation that you have already set up can easily be converted to a child theme.
    I think that the advantages of a child-theme outweigh the few disadvantages of a parent-theme only installation.

    If you need help, let me know.

    in reply to: Changing h3 html tags in enfold child #1220871

    hi Yigit – You can’t joke around here anymore either. I was just surprised to be called “Sir”.

    Btw.: this code above changes all widget titles to h4 even the footer ones?
    i thought he would only change these specific heading tags.

Viewing 30 posts - 5,611 through 5,640 (of 11,983 total)