Forum Replies Created

Viewing 30 posts - 1,741 through 1,770 (of 9,352 total)
  • Author
    Posts
  • Hi,

    Bitte gehe zu der Theme Optionen-Seite und markiere die Checkox bei “Fehler 404 – Seite nicht gefunden” (vorletzte Checkbox unten).  Dann wähle eine Seite aus, welche angezeigt werden soll, falls ein 404 auftritt. Natürlich kannst Du auch vorher eine individuelle/spezielle 404 Seite erstellen.

    LG,
    Dude

    in reply to: Checkbox contact formular to data security contract #976949

    Hey!

    Yes, just install the latest Enfold version, then go to Enfold > Privacy and Cookies and tick the “Append a privacy policy message to template builder contact forms?” checkbox.

    Cheers!
    Peter

    in reply to: Gruppiertes Produkt mit verknüpften Varianten #976948

    Hi!

    Ich habe mich versucht anzumelden, konnte jedoch trotz Anmeldung nur eine Seite mit der Nachricht: “Liberty Roots im Wartungsmodus
    Entschuldige die Unannehmlichkeiten. Diese Website befindet sich aktuell im Wartungsmodus. Vielen Dank für ihr Verständnis.” sehen.

    Soweit mir bekannt ist, könnt ihr das Layout der gruppierten Produkte nicht auf variable Produkte übertragen oder umgekehrt. Ihr könnt daher entweder bei gruppierten Produkten bleiben, WooCommerce Plugins ausprobieren, welche “neue Kategorien” von Produkten hinzufügen (zB Produktpakete: https://woocommerce.com/products/product-bundles/ ) und welche eure Anforderungen erfüllen oder einen Entwickler dami beaftragen, euch WooCommerce so anzupassen, dass die variablen Produkte wie gruppierte Produkte dargestellt werden.

    Liebe grüße!
    Peter

    in reply to: Checkbox comments on blog: it doesn't show up #975900

    Hey tbsimpianti,

    It seems like the default wordpress comment form (which is supported by our theme and most GDPR plugins) is replaced with a modified comment form. I guess this is a Jetpack feature (see https://jetpack.com/support/comments/ ). Please deactivate the jetpack comments and the checkbox should work. If you want to use the jetpack comments I’d recommend to ask for support here: https://wordpress.org/support/plugin/jetpack because it’s not a theme issue and beyond the sope of our support forum. 

    Best regards,
    Dude

    in reply to: Can't get my favicon to update #975896

    Hey mframe!

    Did you try to clear your browser (and maybe your server) cache?

    Cheers!
    Peter

    in reply to: How to add icons to main menu items #975895

    Hey Monique,

    Personally I’d use html shapes ( https://www.w3schools.com/charsets/ref_utf_geometric.asp ) – easy and quick solution.  Just go to Appearance > Menus and paste the charset code (i.e. & #9679;  – but without the space between & and # – see https://www.w3schools.com/charsets/tryit.asp?deci=9679) into the “Navigation Label” field of the menu items.
    Best regards,
    Dude

    in reply to: Enfold Formular landet im SPAM #975893

    Hi!

    Ich lasse den Thread mal offen, sofern noch weitere Fragen auftreten.

    Best regards,
    Peter

    in reply to: Datum und Author zu Blogpost hinzufügen #975892

    Hey Oversberg,

    Soweit mir bekannt ist, gibt the_time() das Datum direkt aus, sodass Du es nicht mit weiteren Text verknüpfen kannst. Vesuche einmal diesen Code:

    
    function autordatum_function(){
    $postmeta = get_the_time('F j, Y');
    $postmeta .= get_the_author_meta( 'display_name', $authorID ) ;
    return '<div class="entry-meta">' . $postmeta . '</div>';
    }
    add_shortcode('autordatum', 'autordatum_function' );
    

    Mehr Informationen unter https://codex.wordpress.org/Function_Reference/get_the_time

    Best regards,
    Dude

    in reply to: [WPML / WP All Import] Code Blocks Failing on Import #975883

    Hi,

    We are unable to switch to the Advance Layout Builder. I’ve included the FTP details.

    That’s the problem – the code element requires the template builder to function properly.
    However as a quick fix I uploaded a modified version of the codeblock shortcode file (/enfold/config-templatebuilder/avia-shortcodes/codeblock.php). I commented out four lines and replaced:

    
    $content = ' [avia_codeblock_placeholder uid="' . avia_sc_codeblock::$codeblock_id . '"] ';
    

    with:

    
    //$content = ' [avia_codeblock_placeholder uid="' . avia_sc_codeblock::$codeblock_id . '"] ';
    

    and

    
    ShortcodeHelper::$shortcode_index += avia_sc_codeblock::$shortcodes_executed[ avia_sc_codeblock::$codeblock_id ];
    avia_sc_codeblock::$codeblock_id++;
    
    

    with

    
    //ShortcodeHelper::$shortcode_index += avia_sc_codeblock::$shortcodes_executed[ avia_sc_codeblock::$codeblock_id ];
    // avia_sc_codeblock::$codeblock_id++;
    
    

    and

    
    add_filter('avia_builder_precompile', array($this, 'code_block_extraction'), 1, 1);
    add_filter('avf_template_builder_content', array($this, 'code_block_injection'), 10, 1);
    

    with

    
    //add_filter('avia_builder_precompile', array($this, 'code_block_extraction'), 1, 1);
    //add_filter('avf_template_builder_content', array($this, 'code_block_injection'), 10, 1);
    

    The changes deactivate all “avia layout builder” dependencies and the codeblock will be processed directly like any other shortcode. The downside of my fix is that you won’t be able to use the codeblock with the “avia layout builder” anymore but we can revert the changes as soon as the template builder works again. I marked this thread for Günter to check the template builder issue.

    Best regards,
    Dude

    in reply to: Required checkbox (agreement) before downloading #975859

    Hey it-helpdesk,

    Enfold does not support such a feature out of the box but you can search the internet for tutorials and wordpress plugins – i.e. I found this one with a quick google search: http://www.coder-welten.com/download-buttons-mit-checkboxen-zur-bestaetigung/

    Best regards,
    Dude

    in reply to: GDPR data privacy checkbox for product reviews #975844

    Hi flipstar99!

    Yes, please add this code to the child theme functions.php file:

    
    
    add_action( 'comment_form', 'av_privacy_comment_checkbox_woo', 5 );
    function av_privacy_comment_checkbox_woo()
    {
      if(!is_product()) return;
    
      remove_action('comment_form', 'show_subscription_checkbox');
    
      if(is_user_logged_in()) return;
    
      $content = do_shortcode(avia_get_option('privacy_message'));
    
      $id = 'comment-form-av-privatepolicy';
    
      $output = '<p class="form-av-privatepolicy ' . $id . '" style="margin: 10px 0;">
          <input id="' . $id . '" name="' . $id . '" type="checkbox" value="yes">
          <label for="' . $id . '">' . $content . '</label>
          <input type="hidden" name="fake-' . $id . '" value="fake-val">';
    
      echo $output;
    }
    
    add_filter( 'preprocess_comment', 'av_privacy_verify_comment_checkbox_woo' );
    function av_privacy_verify_comment_checkbox_woo( $commentdata ) 
    {
        if ( ! is_user_logged_in() && isset( $_POST['fake-comment-form-av-privatepolicy'] ) && ! isset( $_POST['comment-form-av-privatepolicy'] ) )
        {
          $error_message = apply_filters( 'avf_privacy_comment_checkbox_error_message', __( 'Error: You must agree to our privacy policy to comment on this site...' , 'avia_framework' ) );
          wp_die( $error_message );
        }
    
        return $commentdata;
    }
    
    

    Cheers!
    Peter

    in reply to: API Key not working #975495

    Hi,

    If you exceed the “free credits” limit, yes – see https://cloud.google.com/maps-platform/user-guide/pricing-changes/

    Best regards,
    Dude

    Hi,

    Dazu kann ich leider nichts sagen – ich würde dbzgl. den Plugin-Entwickler kontaktieren.

    LG,
    Dude

    in reply to: How to "select a page to display as footer" #975488

    Hey laptophobo,

    Please create us an admin account and we’ll check your setup.

    Best regards,
    Dude

    Hi,

    As far as I know Copperplate is not a default windows font (see https://docs.microsoft.com/en-us/typography/font-list/copperplate-gothic ) and you must include the font files if you want to be sure that everyone can see the font. You could buy a webfont license – i.e. here: https://www.myfonts.com/fonts/urw/copperplate/webfont_preview.html or you can use this generator: https://www.fontsquirrel.com/tools/webfont-generator to generate a webfont from a ttf/otf-font file if you have already a license to distribute/use Copperplate as web font.

    Best regards,
    Dude

    in reply to: Gallery Widget not working properly #975480

    Hi,

    Because the layout (including the sidebar width) is fluid, the fixed thumbnail sizes can exceed the sidebar width and then the images move around. Please try to add this code to the quick css field:

    
    #top .widget .gallery .gallery-item {
        margin: 1px 1px 0 0;
        width: 24%;
        height: 24%;
    }
    

    The browser should then adjust the image sizes dynamically if the sidebar width changes.

    Best regards,
    Dude

    Hey royaltask,

    Ja, diese Einstellung (inkl. Inhalt der Datenschutzseite) sowie die Werkzeuge “Personenbezogene Daten exportieren” und “Personenbezogene Daten löschen” sind nur Benutzer mit der Berechtigung “manage_privacy_option” zugänglich. Siehe hierzu https://github.com/WordPress/WordPress/blob/master/wp-admin/privacy.php (Zeile 12 mit current_user_can( ‘manage_privacy_options’ ) …..

    LG,
    Dude

    in reply to: DataTables 1.10 and jQuery 1.7 in Enfold #975448

    Hi,

    Enfold uses the jquery version which is included with wordpress to avoid conflicts with other wordpress plugins and wordpress components. The latest stable wordpress version is 4.9.6 and includes jquery 1.12.4. Jquery 1.12.4 was released around two years ago: https://blog.jquery.com/2016/05/20/jquery-1-12-4-and-2-2-4-released/ whereas jquery 1.7 is older and was released in 2011: https://blog.jquery.com/2011/11/03/jquery-1-7-released/

    So if DataTables library requires “jQuery 1.7 or higher” it should also work with recent versions like jquery 1.12.4. If it does not work with jquery 1.12.4 please contact the DataTables library developer. Enfold will not work with old jquery versions like jquery 1.7.

    Best regards,
    Dude

    in reply to: Translate with poedit woocomemrce words #975444

    Hi,

    You can use the two files you edited with poedit (from the woocommerce folder). Just rename them to woocommerce-it_IT.mo and woocommerce-it_IT.po.

    Best regards,
    Dude

    in reply to: Translate with poedit woocomemrce words #975417

    Hi,
    Probably you need to upload these files with ftp into the language folder (path /wp-content/languages/plugins). The files should be named woocommerce-it_IT.mo and woocommerce-it_IT.po, so the final file paths should be /wp-content/languages/plugins/woocommerce-it_IT.mo and /wp-content/languages/plugins/woocommerce-it_IT.po.

    Best regards,
    Dude

    in reply to: Remove WooCommerce "Related Products" from shop page #975416

    Hey!
    Please try this code instead:

    
    add_action('init', 'avia_remove_related_products', 10); 
    function avia_remove_related_products()
    {
    	remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 20);
    }
    

    Cheers!
    Peter

    in reply to: Remove WooCommerce "Related Products" from shop page #974882

    Hi Dirk!

    Please try to add this code to the child theme functions.php:

    
    /**
     * Remove related products output
     */
    remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
    

    reference: https://docs.woocommerce.com/document/remove-related-posts-output/

    Regards,
    Peter

    in reply to: Logo in Burger-Menu einfügen #974876

    Hi,

    Sehr schön :)

    Best regards,
    Dude

    Hi,

    You can’t us the link if you don’t add the modal popup to the cookie banner. Günters plugin just enables you to use the modal window link anywhere on the page (and not just in the cookie banner area) but does not add add the modal window code to the page. But there’s a workaround.

    First go to Enfold > Privacy and Cookies and check the checkbox under “Modal window with privacy and cookie info”. Then add a Button (click on the green plus in the section “Buttons”) and select the button action “Open info modal on privacy and cookies”.

    Then use this css code to hide the button in the cookie bar:

    
    #top .avia-cookie-consent .avia-cookie-info-btn{
    display:none;
    }
    

    i.e. place it into the quick css field.

    Now you can place the button anywhere on the page by using the link:

    
    <a class="avia-button avia-cookie-consent-button avia-cookie-consent-button-2 av-extra-cookie-btn avia-cookie-info-btn " href="#"> Click here</a>
    

    or shortcode

    
    [av_privacy_popup button_text='your custom text' wrapper_class='' id='' class='']
    

    Best regards,
    Dude

    in reply to: Manuelles Masonry Tag – Wo? #973843

    Hi,

    You need to add these tags to the posts (or other entries) you want to show in you masonry grid. I’d recommend to add the masonry grid to a page, then check the results and add the tags “portrait” or “landscape” to the entries where you want to change the preview image height/width.

    Best regards,
    Dude

    in reply to: GDPR & Google Analytics Tracking #973840

    Hey!

    I’d recommend to study articles like: https://blog.marketing-factory.de/datenschutz/google-analytics-opt-out/ as a starting point. I’ll leave this thread open in case another user can provide more details.

    Cheers!
    Peter

    in reply to: Google Maps double-click solution #973560

    Hi,
    To be honest I did not look into it. It’s beyond the scope of our support forum and I don’t have the time to debug the code.

    Best regards,
    Dude

    Hi,

    Ja, man könnte zB das Menü einfach komplett ausblenden. Probiere diesen Code in das Quick CSS Feld einzufügen:

    
    .html_header_sidebar .main_menu {
        display: none;
    }
    

    Wenn dieser nicht funktionieren sollte, schicke mir bitte einen Link zur Website und ich sehe mir dann an, welcher Code bei deiner Website benötigt wird.

    LG,
    Dude

    in reply to: Discount #973425

    Hi Calle Morck!

    Unfortunately we can’t give a discount because Envato sells the licenses. You can try to contact them directly https://help.market.envato.com/hc/en-us/requests/new and to ask them, if they offer coupons or something similar.

    Cheers!
    Peter

    in reply to: Google Maps double-click solution #973421

    Hey!

    @Guenni007
    – probably the easiest solution is to use css to block the click event:

    
    #top .av_gmaps_confirm_link {
      pointer-events: none;
    }
    

    I strongly suggest don’t deregister the script like you suggested here: https://kriesi.at/support/topic/google-maps-double-click-solution/#post-973027 because it’s a core framework js file and we update it on a regular basis (probably with every update because of api changes). Thus your solution is not update safe either but might cause side effects cause the js file is outdated and breaks other framework components.

    Cheers!
    Peter

Viewing 30 posts - 1,741 through 1,770 (of 9,352 total)