Forum Replies Created

Viewing 30 posts - 8,851 through 8,880 (of 11,821 total)
  • Author
    Posts
  • in reply to: Contact Forms not sending. Not in spam or inbox #922414

    the thing has been happend on my webers-testseite.de
    so – the admin e-mail is the one i use allways on my pages. – So it has nothing to do with the website domain webers-testseite.de.
    maybe that is the reason why.
    on contact form 7 there was an input field for “from” and that had to be an e-Mail concerning to the website domain.
    For the reply they got an extra input field – that could be any e-mail you like. But it seems to be important that there is a congruency on “sending” e-mail account and domain. The CF7 Mails were allways delivered – the ALB Form not on that setup

    in reply to: Fullscreen background image #921375

    if you like to have allways the same background-image each page
    yes you have to find the page-id and set it as: (here is id: 211)

    .responsive body.page-id-211 {
        background-image: url(path-to-your-image);
    }

    from a screenshot it is hard to say what it is
    edit: by the way if you have a grid like
    1/2 1/2 and want to have on totally a 1/2 page filled – you have to put in on the right grid-cell a 1/1 container ;)

    did you try it with !important ?

    #team .av-special-heading-tag {
        text-transform: capitalize !important;
        font-weight: 300 !important;
    }

    or try ( this is three ids and one class)

    #top #wrap_all #team .av-special-heading-tag {
        text-transform: capitalize !important;
        font-weight: 300 !important;
    }

    have you a link for it?
    or make a screenshot of the whole tree please with the color-section

    sorry double post

    how about a screenshot of your ALB Layout – or a better description.
    You got one color-section – this color-section has the unique ID : team.
    All Headings in that Color-Section should be capitalized.

    And you tried already:

    #team .av-special-heading-tag {
        text-transform: capitalize;
        font-weight: 300;
    }
    in reply to: Enfold Showcase #920523

    who knows how to obtain that ? Even on Edge and IE11 ( bad but it works – fixed postitioning is nothing Microsoft can handle)
    with clip-path it will be not so simple but it works good – but not on Microsofts Explorers:
    https://webers-testseite.de/bernhard/

    Scroll a bit to see whats happening with scroll content over the header :lol

    By the way sometimes it is not synchronized ;) – well it is just an experiment

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: White screen of death after 4.2.5 update! #920347

    there are a lot of shortcodes which are now in a subfolder (iconbox, iconlist, hr etc) i believe on non ftp update these will not be erased – maybe that causes the wsod.
    By the way the newest wordpress has an code debugger – which reduces the wsod on functions.php mismatches.
    On former time an invalid code or double function names will cause a wsod too. Now you got a warning.

    in reply to: Contact Forms not sending. Not in spam or inbox #920317

    hm strange behavior – if i choose the normal form color scheme – the message has been sent ???
    dark-transparent – : no sending – even to the wordpess admin e-Mail

    Edit: no – onetime it works – the other time not ??

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Contact Forms not sending. Not in spam or inbox #920309

    some hosters do not accept different adresses than the one set in general options of the wordpress install.
    With CF7 – i now there is a different handling – and that works almost without any additional code .
    i tried your code :

    add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
    function avf_form_from_mod($from, $new_post, $form_params) {
        $from = " (Email address hidden if logged out) ";
        return $from;
    }

    but than the short message isn’t displayed after sending

    edit : and it is not sending – even when i use the code here: Link

    in reply to: Fullscreen background image #920299

    if you like to have the possibility to change the content from left to right cell.
    you have to give to the cell a class f.e. with-background

    than change this in your css (above i did it allready)

    .notfullsize .flex_cell.avia-builder-el-last {
        background-color: rgba(255,255,255,0.9) !important;
    }

    to :

    .notfullsize .flex_cell.with-background {
        background-color: rgba(255,255,255,0.9) !important;
    }

    see page: https://webers-testseite.de/naturleben/?page_id=211
    with 2/5 3/5
    and on bottom the other way round

    in reply to: Fullscreen background image #920281

    you don’t need it for every page – but i guess that was the aim – and your test page has the same.

    can you make a screenshot of your layout ?

    The flex-grid has the advantage. that you can put in every alb you like to have – even columns ! and on responsive case the empty grids are automatically gone to display none.
    If you can live with image shuffel – go and get for example : https://de.wordpress.org/plugins/responsive-full-width-background-slider/
    this is an older plugin – but it works as you can see it on testpage. If you don’t set it up as autoplay but with shuffel – there will be each time you open a page a different background.

    in reply to: Enfold Showcase #920186

    na schau mal einer an!
    Well, look here
    obfuscated or like kriesi would say: If you have changed the theme name or something like that you may want to re-name this file to better reflect your own branding.
    https://www.flyeralarm-movingpictures.com/unsere-videos/3d-animation/
    one of the biggest internet Printservices ! my respect

    in reply to: modify functions.php via child theme #919779

    on your code above it looks like you want to redefine the magazine size.
    redefine existing size

    function custom_modified_thumb_sizes( $size ){
    	$size['square'] = array('width'=>300, 'height'=>300 );			
    	return $size;
    }
    add_filter('avf_modify_thumb_size', 'custom_modified_thumb_sizes', 10, 1 );

    if you like to have f.e. masonry and magazine sizes to be selectable on image alb :

    add_filter( 'image_size_names_choose', 'avia_add_selectable_images' );
    function avia_add_selectable_images($sizes) {
    	$newsize = array (
    		'masonry' => __('Masonry Thumbnail','avia_framework'),
    		'magazine' => __('Magazine Thumbnail','avia_framework')
    	);
    	if(isset($newsize)){
    		$sizes = array_merge($sizes, $newsize);
    	}
    	return $sizes;
    }

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: modify functions.php via child theme #919774

    and if you like to modify an existing size:
    (i think the modify filter still exists) look for avf_modify_thumb_size

    in reply to: modify functions.php via child theme #919767

    and if you like to redefine the whole thing and add new sizes :
    https://kriesi.at/support/topic/adding-image-size-to-attachment-display-settings/#post-363481

    in reply to: modify functions.php via child theme #919758

    i only knew the code to add or overwrite a given image-size by : https://kriesi.at/support/topic/override-the-global-avia_config-in-a-child-theme/#post-714683
    so this code above is all you have inserted in your functions.php – i guess that there will be no effect (even after regenerating thumbnail sizes)

    and if new size is not selectable on alb element you can add with code here:
    https://kriesi.at/support/topic/more-image-sizes-in-folder-than-available-to-insert/#post-455442

    in reply to: Return video to homepage after it plays. #919741

    can you please post the whole syntax error – there must be a path behind – isn’t it ?

    Fixing the “Parse error: syntax error, unexpected T_FUNCTION” Error

    There are multiple ways in which you could fix the “Parse error: syntax error, unexpected T_FUNCTION” error. We’ll explore the different methods here, but first, let’s discuss the actual origin of these errors. Basically, the T_FUNCTION error appears whenever there’s some syntax errors within your plugin or theme files. It can either be a non-valid part of your code, or alternatively the plugin or theme is trying to use features of a more advanced PHP version than the one actually installed on your server.

    what php Version is running on your system

    in reply to: Hide page source #919238

    if you have no other chance to make it this way – try.
    Most security experts, however, do not see any sense in such plugins; rather another security risk.
    Read the testimonials on their own site.
    Test it – and report your experience here. – There are no easy answers in this regard except perhaps 42

    in reply to: Fullscreen background image #919236

    And – if you don’t like to determin for each page a background-image – and you can live with a slider – there will be with the same setup a plugin which handels the background.
    See testpage – on every refresh there will be a new background ( the other pages are not adopted to that layout)

    in reply to: Fullscreen background image #919042

    by the way – : this works much better in responsive case than your example page : http://terra-messflug.at/
    pull your browser window smaller and see.

    and you can play with the width of the grid-row on different pages.
    1/3 2/3 etc pp. but all have to have that custom class mentioned above

    in reply to: Fullscreen background image #919041

    each image here : click to enlarge

    1) use the stretched layout on enfold.
    2) logo and navigation on top
    3) header: logo left menu under it
    3a) Footer: dont display footer nor socket
    4) header-behavior : i have taken: Let logo and menu position adapt to browser window and sticky header
    5) goto Layout Builder and mark : “Show element options for developers”

    6) now we had to obtain your very small content
    6a) for each page you have to have that layout here:

    6b) and the grid gets this:

    7) now the css for quick css

    .responsive body {
        background-repeat: no-repeat;
        background-size: cover;
        background-color: transparent;
        height: 100vh !important
    }
    .responsive body.page-id-211 {
        background-image: url(path-to-your-image);
    }
    #header {
        width: calc(100% - 60px) !important;
        background: transparent;
        top: 30px;
        margin: 0 30px;
    }
    .html_stretched #wrap_all {
        background-color: transparent !important;
    }
    #main {
        background-color: transparent !important;
    }
    .main_color, .main_color .site-background {
        background-color: transparent;
    }
    .header_bg {
        opacity: 0.8 !important;
        filter: alpha(opacity=80) !important; 
    }
    .notfullsize .flex_cell.with-background {
        background-color: rgba(255,255,255,0.9) !important;
    }
    #av-layout-grid-1 {
        margin-bottom: 100px !important;
    }
    
    @media only screen and (max-width: 768px) {
    .responsive #top #wrap_all #header {
    margin: 0 30px !important;
    }
    }

    you see here on that css that you can now have for each page a different background-image

    .responsive body.page-id-211 {
        background-image: url(path-to-your-image);
    }

    to have now not a fullwidth grid-row insert this to your functions.php of your child-theme:

    function grid_layout_notfull(){
    ?>
    <script>
    (function($){
        $('.av-layout-grid-container.grid-notfull' ).wrap( '<div class="main_color notfullsize"></div>');
        $('.notfullsize').css({"clear": "both", "width": "100%" , "float": "left" , "position": "static" , "min-height": "100px" });
        $('.grid-notfull').css({"max-width": "1310px", "margin": "0 auto" , "padding": "0 30px"});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'grid_layout_notfull');

    if you need further assistance – your welcome
    if you have done it send me a link to fine tune it

    in reply to: Hide page source #919020

    i would like to see a page which is online with it.
    i guess there are a lot of security plugins – but nearly 90% goes to the category: snakeoil

    Currently, it has come to refer to any product with questionable or unverifiable quality or benefit.

    A lot of things can be done without the need of a plugin and with the benefit that it will not cost performance
    f.e.
    in htaccess file !
    this is one standard which i have on all my wordpress installs
    On those page which are very important to secure i do a htpasswd / serverside login. etc.

    # Secure your wp-config
    # Disallow access to important files
    <FilesMatch "(^\.|wp-config\.php|xmlrpc\.php|(?<!robots)\.txt|(liesmich|readme)\.*)">
       Require all denied
    </FilesMatch>
    
    # secure htaccess-file
    <files ~ "^.*\.([Hh][Tt][Aa])">
    order allow,deny
    deny from all
    satisfy all
    </files>
    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Fullscreen background image #919006

    if this is what you like to have – i tell you how to reach it.
    https://webers-testseite.de/naturleben/?page_id=211

    in reply to: Fullscreen background image #918978

    you see the link to the test-page: https://webers-testseite.de/fullbackground/

    in reply to: Hide page source #918952

    no – if someone has a bit of html knowledge it is not possible to hide it.

    What do you want to achieve with this ?

    Enfold offers something “to better reflect your own branding” via filter LINK

    /** All of the Styling options you set in the theme’s Styling options get saved to a file in your uploads folder called enfold.css.
    If you have changed the theme name or something like that you may want to re-name this file to better reflect your own branding. You can use the following function to do just that: */

    add_filter('avia_dyn_stylesheet_file_path', 'avia_change_filename');
    function avia_change_filename($stylesheet){
    return 'myfilename.css';
    }
    in reply to: Fullscreen background image #918937

    well – if it is with parent theme ok – it will be ok with child-theme too.
    You can achieve this only on page editor and a few css settings

    the point is if you like to have footer and socket ?
    you can see here a test-page. https://webers-testseite.de/fullbackground/
    with one color-section on top with a 100% height
    transparent-header setting (style the header-bg as you like)
    ( because there is no footer nor socket: you can have background-image with scroll too – or fixed)

    Content can be everything Enfold offers on alb elements

    you can have the same with background-video – hope it works for you ( on my end – yes it works)

    • This reply was modified 7 years, 9 months ago by Guenni007.

    hr.php : by the way the code has been changed a bit since 4.2.4
    and the folder-structure too. so now hr.php is in a subfolder called hr.

    See new download for hr.php since 4.2.4 here: https://webers-testseite.de/edited-enfold-alb-elements/#hr-with-id

    in reply to: HTACCESS Problem #918863

    By the way don’t tap in so called “snake-oil” tips

    Whether you find the following tips on websites or as part of a plugin – ignores them. For the normal user, their application often results in more problems than a measurable benefit:

    1) The removal of the WordPress version from the source code
    2) Modify the link to the WordPress backend (admin section) or put it on another link
    3) Change or adjust the path to the “wp-content” folder
    4) Remove or hide the author name
    5) […]

    These measures do not solve any problems in the long term, but make it more difficult for the user to operate and use WordPress.

    in reply to: How to change the colour of just 1 text input area #918862

    both will work – just add the color for the font to Rikards code

    in reply to: HTACCESS Problem #918597

    what is the reason for a htaccess file in wp-admin folder?
    to secure the admin area all methods i know have the htaccess file in the root directory and exclude from there all goodies.
    f.e. to have a password protection of wp-login.php with a htpasswd.

    something like this:

    <Files wp-login.php>
       AuthType Basic
       AuthName "Restricted Admin-Area"
       AuthUserFile /pfad/zur/.htpasswd
       Require valid-user
    </Files>
Viewing 30 posts - 8,851 through 8,880 (of 11,821 total)