Forum Replies Created

Viewing 30 posts - 4,231 through 4,260 (of 11,531 total)
  • Author
    Posts
  • in reply to: Disaster of My Own Doing #1293525

    no – i’m kidding ;)
    with the few pages I would also quickly rebuild with the content that I get via wayback machine (you can get the images via ftp).

    • This reply was modified 4 years, 3 months ago by Guenni007.
    in reply to: Disaster of My Own Doing #1293512

    i do not know how Backupbuddy does a backup. What files do you get after updating?

    Another tip for the future.

    I like most this duplicator plugin – and the freeware is as mighty as the pro version – pro has only some scheduling options and multi-site support.
    it generates two files one installer and one zip file – with a complete backup of your page – and the database.

    in reply to: Disaster of My Own Doing #1293509

    When did that happen?

    if you have no other backup – or you can not open that backup you have and have a look into them – then you can at least view the contents of some pages via the Wayback machine.
    https://web.archive.org/

    the last catch was the 24.01.2021 : https://web.archive.org/web/20210124084742/http://www.propshopep.org/

    for example: you can copy&paste the content from their site
    About us:

    As far as i can see – a lot of pages are in that catch:
    By the way the chocolate must now go to Bonn/Germany ;)

    in reply to: Custom header height distorts logo #1293505

    i wouldn’t do that with header widget area. these are links that seems to be part of a navigation but only with icons in front and with two line labels.
    So why not use the menu and to have those menu points with a custom-class. Your normal menu floats left – these two menu-points float right. Thats all.
    the icons can be placed in pseudo-containers – and the two line label can be inserted by a label with a span inside – f.e.:
    Anfrage<span class="menu-break">stellen</span>

    the rest is quick css – and what is very nice – the shrinking is included – and the links are in hamburger too from the beginning.
    see: https://webers-testseite.de/weber/

    sollte dich das interessieren sag einfach Bescheid. Dann versuche ich es hier zu beschreiben.

    read carefully: https://kriesi.at/support/topic/changing-avia-iconbox-title-to-h2/#post-1261597

    the child-theme usage of edited enfold alb elements – works if you insert to your child-theme functions.php :

    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);

    The trick is to have a copy of the alb element ( in your case: buttons_fullwidth.php ) in a subfolder of your child-theme folder: shortcodes and to edit this copy.

    Because this child-theme folder is untouched on an update of the parent theme – entries and edited alb elements are not influenced.
    But if there are major changes on the parent file – you had to synchronize these edited elements again by new edited files.
    But that is something which did not change the layout – it can cause that this alb element didn’t have the new features of the parent element.

    in reply to: Custom header height distorts logo #1293467

    on a shrinking header they overlap after scrolling.
    But now you set the header to non-shrinking. ( ok that problem is solved by this )

    shrink the browser window ( make it narrower ) or look to your page on a mobile device:
    the left hamburger overlapping slider is the active one – the right one is without function ( twice hamburgers )

    Ipad view: ( all tablets ):
    overlapping navigation etc ( both navigation list points are not clickable anymore by the overlapping header widget area )

    in reply to: Spaces between the grid lines #1293465

    btw. if you always have the background-image in the first container – you can give them a min-height if you are in responsive case:

    @media only screen and (max-width:989px) {
      .av-layout-grid-container .avia-builder-el-first {
        min-height: 290px;
      }
    }

    otherwise you will only see a 100px height when the cells go under each other.

    – if you like to have the background-image on different cells – put in that cell with the background-image a separator whitespace with f.e: 250px

    in reply to: Spaces between the grid lines #1293462

    i do not see with developer tools only how you have layouted this page – The best thing would certainly be to give a mod here access to the backend. I believe you are calling a page here within this site that contains blog posts.

    hm – this isn’t realy nesting ( on projecten-2 ) – due to different generation of the single portfolios they have different outlook.
    Because you show portfolios all content – the ones which comes with color-sections and columns etc. that are made with advanced layout builder have all the colorings the single post have.
    This causes the different background colorations.

    If you temporarily copy these rules into your Quick css, you will see ( on projecten-2 ) that there is no nesting here – all content is cleanly separated from each other.

    .page-id-3341 #av_section_3 .container {
        background-color: #dde8f1;
    }
    
    #top .av-alb-blogposts.template-blog div.post_delimiter {
        border-color: #333 !important;
    }

    next first example page: …

    in reply to: Custom header height distorts logo #1293354

    such a font logo just demands to be represented by an svg

    in reply to: Related to Sticky Header #1293228

    After you have updated that Enfold Version – even let the option on Enfold and disable jQuery Migrate there too – it is not needed then anymore.

    in reply to: Related to Sticky Header #1293226

    on your live site you are still running jQuery 1.12.4 – don’t know if it is due to jQuery Migrate Helper.
    on your staging site it is jQuery 3.5.1 so this is a newer version – go and update your Enfold to the latest Version there.

    in reply to: Related to Sticky Header #1293222

    And both are on the same Enfold Versions? i can not prove it because you renamed the theme and tilted style.css entries about Version.
    i ask because we had that on a former Enfold where the header size on a shrinking header is from the beginning on that shrinked size.
    And i’m shure you couldn’t set up a size to 47.5px over the Enfold Options Dialog.
    That was due to WordPress and the upcomming of jQuery 3.5.1. Enfold 4.8.1 hasn’t that little bug.

    @ismael – nice short code – i will try that too – if it will work on my test installation


    @hacart
    – if you post code here on board – please use the code function on top of the input area:
    click code on top – enter your code ( paste in ) – click again ( now you see it is a closing code tag)
    it is much easier to verify the code if all signs are in a copy-ready form.

    Edit: if he has one social-bookmarks placed.
    and we had to find a solution if he wants footer socialbookmarks too. Then the selector: “.social-bookmarks” is there twice.
    And though i got on my testpage the hamburger icons twice.
    Btw: on my testpage these inserted lists are on display: none – but that might be a setting unique for my installation.
    But test it in your page – and look with developer tools if these icons are there but not displayed.

    in reply to: Custom header height distorts logo #1293106

    please scroll your site.
    the header widgets overlap the header borders, and the logo is obscured by the navigation.

    and narrow the screenwidth of your browser
    overlapping widgets and menu – after hamburger is present – two burger icons – one inactive

    in reply to: Custom header height distorts logo #1293096

    where does these “advanced_menu_toggle” and “advanced_menu_hide” come from? do you need them? they have a 30px height in the header without content!

    in reply to: Custom header height distorts logo #1293095

    you had to make a decision what to do with this header widget on responsive case.
    Maybe the setting on header – header behavior – “Let logo and menu position adapt to browser window” is a first good option for you?
    you had to look where the second inactive hamburger icon comes from.
    Maybe a non shrinking header would be a good alternative for you ?

    in reply to: Custom header height distorts logo #1293094

    you set the height to 150px and !important
    twice on line 134 and 145 and a few other settings are not set very well.

    first get rid of the whole setting: height, max-height, width on both settings.
    then we have a look what to do with the other parts.

    look to your header widget settings and replace or add :

    #header .widget_text {
      top: 50%;
      padding: 0 !important;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }
    in reply to: SVG-images in logoslider #1293064

    hm – i can not confirm this – on Enfold 4.8.1 and WP5.7 you can even have animated svgs inside logoslider:
    https://webers-testseite.de/partner-logos/

    The code on the bottom is only to ensure the same width / same height of the logos
    Can you post such a svg you try to insert?

    just paste the svg code inside a code here.

    PS : read this to have a preview in ALB Elements and inserted svg Images: https://kriesi.at/support/topic/alb-preview-images-and-svg-insert/

    in reply to: Button row not working on mobile #1292740

    you can set to those extra elements a pointer-event: none
    can you show me your site – i’m participant as you are – so i can not see private content area!

    .avia_transform .av-extra-border-element {
        pointer-events: none;
    }
    in reply to: Background color for caption #1292720

    i have always been a supporter of diversity. Leave Enfold as it is – and add only a few missing elements.
    It is this framework that is a unique selling point and builds the success of Enfold.

    in reply to: Background color for caption #1292701

    So why do you wish Enfold would evolve in that direction, and do not just use Divi instead – If it’s so great to work with?

    I bought a lifetime access account of Divi – as many installations and lifetime updates as I want. So it would be much cheaper even for me to install Divi. But I prefer to work with Enfold and do my layouts much faster than with Divi – and I would hate to see a change in the way I layout. Of course you are right that some elements like the section divider are missing. Enfold will probably offer an upgrade in this direction in the near future.
    Enfold is more intuitive to use in my opinion, and therefore better to use for editing by customers. The frontend editing of Divi reminds me of the time when I still did print design and had to layout letter papers in WordPress for some clients. To simply place an image exactly there drove me crazy.

    in reply to: ADMIN BYPASS PASSWORDS #1292623

    thats why i link to the list above.
    the capabilities are correlated to the roles.
    only super admins ( only on multi-site installation) and admins are able to manage options:

    when you open that drop down list to choose the telegram option – it is not placed in alphabetical order – it is at the bottom of that list.

    btw: https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    scroll a little to “Using images or non-Fontello icons” if you like to use an image on that – and not a font-icon

    in reply to: ADMIN BYPASS PASSWORDS #1292438

    i found this with a filter to bypass password .
    in child-theme functions.php:

    add_filter( 'post_password_required', 'remove_password_requirement_for_admins', 0 );
    function remove_password_requirement_for_admins( $required ) {
        if ( current_user_can( 'manage_options' ) ) {
            $required = false;
        }
        return $required;
    }

    maybe this will work for admins:

    
    add_filter( 'post_password_required', 'remove_password_requirement_for_admins', 0 );
    function remove_password_requirement_for_admins( $required ) {
        if ( current_user_can( 'administrator' ) ) {
            $required = false;
        }
        return $required;
    }

    you can see here some infos about options in a table : https://wordpress.org/support/article/roles-and-capabilities/#capability-vs-role-table
    because manage_options is only for admins allowed the above should work too.

    in reply to: telephone number not clickable in header sub menu #1292125

    A picture is worth a thousand words ;)
    click to enlarge the image:

    in reply to: Thoughts about dividers #1291969

    Prima

    • This reply was modified 4 years, 3 months ago by Guenni007.

    But the principle should have been recognized soon or?
    There is no z-index for a background image. Therefore the set image must come somehow into a new container, which then moves altogether by means of z-index a layer higher than the back container. The pseudo-containers “before” and “after” are suitable for this. In principle, they are child containers, but they are independent containers. The trick is to inherit the image to them. This is the meaning of “inherit” the takeover from the parent element. Then you only have to give these pseudo containers their own properties (content, positioning, dimensions, the background image from the parent element via inherit, etc.) So that clickable elements of the parent element remain active, these pseudo elements must be set with pointer-events:none.

    in reply to: can't override archive.php in enfold-child #1291871

    btw: another enfold based site : https://www.bruichladdich.com/
    ;)

    i prefer the Octomore (if I can financially afford it.)

    • This reply was modified 4 years, 3 months ago by Guenni007.
Viewing 30 posts - 4,231 through 4,260 (of 11,531 total)