Forum Replies Created

Viewing 30 posts - 6,571 through 6,600 (of 25,536 total)
  • Author
    Posts
  • in reply to: Texte pour chaque catégorie de boutique #1276844

    Hi Julien,

    Can you give us a link to one of your category pages? you can post the link in private content so it can’t be seen by the public.
    The default category page should have a Category Name on top just like: https://kriesi.at/themes/enfold-2017/product-category/graphics/

    Best regards,
    Nikko

    in reply to: Some kind of glitch in blog grids #1276843

    Hey Dzimnikov,

    It seems you are using a Code Block for it.
    If you use a Blog Post element, try using this hook:

    add_filter('avf_postgrid_excerpt_length','avf_increase_postgrid_excerpt_length', 10, 1);
    
    function avf_increase_postgrid_excerpt_length($prepare_excerpt) {
      $prepare_excerpt = 300;
      return $prepare_excerpt;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: How do we add No Follow to links #1276838

    Hi Dave,

    We have no setting for that, however, you can add this code in functions.php:

    function nofollow_links() {
    ?>
    <script>
    (function ($) {
        $(document).ready (function () {
            var url = new RegExp(location.host);
    
            $('#top .a').each(function () {
                if( ! url.test($(this).attr('href')) ) {
                    $(this).attr('rel', 'nofollow');
                }
            });
        });
    }) (jQuery);
    </script>
    <?php
    }
    add_action ('wp_footer', 'nofollow_links');

    this script should check all the links and if it’s an external link it will add the nofollow to the link.

    Best regards,
    Nikko

    in reply to: Create a new content-element for all pages, blogposts etc. #1276827

    Hi,

    There’s an option to use Page as a footer, however, if this is not a good option for you then you can do the following instead:

    1. You’ll need to use a child theme, you can download and find instructions in this link: https://kriesi.at/documentation/enfold/child-theme/
    2. Go to functions.php of your child theme and add this code at the bottom:

    function builder_set_debug() {
    	return 'debug';
    }
    
    add_action( 'avia_builder_mode', 'builder_set_debug' );

    3. Create a separate page for the layout you want to put above the footer, once you have made the layout/design, go to the bottom of the builder, you should see a Textarea where some shortcodes are generated, copy all these codes.
    4. In functions.php again of the child theme, add this code:

    function enfold_before_footer() {
    	echo do_shortcode("SHORTCODE");
    }
    
    add_action('ava_before_footer', 'enfold_before_footer');

    replace SHORTCODE with the shortcodes you copied in step 3.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Change logo when scrolling down #1276815

    Hi DeMamp,

    Thanks for providing the code that you tried.
    The last one should work, can you give us a link to your site? (you can put it in private content) so we can try to inspect why it’s not working.

    Best regards,
    Nikko

    Hi jordip,

    Can you give us a link to that page? so we can try to give you some custom CSS codes that might help.

    Best regards,
    Nikko

    in reply to: Avia Layout Archtect Problem #1276811

    Hi BenRi,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Headline and buttons not showing #1276809

    Hi Online Media,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: spam comments #1276808

    Hey espressotech,

    You can use Captcha to block it: https://kriesi.at/documentation/enfold/contact-form/#how-captcha-works
    I would suggest trying to use a Numeric Captcha first then observe for few days, if that doesn’t work, try using Google reCaptcha which you can also use on top of Enfold’s Contact Form.

    Best regards,
    Nikko

    in reply to: page numbers font size bold #1276804

    Hi shihanze,

    I see, try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    .pagination .pagination-meta {
        font-size: 13px;
        font-weight: bold;
    }

    For the price filter text:

    .price_slider_wrapper .price_label {
        font-size: 15px;
        font-weight: bold;
    }

    For the price filter button text:

    #top .widget_price_filter .button {
        font-size: 15px;
        font-weight: bold;
    }

    Just adjust the font sizes.
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Avia Layout Archtect Problem #1276795

    Hi BenRi,

    Thanks for giving us admin access.
    I could see this error in the web console:

    Uncaught TypeError: this._addClass is not a function

    which is caused by this plugin: mobile.de Plugin
    To fix this temporarily I have installed and activated jQuery Migrate Helper plugin in your site and set it’s jQuery version to Legacy 1.12.4-wp.
    Once mobile.de Plugin updates is available and you have made the update, try to disable jQuery Migrate Helper plugin, if all is good then you can delete the plugin.

    Best regards,
    Nikko

    in reply to: Need to Update Theme #1276785

    Hi Odi Yuda,

    Thanks for contacting us!
    If you had lost the purchase details but still have access to the themeforest/envato account you used to purchase Enfold then you should still be able to download from there.
    However, if you also don’t have access to that account, you can try asking for assistance from themeforest/envato support to gain access to it, otherwise you’ll really need to buy a new one in order to upgrade to the latest version of the theme.

    Best regards,
    Nikko

    Hi wester_brad,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi jordip,

    Try using the Code Block and put your iframe code there, I don’t think it should be as seamless as with the Google Map element provided but it should still be okay.

    Best regards,
    Nikko

    Hi spamp,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Two general style in one site #1276733

    Hi spamp,

    I believe having 2 General Style only happens when your site is multi-lingual and uses a plugin like WPML, however, if it’s a single language then it’s not possible.
    You can however have Splash Blue as your general style then with the help of some CSS codes, set one or maybe few pages to use Splash Red theme color but in order to do this we would need to request for the page or pages you want to set as Splash Red and we’ll try to provide you with CSS codes to use.

    Best regards,
    Nikko

    in reply to: Theme not updating #1276732

    Hi marko7,

    Thanks for giving us admin access.
    Have you already made a backup of your site? and can we try to update your theme?

    Best regards,
    Nikko

    in reply to: Enfold Page Attributes are missing #1276727

    Hi Tony,

    You can use this email address: (Email address hidden if logged out)
    Then post the temporary login credentials in private content, so any moderator can look into the issue.

    Best regards,
    Nikko

    in reply to: Translate related products on product page #1276725

    Hi Audrey,

    We’re happy to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: ENFOLDCONTACT FORM #1276724

    Hi M-Graphics24,

    Have you entered it in Your email address?
    If yes, then can you try adding this code in your functions.php file:

    function change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'change_cf_from', 10);

    Just replace the email address.

    Best regards,
    Nikko

    in reply to: Play video full screen #1276720

    Hi markacramer,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Error with Enfold theme php #1276719

    Hi Urs,

    Thanks for providing the link, I could see this error showing (which most likely is the cause):

    Block validation: Block validation failed for core/shortcode

    which seems similar to the https://kriesi.at/support/topic/theme-backend-block-save-function-error/#post-1135836
    I tested this on your site and it seems to work properly however I returned it back since I’m not sure if you are using WordPress Gutenberg/Block Editor.
    I switched to classic editor in Enfold > Theme Options > Choose your editor set this to Use WP Classic Editor

    Best regards,
    Nikko

    Hi mai,

    To be honest there’s no issue similar to this and it’s pretty difficult to provide any solutions since we could not reproduce the issue on our end.
    If you could give us instructions on how we can reproduce this issue then we could try to provide fix for you otherwise we would really need to have a staging site that we could investigate.

    Best regards,
    Nikko

    in reply to: Show portfolio description in the frontend #1276709

    Hi mai,

    Thanks, I could see them properly now, I just noticed the difference in single quotes for example you posted this:

    let desc = $(‘#portfolio-category-description’);

    which cause issues, it should be replaced with this (noticed everything is almost similar except for the single quotes):

    let desc = $('#portfolio-category-description');

    Also in line 19 of functions.php you have this (backticks are removed):

    desc.find(.${filter}).show();

    it should be:

    desc.find(.${filter}).show();

    Best regards,
    Nikko

    Hi Andy,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    Hi elenagrassi,

    I have installed the plugin called WP File Manager to your site (this is just a temporary solution), you can now check in Appearance > Customize.
    Once you have updated to the latest version, you can deactive WP File Manager and delete it.

    Best regards,
    Nikko

    Hi mai,

    Yes, that’s correct.
    As for the boxes, I was expecting it would say something like it was disabled and change its setting in Enfold > Performance, this is the case on some servers where Load only used elements do not work properly, and to fix that, you just need to set it to Always load all elements
    However, since that’s not the case on your end, when it comes to issues with links, refreshing the links work in most cases.
    I tried to look up for similar issues but I could find none, that’s why we would need to have a staging site where can do further investigation on what’s causing this issue.

    Best regards,
    Nikko

    Hi Iulian,

    You’re welcome :)
    As for the error message, I don’t think there’s something you can do, but you can ask for assistance from your hosting provider.
    This was the image I tried to upload and had an issue: https://kriesi.at/themes/enfold-law/wp-content/uploads/sites/78/2018/05/hero2-bw.png

    Best regards,
    Nikko

    Hi mai,

    Can you try to refresh the permalinks?
    If that still doesn’t work, since the most possible fix to the issue does not seem to work on your end and though we understand that you are not allowed to provide login data for your live site but since we could not replicate the issue and we have nothing in which we can work on to try to resolve this issue it becomes really difficult, we would like to request for you (or someone from your team who has authority to do so) setup a staging site for us, so we can look further into this.

    Best regards,
    Nikko

    in reply to: Show portfolio description in the frontend #1276314

    Hi mai,

    The single quotes seem to be a bit different.
    Can you try to manually change the single quotes? just erase it then type manually.

    Best regards,
    Nikko

Viewing 30 posts - 6,571 through 6,600 (of 25,536 total)