Forum Replies Created

Viewing 30 posts - 25,261 through 25,290 (of 93,582 total)
  • Author
    Posts
  • in reply to: Api Key to register theme #1264361

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    in reply to: Problem with Google ReCAPTCHA in Woocommerce #1264359

    Hey creativeopole,

    The theme ReCaptcha is only used with the contact form, so I don’t think this is theme related. Could you try disabling all plugins, except WooCommerce, to see if the problem goes away after that please?

    Best regards,
    Rikard

    in reply to: custom widget > navigation menu reset over and over #1264357

    Hi,

    Thanks for the update and login details. I see that you are still running 4.7.5, could you try updating to the latest version of the theme please? If that doesn’t help then please give us step by step instructions on how to reproduce the problem you are having.

    Best regards,
    Rikard

    in reply to: Customizer cannot open childtheme. #1264228

    Hey LFK,

    Thanks for the login token, I can’t see any problems on my end though. Could you give us step by step instructions on how to reproduce the problem please?

    Best regards,
    Rikard

    in reply to: Customize woo-commerce message #1264225

    Hi,

    Thanks for the update. Please add this to your functions.php file in order to change the text:

    add_filter( 'wc_add_to_cart_message_html', 'albertopatrucchi_custom_add_to_cart_message' );
    
    function albertopatrucchi_custom_add_to_cart_message() {
      $message = 'This is your new text' ;
      return $message;
    }

    Then add this to Quick CSS and change the colours to your liking:

    #top div.woocommerce-message {
        border-color: #8BAF5B;
        background-color: #E0F1B5;
        color: #4F5F39;
    }

    Best regards,
    Rikard

    in reply to: don't load custom.css in wp #1264222

    Hi,

    Thanks for that, the login details are not working though. Please check and verify.

    Best regards,
    Rikard

    in reply to: Make image in header responsive? #1264220

    Hey MyMedicalShopper,

    We can’t see the screenshot you tried to post, please upload it to a service like Dropbox or Google drive, then link to it here. Also post a link to where we can see the actual problem.

    Best regards,
    Rikard

    in reply to: Upgrading theme enfold #1264219

    Hi Strahinja,

    Thanks for reaching out to us. The update to 4.7.x has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541

    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or use a plugin to upload the theme zip file: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/

    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.

    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    in reply to: Fehler im Backend beim Speichern #1264218

    Hey Felix,

    Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply. Also let us know where and how we can reproduce the problem.

    Best regards,
    Rikard

    in reply to: Change the size of a small button #1264202

    Hi,

    Thanks for the update. The easiest way would be to assign a class to your button elements. If you want a 12 pixel font size, then you could name the class button-12 for example. Then add this to Quick CSS:

    .button-12 span {
      font-size: 12px;
    }

    You can add as many classes as you like depending on which font size you want.

    Best regards,
    Rikard

    in reply to: demo import didn't work #1264194

    Hi,

    Thanks for the update. The details you posted look incomplete though, we need a URL to your site, a user name, and a password. Please post those details in private.

    Best regards,
    Rikard

    in reply to: Andere Schriftart für Woo Commerce #1264192

    Hi Sabine,

    Please try the following in Quick CSS under Enfold->General Styling:

    .woocommerce h1, .woocommerce h2, .woocommerce h3, .woocommerce h4, .woocommerce h5, .woocommerce h6 {
      font-family: verdana;
    } 

    Best regards,
    Rikard

    Hi Patrick,

    Thanks for that. You can select a category from the dropdown, the same place where you can select the language. The reason why there are pages included is likely that you don’t have any posts assigned to the only category you have in the french language for example. Please try assigning a post to the category, it should work as expected after that.

    Best regards,
    Rikard

    in reply to: Quotation marks change when page is safed #1264161

    Hey elbnetz,

    Please try this instead, without spaces between the characters:

    & # 3 4 ;

    Best regards,
    Rikard

    in reply to: Navigation Menu Font size #1264160

    Hi,

    Thanks for the update. So what exactly do you want to change? Please try to be as specific as possible. If you are looking to change the width of your site then you can do so under Enfold->General Layout->Dimensions.

    Best regards,
    Rikard

    in reply to: Woocommerce Reviwes #1264159

    Hey XLeads,

    Please try the following in Quick CSS under Enfold->General Styling:

    .thumbnail_container .rating_container {
        opacity: 1;
    }

    Best regards,
    Rikard

    in reply to: Main Menu sublevel drop downs font change #1264158

    Hi,

    Thanks for the update. We’ve based our choice of giving the page title an h1 tag on this article: https://yoast.com/how-to-use-headings-on-your-site/. Which states that the title of the page should use an h1 tag. I’m no SEO expert, but if I was in your situation, then I would follow the advice that Yoast is giving here. If you are going to use breadcrumbs, then I think it would be better if you used an h2 tag for your first manually added header instead.

    If you still want to change the breadcrumb then I will look for a solution for you.

    Best regards,
    Rikard

    in reply to: Nach Umstellung auf SSL wird eine andere Schrift angezeigt #1264157

    Hi,

    Thanks for that. You have PHP code in Quick CSS, please remove that:

    function remove_title_attr(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.your-custom-class a').attr('rel','nofollow');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    If that doesn’t help then please try to disable your caching plugin, there’s no point in having them active if your site is not live.

    Best regards,
    Rikard

    in reply to: Post: no output #1264156

    Hey welti,

    Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    in reply to: Tab Height not shown correctly #1264155

    Hey manuelapucher,

    Are you referring to the tab section element on the front page? If so then I can’t see any problem with it, all the tabs have the same space above the content on my end.

    Best regards,
    Rikard

    in reply to: Help, WPforms plugin not showing in Enfolds theme #1264153

    Hi,

    Thanks for that, I think you forgot to include a URL to your site though? Also please include step by step instructions on how to reproduce the problem you are having.

    Best regards,
    Rikard

    in reply to: easy slider full width: links are not working #1264148

    Hi,

    Great, I’m glad that Ismael could help you out. Please try this in Quick CSS in order to remove the overlay:

    .home #full_slider_1 .image-overlay {
      display: none !important;
    }

    Best regards,
    Rikard

    in reply to: catalogus enfold theme #1264147

    Hi Theo,

    Thanks for the update. So everything is working as it should now then? If your CSS is doing what you want it to do then I don’t see any point in changing it.

    Best regards,
    Rikard

    Hi,

    Thanks for that. You have this function in your child theme which removes the sticky class:

    /**
     * Remove sticky header on frontpage
     */
    function remove_sticky_header_on_frontpage(){
        if( is_front_page() ) {
            ?>
            <script>
                jQuery(window).load(function(){
                    jQuery('html').removeClass('html_header_sticky');
                });
            </script>
            <?php
        }
    }
    add_action('wp_footer', 'remove_sticky_header_on_frontpage');

    If you remove that then it should work as expected.

    Best regards,
    Rikard

    in reply to: Issue with easyslider #1264144

    Hi Steve,

    Thanks for that. It looks like the slider has not been updated, since there a lot of options missing from the version on your site. This is what the advanced tab in the element options is supposed to look like for example: https://imgur.com/a/tExYz9h

    It looks like you are overriding the slider in your child theme, and that is the likely cause of this problem. Could you try to copy the content from the parent theme files over to your child, and add back your customisations after that to see if that helps please? You could also try to activate the parent to check if everything works as it should then.

    Best regards,
    Rikard

    in reply to: Problem with post slider #1264142

    Hey Junior,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (min-width: 768px) {
    .custom-postslider .slide-entry {
        height: 300px;
        min-height: 300px;
    }
    }

    I’m not sure what you would like to change on mobile, could you try to explain a bit further or post a screenshot highlighting your intentions please?

    Best regards,
    Rikard

    in reply to: Full width Row #1264141

    Hi Sastry,

    Thanks for the update. Please try reaching out to the developers of the form plugin you are using, we can’t help you with that unfortunately.

    I’m not sure if it’s possible to add a contact form to a layerslider, but you can try to copy the shortcodes of a form if you enable debug mode: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode

    Best regards,
    Rikard

    in reply to: Tabs Click event #1264139

    Hi,

    Thanks for the update. Please try the following in Quick CSS under Enfold->General Styling:

    .active_tab {
      background-color: red !important;
    }

    Best regards,
    Rikard

    Hi,

    Thanks for that. Please try to add the elements on the right in a widget in the header: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Rikard

    in reply to: Different Menu on Mobile #1264136

    Hi ripanti,

    Thanks for the update. So you want to hide the kontakt menu item for desktop? If so then please try this CSS instead:

    #menu-item-764 {
      display: none;
    }

    Best regards,
    Rikard

Viewing 30 posts - 25,261 through 25,290 (of 93,582 total)