Forum Replies Created

Viewing 30 posts - 211 through 240 (of 9,352 total)
  • Author
    Posts
  • in reply to: Layout of forum #1014271

    Hi,

    No we do not offer a special forum theme. I noticed the layout doesn’t look good because of the background color which makes it hard to read the forum posts. Please add this code to the quick css field:

    
    .bbpress .container_wrap.main_color, #top #wrap_all .main_color .bbp-reply-content {
        background: #fff;
    }
    

    to change the background to white (the contrast is then better and the user can read the posts easily).

    Best regards,
    Peter

    in reply to: Footer issue | Copyright #1014213

    Hey!
    I think the footer.php template is outdated because the parent theme template does not set any constants in the footer.php template. Personally I’d recommend to update your child theme template with the code of the parent theme template. If that’s not an option please use a service like pastebin https://pastebin.com/ to post the code of your child theme footer.php and I’ll review it.

    Best regards,
    Peter

    in reply to: Footer issue | Copyright #1014183

    Hey AWZ,

    Which version of Enfold are you using? Please check if the latest version 4.4.1 is installed. I couldn’t view your website because it’s password protected.

    Best regards,
    Peter

    in reply to: Mobile menù #1014181

    Hi,

    Please check your website again. I added following code to the functions.php:

    
    function avia_footer_scripts_close_menu(){
    ?>
    <script>
    jQuery('.html_av-submenu-display-click').on( 'click', 'a', function (e) 
    {
    	var avia_custom_burger_menu = jQuery('.av-burger-menu-main a').find('.av-hamburger');
    	avia_custom_burger_menu.parents('a').eq(0).trigger('click');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'avia_footer_scripts_close_menu', 999);
    

    Best regards,
    Peter

    in reply to: Contact Form – MailChimp Optin #1014160

    Hey jaimemerz,

    The standard contact form which comes with the theme does not support such a feature out of the box. I’d recommend to use a contact form plugin like Contact form 7 ( https://wordpress.org/plugins/contact-form-7/ ) which can be extended to support mailchimp ( https://wordpress.org/plugins/contact-form-7-mailchimp-extension/ )

    Best regards,
    Peter

    in reply to: Woocommerce cart doesn't work in several browsers #1014156

    Hi,

    You can try to disable all plugins except WooCommerce to check if it’s a plugin conflict. If it still doesn’t work it’s propaply a server configuration issue. In this case I’d recommend to talk to the host/server administrator.

    Best regards,
    Peter

    in reply to: "Recent posts" widget not visible #1014154

    Hi,

    The sidebar is hidden by default on mobile devices. Please add this code to the quick css field to show it on mobile devices too:

    
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #main .sidebar {
        display: block;
    }
    }
    

    Best regards,
    Peter

    in reply to: Enfold – Language change #1014151

    Hey alex_0111,

    Yes you need to change the file name to de_AT.po. Then open up the file with a text editor and replace

    
    "Language: de_DE\n"
    

    with

    
    "Language: de_AT\n"
    

    You then need to regenerate the mo file (de_AT.mo)

    Best regards,
    Peter

    in reply to: In which php file must I place my Advanced Custom Fileds code? #1014142

    Hi!

    Glad we could help you :)

    Regards,
    Peter

    in reply to: Google API #1014100

    Hi,
    I think you forgot the username – when I try to log in with the credentials above I get “ERROR: Invalid username. Lost your password?”

    Best regards,
    Peter

    in reply to: Facebook Pixel Code and GDPR #1014097

    Hi,

    Thank you for your honest feedback :)

    Best regards,
    Peter

    in reply to: Woocommerce cart doesn't work in several browsers #1014094

    Hi,

    Do you use a server cache or wordpress cache plugin? I noticed the issue only occurs if I’m logged out. When I’m logged in the cart page works flawlessly. The issue is also not theme related. I tested the cart with the default wordpress theme (TwentySeventeen) and it also doesn’t work if I’m logged out.

    Best regards,
    Peter

    in reply to: Check Box "Don't display image on single post" Not Saving #1014075

    Hey wiredlab,

    Your code just adds the post meta but does not save it. You can use this code to save the field data:

    
    add_action( 'save_post', 'mmx_cpt_featured_image_meta_save');
    function mmx_cpt_featured_image_meta_save( $post_id )
    {
        if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
    
        if ( 'page' == $_POST['post_type'] ) 
        {
            if ( !current_user_can( 'edit_page', $post_id ) )
            return;
        }
        else
        {
            if ( !current_user_can( 'edit_post', $post_id ) )
            return;
        }
    
        $data = $_POST['_avia_hide_featured_image'];
        update_post_meta($post_id, '_avia_hide_featured_image', $data);
    }
    

    Best regards,
    Peter

    in reply to: Error when activating choices theme #1014071

    Hey Federico,

    Based on the error message I think your php version is outdated. Please upgrade to php 5.6 or a newer version. The recommended PHP version for wordpress is PHP 7 ( https://wordpress.org/about/requirements/ ). If you don’t know how to upgrade the php version please ask the host / server administrator to help you.

    Best regards,
    Peter

    in reply to: Multiple languages – own translations. #1014069

    Hi,

    You need to use a plugin like WPML. The plugin won’t do the translation work for you but it enables you to create new pages for your translations and to connect them with the original, non translated pages. It also helps you to add translated menus, translated widgets and a language switcher to your website.

    Best regards,
    Peter

    in reply to: Responsive Problems #1014066

    Hey tbp,

    Can you please check the login credentials – when I try to log in I get the error message: “ERROR: The username or password you entered is incorrect. Lost your password?”

    Best regards,
    Peter

    in reply to: Thrive Architect Not working on Enfold anymore #1014063

    Hi,

    I added this code to the quick css field:

    
    html.js_active{  min-width: auto; }
    

    Please check if it fixes the issue on your end too.

    Best regards,
    Peter

    Hi,

    I could not find any obvious reason why both plugins don’t play nice together. This issue is beyond the scope of our support forum because it has nothing to do with our theme. If you switch to the default wordpress theme both plugins still won’t work together. If you want support for the plugins please talk to the plugin authors.

    Best regards,
    Peter

    in reply to: How to edit name without breaking site? #1013816

    Hi!
    Great, glad we found a solution :)

    Cheers!
    Peter

    in reply to: How to edit name without breaking site? #1013784

    Hi!

    Yes the settings are stored for each child theme separately and Enfold uses the theme name to access the settings. Thus you loose the settings if the theme name changes. Please try to export the theme settings first (Enfold > Theme Options > Import/Export – Export Theme Settings File). Then switch to the parent theme, rename the child theme, switch back to the child theme and go to Enfold > Theme Options > Import/Export – Import Theme Settings File to import the settings again.

    Cheers!
    Peter

    in reply to: MailChimp : "Something went wrong, please try again." #1013732

    Hi!

    Great, glad I could help you :)

    Regards,
    Peter

    in reply to: Google Ananlytics #1013725

    Hey pittercod,

    Nein – Google-Ananlytics wird immer geladen, jedoch wird der disable-tracking Wert gesetzt, sobald der Benutzer seine Zustimmung zum Tracking widerruft ( https://developers.google.com/analytics/devguides/collection/analyticsjs/user-opt-out , siehe auch https://www.medienkraft.at/google-analytics-dsgvo-konform/ ). Zusätzlich setzen wir immer den anonymize_ip Parameter, damit grundsätzlich keine personenbezogenen Daten (insb. IP Adressen) erfasst werden.

    LG,
    Peter

    in reply to: special Menu #1013720

    Hey Sandra,

    Enfold does not offer such a sidebar menu out of the box however you could use the photography demo content ( https://kriesi.at/themes/enfold-photography/ ) as a starting point and a plugin like: https://de.wordpress.org/plugins/advanced-sidebar-menu/ for the sidebar menu.

    Best regards,
    Peter

    in reply to: PayPal Plus no redirection to PayPal #1013715

    Hi,

    Great, glad I could help you :)

    Best regards,
    Peter

    in reply to: Picture Product just in the Description #1013714

    Hi,

    Please try to set featured images for your products and then add this code to the quick css field:

    
    #top .inner_product .thumbnail_container {
        display: none;
    }
    

    to hide the featured images on the shop/products overview page.

    Best regards,
    Peter

    in reply to: Admin notice issue #1013710

    Hi road66!

    Please create us an admin account and we’ll look into it.

    Regards,
    Peter

    in reply to: PayPal Plus no redirection to PayPal #1013708

    Hey!

    I fixed it. I had to disable the “Load jQuery in your footer” setting (Enfold > Theme Options > Performance).

    Best regards,
    Peter

    in reply to: Developer ID turned on but not showing #1013700

    Hi web6s!

    Please create us an admin account and we’ll look into it.

    Best regards,
    Peter

    in reply to: Theme pre sale #1013699

    Hey George Chrysochou,

    1) No Enfold does not come with a translation tool. However we official support WPML and you can also try other free plugins like Polylang ( https://wordpress.org/plugins/polylang/ ).

    2) No because this depends on many different factors (host/server, third party plugins, content, etc.) which the theme can’t control. However we built Enfold with performance in mind and with a cache plugin you should receive good results.

    3) Yes as long as no page builder was used to build the pages, posts, etc. If a page builder was used you might need to rebuild the layouts with our Advanced Layout Builder.

    4) I’d recommend our shop demo page: https://kriesi.at/themes/enfold-shop/

    Best regards,
    Peter

    in reply to: Adding text after products in product-category #1013664

    Hey!

    1) Please try this code:

    
    #top #wrap_all #av_product_description h1 {
    font-size: 25px;
    text-transform: none;
    font-weight: 200;
    }
    

    2) You can use the word-break: break-all; attribute to break the words on smaller screens:

    
    #top #wrap_all #av_product_description h1 {
    font-size: 25px;
    text-transform: none;
    font-weight: 200;
    word-break: break-all;
    }
    

    Cheers!
    Peter

Viewing 30 posts - 211 through 240 (of 9,352 total)