Forum Replies Created

Viewing 30 posts - 24,001 through 24,030 (of 34,981 total)
  • Author
    Posts
  • in reply to: Background Images #1039721

    Hey djsmbd,
    Was it one background image for the whole page, or each section had a background image?
    Do you happen to have a screenshot of how it was?

    Best regards,
    Mike

    in reply to: Spam from contact forms #1039720

    Hi,
    I thought the problem was that spambots are targeting your site and contact form?
    Google Recaptcha is not 100%, no captcha is, even a honeypot is not 100% but it should help.
    Unfortunately we don’t have this as an option in Enfold yet.

    Best regards,
    Mike

    in reply to: Custom 404-Page is redirected with wrong HTTP-Status-Code #1039718

    Hi,

    You too :)

    Best regards,
    Mike

    in reply to: Facebook Links Not Working With Website #1039716

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Z-Index Question #1039712

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Contakt form: Autoresponder does not generate eMail #1039710

    Hi,
    Sorry for the late reply, I have tested your contact form using the WP Mail Log plugin that you installed, what it shows is that the contact form is sending the first message but not the autoresponder, which would show in the mail log plugin, but it is not giving any errors, also you are not getting ant errors from the page/site.
    This tells me that the error is in WordPress itself, not in the mail server. I didn’t find any customizations in the functions.php
    I suspect your Redux plugin since that is just about your only plugin, but typically Redux is part of something else, which is why it doesn’t have an un-installer. Please try to un-install.

    Best regards,
    Mike

    in reply to: Add Author to Masonry #1039692

    Hi,
    Sorry for the late reply, Please link to the page that has you masonry element, I didn’t find one in the source of your homepage.
    The masonry element does have the author included and typically just requires some css like this:

    .av-masonry-text-sep.text-sep-author, .av-masonry-author {
        display: block !important; 
    }

    2018-12-01-095922

    Best regards,
    Mike

    in reply to: Custom 404-Page is redirected with wrong HTTP-Status-Code #1039682

    Hi,
    Sorry for the late reply, I see that the dev team has opened a issue for this and is working on it. I’m sure they will post here once they have a solution, but I will also try to keep you informed of updates.

    Best regards,
    Mike

    in reply to: Image problem on variable products #1039677

    Hey VizuallElisa,
    Sorry for the late reply, are you using the Smart Variations Images plugin? I was researching your question and found that was the issue for someone else
    Here is another possible solution
    Have you tried disabling your plugins? This is the solution for many people, if this resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Spam from contact forms #1039674

    Hi,
    Here is a idea to block the spambots, try using the Contact Form 7 plugin with the Contact Form 7 Honeypot when a spambot fills in a hidden field that valid users can’t see it verifies that the submitter is a spambot, and the form is rejected as spam.
    Spambots blindly fill in all fields, regardless of if the field should be filled in or not.

    Best regards,
    Mike

    in reply to: internet explorer #1039662

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Z-Index Question #1039655

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function change_logo_zindex_on_menu_hover(){
    ?>
    <script>
    (function($){
    $(function() {
      $('.main_menu li a').hover(function() {
        $('.logo').css('z-index', '0');
      }, function() {
        $('.logo').css('z-index', '1');
      });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'change_logo_zindex_on_menu_hover');

    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: DEMO 2017 IMPOSSIBLE TO INSTALL #1039645

    Hi,
    Thank you, we will keep this open to hear back from you.

    Best regards,
    Mike

    in reply to: internet explorer #1039643

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .wpcf7#wpcf7-f468-p367-o1 p:nth-child(even) {
        width: 100% !important;
        float: left !important;
    }

    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    Hey kamcmillan,
    Please include the url to the page in question so we can take a closer look, I don’t seem to have this border on my demo.

    Best regards,
    Mike

    in reply to: How to display exact posting time? #1039531

    Hi,
    Thanks for the link it did help lead me to the correct function, so what you will need to do is ensure that WordPress > Settings > General > Timezone is set correctly, there is a info box that tells you what WordPress thinks is the local time which updates when you save the settings:
    2018-12-01-005012
    Then change the function to this one:

    function mm_post_date_time( $formatted, $format, $the_post = false ) {
    
    	if ( ! $the_post ) {
    		global $post;
    		$the_post = $post;
    	}
    
    	$post_date = get_post_time( 'M d Y g:i:s a', $gmt = 0, $the_post);
    
    	$output = $post_date;
    
    	return $output;
    }
    add_filter( 'the_time', 'mm_post_date_time', 10, 2 );
    add_filter( 'get_the_time', 'mm_post_date_time', 10, 3 );
    add_filter( 'the_date', 'mm_post_date_time', 10, 2 );
    add_filter( 'get_the_date', 'mm_post_date_time', 10, 3 );
    

    Best regards,
    Mike

    in reply to: Losing Content in Avia Builder #1039501

    Hi,
    Thank you, typically this kind of error occurs when there are un-closed HTML tags in the title fields.
    In this case you have an un-closed strong tag in the special heading of that page:
    2018-11-30-230013
    Please remove this and check your other title fields for more of them.

    Best regards,
    Mike

    in reply to: sticky header on mobile #1039490

    Hey xxtita,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
    position: fixed !important; 
    }
    .responsive #top #wrap_all #header #header_meta {
    z-index: 1 !important; 
    }
    .responsive #top #wrap_all #header .social_bookmarks {
    float: none !important;
    }
    .av-burger-menu-main.menu-item-avia-special {
    top: -60px !important; 
    }
    .responsive #top #wrap_all #header #header_main {
    height: 0px !important; 
    }
    .responsive #top .logo {
    display: none !important;
    }
    }

    Then please clear your browser cache and check.
    Please see the expected results screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: initial view on google maps #1039484

    Hey bobfurgo,
    Please set the zoom option when creating your map, to set the default zoom level.
    2018-11-30-220147

    Best regards,
    Mike

    in reply to: URGENT: Enfold.zip /// #1039483

    Hey Gareth Strangemore-Jones,
    For technical support please register here kriesi.at/support/register with your item purchase code .

    Go to https://kriesi.at/support/ select the theme you purchased bookmark the URL.

    Example: https://kriesi.at/support/enfold

    Scroll to the bottom of the page to open a new ticket.

    We will be more than happy to assist, when you create your support ticket for this issue, Please include a admin login & FTP access in the Private Content area so we can examine why you are having trouble installing the theme.

    Best regards,
    Mike

    in reply to: Losing Content in Avia Builder #1039481

    Hey KellyKilgallon,
    Thanks for the login, which page was this happening on? I created a test page in hopes to recreate your issue, but it didn’t. Please try the url in the Private Content area.

    Best regards,
    Mike

    in reply to: Facebook Links Not Working With Website #1039476

    Hi,
    I didn’t do anything, it must have been one of the previous things you did and once the server cache cleared it was resolved.

    Best regards,
    Mike

    in reply to: How to display exact posting time? #1039329

    Hi,
    To change the format edit the ‘M d Y g:i:s a’ part, following the link above. This works on my localhost, so it should work for you too. Or see if changing the format at WordPress > Settings > General > Date Format makes a difference, it does not for me.
    What format are you trying for?
    As for local time vs server time, I will have to research this more.

    Best regards,
    Mike

    in reply to: [re-open]How to remove space below logo+main menu area? #1039310

    Hi,
    Thank you for the image, I believe you are referring to a space that only shows when the screen is below 374px, Please see the screenshot in Private Content area.
    This is caused by the padding of the first element, to correct Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 375px) { 
    #top.home .flex_column_div.first.avia-builder-el-first {
    padding-top: 0px !important;
    }
    }

    Best regards,
    Mike

    in reply to: Porftolio Grid – Custom Titles? #1039235

    Hi,
    CSS can’t assign tags, but it can match the font size to your h3 tags. To give it a H3 you could use jQuery, but if this is for SEO I don’t believe that Google will see the h3 because the bot doesn’t allow jQuery when it loads a page.
    If you would like help with the css or jQuery, please link to the page in question so we can examine the structure.

    Best regards,
    Mike

    in reply to: Forms #1039232

    Hi,
    opps, good catch. I restore that code now, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to display exact posting time? #1039231

    Hi,
    I found a code example to base this function on at this GitHub The example turned the date into a time and then calculated how long “ago” the post was posted, I removed the final calculation and was left with the date and exact time of the post. The date & time can be adjusted using the standard WordPress date & time format.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    
    function mm_post_date_time( $formatted, $format, $the_post = false ) {
    
    	if ( ! $the_post ) {
    		global $post;
    		$the_post = $post;
    	}
    
    	$post_date = get_post_time( 'M d Y g:i:s a', true, $the_post );
    
    	$output = $post_date;
    
    	return $output;
    }
    add_filter( 'the_time', 'mm_post_date_time', 10, 2 );
    add_filter( 'get_the_time', 'mm_post_date_time', 10, 3 );
    add_filter( 'the_date', 'mm_post_date_time', 10, 2 );
    add_filter( 'get_the_date', 'mm_post_date_time', 10, 3 );

    Best regards,
    Mike

    in reply to: add more than one custom size #1039226

    Hey williamslyd,
    To add more custom image sizes, Try adding this code to the end of your functions.php file in Appearance > Editor:

    // add new size
    add_image_size( 'bigger-square', 250, 250, true );
    add_image_size( 'another-square', 350, 350, true );
    add_image_size( 'yet-another-square', 450, 450, true );
    
    // make the new size available in the media library (and image element etc.)
    add_filter( 'image_size_names_choose', 'my_custom_sizes' );
    
    function my_custom_sizes( $sizes ) {
    return array_merge( $sizes, array(
    'bigger-square' => __( 'Bigger Square' ),
    'another-square' => __( 'Another Square' ),
    'yet-another-square' => __( 'Yet Another Square' ),
    ) );
    }

    To adjust your new image sizes so they are cropped the way you would like, please read this article

    Best regards,
    Mike

    in reply to: Porftolio Grid – Custom Titles? #1039224

    Hey sdigit,
    Your solution sounds very good, I had thought of using Advanced Custom Fields to create a second title to be shown, but when looking into this it seems like it would be very involved. Another option would be to use jQuery to change to title but you would need to write each one out, which would be just as “hacky”
    So your solution may be best.

    Best regards,
    Mike

    in reply to: Facebook Links Not Working With Website #1039215

    Hi,
    I see that the errors are also gone now, so unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 24,001 through 24,030 (of 34,981 total)