Forum Replies Created

Viewing 30 posts - 23,941 through 23,970 (of 34,981 total)
  • Author
    Posts
  • in reply to: GDPR: random external content consent #1041467

    Hey The Shadow,
    Sorry for the late reply, there is not a built-in option to give to the visitors to load the content like this, although there maybe a plugin to do this by conditional loading elements as shortcodes. Is there going to be third party cookies from the content? You may not have to do this without cookies?

    Best regards,
    Mike

    in reply to: Cleaning up multiple picture sizes #1041466

    Hey TanSmi,
    Sorry for the late reply, for your situation I would recommend using the Simple Image Sizes plugin, you can set the image sizes that you don’t want to use to zero, and then use the built-in image regenerate to fix the images and thumbnails. This is better than deleting the images via ftp, because it will also fix them in the database.

    Best regards,
    Mike

    in reply to: Column Links: BIG problem regarding anchor texts & SEO #1041465

    Hi,
    I’m not sure exactly, there are quite a few changes in the works right now. The thought behind this text is that it is there for the screen readers, that is why the class for the link is “av-screen-reader-only” Glad to hear that this worked out for you, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Add widget left and right to the Header #1041463

    Hi,
    Do you mean a text block in the header widget area, or somewhere else?
    It seems that most of your text is in a text block element on your site, so to change the line height for only certain text block elements you will want to add a custom class to the by ensuring that the box is checked at: Enfold Theme Options > Layout Builder > Show element options for developers then the custom class box will show when editing it.
    Then your css would look like this:

    .avia_textblock.custom_class  {
    line-height: 1em !important; 
    }

    Best regards,
    Mike

    in reply to: Help with grid height #1041223

    Hey geertroggeman,
    Sorry for the late reply,
    I believe that this post may help because it includes the shortcode that you can paste into your site to see the solution in action.
    Please see this post about how to Enable Avia Layout Builder Debug

    I would recommend using a css solution to adding a text overlay, here are some examples:
    https://pavenum.com/en/images-and-text-overlays-in-html-css/

    https://www.the-art-of-web.com/css/textoverimage/

    Best regards,
    Mike

    in reply to: WordPress Multisite Settings #1041213

    Hey anthonycamilleri,
    Sorry for the late reply, you would need to configure each instance of the theme on your multisite manually, or you could use a plugin such as MultiSite Clone Duplicator

    Best regards,
    Mike

    in reply to: Internal server error #1041210

    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: Enfold – Enable previous and next post navigation #1041209

    Hi,
    The code from the WordPress Codex will not work for you “as-is”
    Can you please include a admin login in the private content area so we can assist. If I understand correctly you would only like the category “news” to show the arrows?
    Also please include a link to the page you are checking this with.

    If you added the first code correctly to the functions.php then your code in your css may not be correct, my use of news-cat was an example from my install, your actual category name may be different and I will need to see the page to determine the actual name.

    Best regards,
    Mike

    in reply to: Menu: Logo Link #1041204

    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: problem update 4.5 failed #1041203

    Hi,
    Please follow the steps here
    You will be replacing your API key with a token, if you have any troubles please read the Troubleshoot section on the linked page. Another option is to Install the Envato market plugin and set up your token key with it, instructions on the same page.

    Best regards,
    Mike

    in reply to: Internal server error #1041202

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

    Best regards,
    Mike

    in reply to: problem with spam in contact form #1041087

    Hey sitibus,
    Sorry for the late reply, I understand that a spam bot seems to be able to send a message without checking the mandatory check box, I believe that this is because they are actually checking the box but using javascript to change the value on the page in hopes to by-pass a possible filter.
    I believe that the best approach is to install a security plugin that will log the ip addresses of the bots and block them, such as Cerber Security, Antispam & Malware Scan or one of these others
    Another recommendation is to use a contact form that includes a Honeypot.

    Best regards,
    Mike

    in reply to: Column Links: BIG problem regarding anchor texts & SEO #1041077

    Hey tixxpff,
    One solution is to change the text in your theme, please go to:
    \enfold\config-templatebuilder\avia-template-builder\php\generic-helper.class.php line 154 and look for:

    return __( 'Follow a manual added link', 'avia_framework' );

    and adjust to suit. This method will set the text to be the same for every column link across your site.

    A second solution is to add a unique custom class to each column link, and then use this function to change the text. With this method you could add different text to each column link.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function change_column_link_text(){
      ?>
      <script>
    (function($){
    $(window).load(function(){
    $(".column1").find("a.av-screen-reader-only").text("my new link text");
    $(".column2").find("a.av-screen-reader-only").text("more new link text");
    });
    })(jQuery);
    </script>
      <?php
      }
    add_action('wp_footer', 'change_column_link_text');

    in this example, change the custom column class .column1 and the text you want it to read: my new link text This example handles two links, but you can add as many as you wish.

    Best regards,
    Mike

    in reply to: left justify text in button #1041067

    Hey vbanks7,
    When I take a look at your button the text is centered, with equal padding around it.
    If I understand correctly you would like the text aliened to the left edge of the button?
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-button-left.avia-builder-el-5 a {
    text-align: left !important; 
    }
    .avia-button-left.avia-builder-el-5 .avia-button.avia-size-large {
        padding: 15px 40px 13px 5px !important; 
    }

    Best regards,
    Mike

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

    Hi,
    How about that, I didn’t know WP Mail Logging used the Reduxe framework.
    I’m going to ask the rest of the team to take a look at this issue, thanks for your patience.
    also it seems that the login doesn’t work right now, please check so the team can login.

    Best regards,
    Mike

    in reply to: Update Theme #1041059

    Hi,
    I logged in and deleted your old theme, activated your cache plugins and cleared you site cache.
    So you are all set now, please enjoy your newly updated site :)
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Internal server error #1041055

    Hi,
    Thank you for white listing my IP, I looked at the enfold folder in the theme directory and it had the path of /enfold-new/enfold-new/
    So it was a folder inside of a folder, I corrected this and it now works correctly.
    I couldn’t login to your site, but I varied via the source code.
    Please check that everything is working correctly, and if it is then feel free to delete the “enfold-old” folder via ftp (not the theme panel)

    Best regards,
    Mike

    in reply to: Menu: Logo Link #1041053

    Hi,
    Sorry, please change the code to this:

    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
        $link = 'http://kriesi.at' ;
        return $link;
    }
    function av_logo_link_target(){
    	?>
    	 <script>
    	jQuery(window).load(function(){
    	jQuery('.logo a').attr('target','_blank')
    	});
    	 </script>
    	<?php
    	}
    add_action('wp_footer', 'av_logo_link_target');

    Best regards,
    Mike

    in reply to: import demo problem #1040745

    Hi,
    This is something that I have seen recently with Godaddy managed hosting, but not on the regular Godaddy hosting. I believe it a security setting, but I’m not sure. I keep many of the demos installed on my localhost, and I uploaded the /wp-content/uploads/ folder to your site, it has the images and other assets, then I made a copy of the demo import file “shop.xml” from \wp-content\themes\enfold\includes\admin\demo_files and replaced all of the demo image urls to your site so during the import they were imported from your site instead of ours. Sometimes it’s necessary to make a couple of theme settings adjustments.
    Most hosts don’t have a problem with the demo installer.

    Best regards,
    Mike

    in reply to: Menu: Logo Link #1040738

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

    
    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
        $link = '"http://kriesi.at" target="_blank"' ;
        return $link;
    }

    Please adjust the link to suit.

    Best regards,
    Mike

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

    Hi,
    I recommend placing the code at the end of your functions.php, while it will work in functions-enfold.php it’s not proper.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Disable price-hiding function #1040589

    Hey bobjonesdesigns,
    I believe that this article has the code to force the price to show: Force WooCommerce to always show selected variation price

    Best regards,
    Mike

    in reply to: Enfold Child Theme #1040586

    Hey ideasbyeb,
    Please use our pre-built child theme or you can use it as your base and customize it to suit.

    Best regards,
    Mike

    in reply to: import demo problem #1040579

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

    Best regards,
    Mike

    in reply to: Update Theme #1040577

    Hi,
    I uploaded your new version and renamed your old version to “enfold-old”, and disabled your caching plugins so there would not be a conflict with the cached files. Please clear your browser cache and check that your site is working as expected.
    If it is then you (or I) can delete the folder “enfold-old” via ftp (not from the theme panel) and then enable your caching plugins again, please ensure to clear the cache.
    If for some reason you want to switch back to the old version, then via ftp, rename the enfold folder to “enfold-new” and then rename “enfold-old” to “enfold”

    Best regards,
    Mike

    in reply to: Internal server error #1040571

    Hi,
    Thank you, I was able to login to your site and ftp using a Spain VPN, and I tried to upload the new theme in a folder called “enfold-new” but the connection was very unstable, and I received many errors.
    I believe that my VPN is very good, but it could have been the issue, but if it was your server, then I would understand why you got a error 500 when you updated.
    Please try using your webhost file manager, and delete the folder I created “enfold-new” at \wp-content\themes\, then upload the “enfold-new.zip” I have attached in the Private Content area, and use the “extract” option in your file manager to unzip it (extract it) it will create the “enfold-new” folder.
    Then rename your old enfold folder to “enfold-old” and rename “enfold-new” to “enfold”
    Then test your site, hopefully by uploading the zip file you won’t have damaged files and your site will be updated. If it doesn’t work, then rename your folder back to the way they were so your “enfold-old” is once again “enfold”.
    Sorry for all of the steps, but I just can’t do it via ftp, and I don’t want to use the update plugin because you already had trouble once.

    Best regards,
    Mike

    in reply to: Adding Padding to logo #1040550

    Hi,
    I’m not sure how much padding you would like to add, so I gave this css 20px top padding”

    .logo img {
        max-height: 70% !important; 
    }
    div .logo {
        padding-top: 20px !important; 
    }

    Please try adjusting the padding-top & the max-height, to achieve what you are trying for.
    Please see the screenshot in Private Content area of the expected before and after.
    After adding the css to your WordPress > Customize > Additional CSS Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Update Theme #1040542

    Hi,
    Please include it here in the Private Content area. Thanks.

    Best regards,
    Mike

    in reply to: Background Images #1040540

    Hi,
    That’s great news! Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Internal server error #1040298

    Hi,
    Please see Private Content area, please tell me which country you are in should I need to try a vpn.

    Best regards,
    Mike

Viewing 30 posts - 23,941 through 23,970 (of 34,981 total)