Forum Replies Created

Viewing 30 posts - 1,711 through 1,740 (of 9,352 total)
  • Author
    Posts
  • in reply to: Avia Layout Builder doesn't appear #980678

    Hi,

    I checked the capabilities – please try read, upload_files, edit_published_pages, edit_pages, edit_published_posts, edit_posts, edit_files.

    Best regards,
    Dude

    in reply to: Tabellenformatierung #980672

    Hi,

    You can use the “custom css class” (“Benutzerdefinierte CSS Klasse” field) to add a custom css class to your table: http://www.clipular.com/posts/4511333538856960?k=I1WSjPrJ6YNKSR6CEZTW5vJvv-k

    I did this for the tables here: https://zfag.focus-demo.ch/leistungsausweis/ and added the class “right_td”. Note that your class name “right td” won’t work because spaces are not allowed (use underscores or minus symbols instead). I also had to replace the class names in the quick css field.

    Please clear your browser cache if you don’t notice any table styling changes.

    Best regards,
    Dude

    in reply to: Avia builder debug code for demo #980664

    Hey fanlokbun,

    1) You can activate the debug window by adding this code to the child theme functions.php file:

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

    2) Kriesi used this shortcode to create the typing effect:

    
    
    [av_headline_rotator before_rotating='Hi! I am Max and this is my portfolio. I can help you build a' after_rotating='Don’t be shy, get in touch!' interval='3' animation='typewriter' margin='40px,0,170px,0' tag='h3' size='5vw' align='left' custom_title='#0a0a0a' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av_uid='av-jffs3b9z' admin_preview_bg='']
    [av_rotator_item title='beautiful logo.' link='' linktarget='' custom_title='' av_uid='av-9kdge']
    [av_rotator_item title='successful brand.' link='' linktarget='' custom_title='' av_uid='av-dzkxq']
    [av_rotator_item title='thriving business.' link='' linktarget='' custom_title='' av_uid='av-a9cdi']
    [/av_headline_rotator]
    

    Best regards,
    Dude

    in reply to: Breadcrumb funktioniert nicht #980663

    Hi,

    I noticed you’re using the advanced layout builder. I’d recommend to use a shortcode to place the breadcrumb where you want. 

    1) Add this code to your child theme functions.php:

    
    function av_breadcrumbs_shortcode( $atts ) {
    return avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    }
    add_shortcode( 'av_breadcrumbs', 'av_breadcrumbs_shortcode' );
    

    2) Add a text block or code element to your pages where you want to display the breadcrumb (i.e. below the headline or image). Then insert this shortcode into the text/code element:

    
    [av_breadcrumbs]
    

    Best regards,
    Dude

    in reply to: Minify CSS and JS #980649

    Hi Gene!

    Since Enfold 4.2 you can use the performance settings to compress/minify the js/css files. Go to Enfold > Theme Options > Performance and enable the “CSS file merging and compression” and “Javascript file merging and compression” option. This will not affect theme updates, etc. – however I’d recommend to re-save the theme options after each update to regenerate the minified/compressed files manually.

    Cheers!
    Peter

    in reply to: Enfold does not register CPT from Types Toolkit? #979886

    Hi,

    This is not a high priority issue at the moment but we’ll look into it.  

    Can I hire a developer to create a child theme and somehow patch around this?
    Yes – this user https://toolset.com/forums/topic/my-custom-post-types-layouts-displays-nothing/ created a custom template from the single.php file and replaced the get_template_part() function with a the_content() function. I’d recommend to copy the single.php file to the child theme directory, then rename it to single-CPTSLUG.php (replace CPTSLUG with the slug of your custom post type) and open up the file. Then replace:

    
    get_template_part( 'includes/loop', 'index' );
    
    $blog_disabled = ( avia_get_option('disable_blog') == 'disable_blog' ) ? true : false;
    
    if(!$blog_disabled)
    {
    //show related posts based on tags if there are any
    get_template_part( 'includes/related-posts');
    
    //wordpress function that loads the comments template "comments.php"
    comments_template();
    }
    

    with:

    
    the_content();
    

    and save the file.

    Best regards,
    Dude

    in reply to: Filtering blog entries #979875

    Hey Dirk,

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

    Best regards,
    Dude

    in reply to: Send file in the contact form #979874

    Hey gabs01,

    No, the Enfold contact form does not support file uploads. You can install an advanced contact form plugin like Formidable .

    Best regards,
    Dude

    in reply to: Questions about compatibility and support #979872

    Hi,

    Glad I could help you :)

    Best regards,
    Dude

    in reply to: Questions about compatibility and support #979867

    Hey Bärbel,

    Buddypress is not officially supported but we’ll do our best to help you with small customization requests (i.e. styling issues with Buddypress pages, etc.).

    When you buy the theme you’ll get 6 months support for free. Here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Zweistein you can also extend support to 12 months. Afterwards you can prolong support from your themeforest user account page.

    Best regards,
    Dude

    Hey beyond-flora,

    Starting with version 4.3 the avia.js file does not contain the isotope/portfolio filter js code anymore. We decided to split the js/css code into multiple files to increase the theme performance ( https://kriesi.at/archives/enfold-4-3-performance-update ). Now the code will not load if no portfolio/filter element is embedded in the active page.

    To solve the issue you need to customize the theme files again. You can find the js code in enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.js

    The portfolio php code can be found in enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php.

    At the moment we do not plan to bundle your code with future updates. However you can suggest a new feature here: https://kriesi.at/support/enfold-feature-requests/ and maybe we’ll include it if we get positive feedback from other users.

    Best regards,
    Dude

    in reply to: Sort blog posts by descending order #979635

    Hi,

    The login credentials still didn’t work for me. However please try to add this code to the child theme functions.php file to change the post order globally:

    
    add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_desc', 10);
    function avia_modify_post_grid_query_desc( $query ) {
    if( !empty($query) ) {
    $query['orderby'] = 'date';
    $query['order'] = 'ASC';
    }
    return $query;
    }
    

    You can replace ASC with DESC to revert the order. 

    Best regards,
    Dude

    in reply to: Google Maps Plugin mit Routenplaner #979634

    Hi,

    Did you try to simply embed the shortcode into a “Text” element. You don’t need to use the “Code” element for shortcodes. You can try to replace the ” with a ‘ sign like:

    
    [wpgmza id='1'] 
    

    If it still doesn’t work please create us an admin account and we’ll look into it.

    Best regards,
    Dude

    in reply to: Editor Tap Under Appearance #979633
    This reply has been marked as private.
    in reply to: multi language site #979624

    Hi,

    Sounds like wordpress can’t send e-mails. Please try to install and configure a smtp plugin like https://de.wordpress.org/plugins/wp-mail-smtp/ – hopefully it will solve the issue. 

    Best regards,
    Dude

    in reply to: Logo wird nicht angezeigt #979571

    Hi,

    Ist das Problem jetzt gelöst? Die Website wird mir als sicher angezeigt und ich bekomme keine 404 Meldungen bei den Netzwerk-Ressourcen (Dateien nicht gefunden, etc.)…

    LG,
    Dude

    in reply to: Google Maps API #979570

    Hi,

    Did you set up a google maps platform account? Ohterwise the API key won’t work. Please don’t forget to configure your billing account ( https://cloud.google.com/maps-platform/ ). 

    Best regards,
    Dude

    in reply to: Shortcodes in WooCommerce Category Description #979569

    Hi,

    Please try to replace:

    
    echo $category->description
    

    with:

    
    echo do_shortcode($category->description);
    

    to execute shortcodes which are embedded in the description text. 
    Reference: https://developer.wordpress.org/reference/functions/do_shortcode/

    Best regards,
    Dude

    Hi,

    Ich habe den Link entfernt. Könntest Du bitte einen Admin-Account für mich einrichten – ich sehe mir das Problem dann näher an. Der Link weiter oben scheint nicht mehr zu funktionieren. 

    Liebe Grüße,
    Dude

    in reply to: Kurzbeschreibung Produktslider #977186

    Hi raidbowz!

    Füge folgenden Code in die child theme functions.php ein, um den “Produkt Kurzbeschreibung”-Text im Produkt-Slider und auf der Shop-Seite (inkl. Produktkategorieseiten) anzuzeigen:

    
    
    function woocommerce_after_shop_loop_item_title_short_description() {
    	global $product;
    	if ( ! $product->get_short_description() ) return;
    	?>
    	<div itemprop="description">
    		<?php echo apply_filters( 'woocommerce_short_description', $product->get_short_description() ) ?>
    	</div>
    	<?php
    }
    add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_after_shop_loop_item_title_short_description', 5);
    

    Liebe Grüße,
    Peter

    in reply to: Polylang 'pll_the_languages' on mobile #977184

    Hey!
    Glad the problem is solved now!

    Regards,
    Peter

    in reply to: Woocommerce "create account" checkbox not showing #977121

    Hey!
    Great, I’ll close the thread now.

    Cheers!
    Peter

    in reply to: Change Phone icon #977063

    Hi,

    You can try to add following code into the css field:

    
    #top .social_bookmarks li.social_icon_1,&nbsp;#top .social_bookmarks li.social_icon_2{
    border-right: 3px solid #fff !important;
    }
    

    By replacing 3 with a lower/higher value you can change the width of the separator. If you want to change the color replace #fff (white) with any other hex-color value ( https://www.w3schools.com/Colors/colors_hexadecimal.asp ). 

    Best regards,
    Dude

    Hi,

    Please try to add this code to the quick css field:

    
    #top #commentform p.comment-form-cookies-consent{
    <span class="webkit-css-property">margin-bottom</span>:&nbsp;<span class="value">30px</span>;
    }
    

    Best regards,
    Dude

    in reply to: fuzzy fonts #977061

    Hey ernaborbas,

    I’m not sure which letters you mean but I guess you want to change the font weight of the main menu links to make the letters thinner.

    You can add this code to the quick css field:

    
    #top .av-main-nav > li > a {
    font-weight: 400;
    }
    

    Replace 400 with a lower or higher value to change the font weight (lower = thinner). If this doesn’t solve the issue please describe which font you want to edit. 

    Best regards,
    Dude

    Hey!
    Ok, I’ll close this thread now.

    Best regards,
    Peter

    in reply to: Log-in Credentials #977056

    Hey John Staley,

    The support forum account is connected to your Envato/Themeforest account. Without the login credentials for the envato/themeforest account we can’t create you a support forum account.

    Best regards,
    Dude

    in reply to: Woocommerce "create account" checkbox not showing #977055

    Hey Sorprentas,

    I tested it and I can see a checkbox with “Een account aanmaken?”.

    Please note that WooCommere will not show the checkbox if you’re logged in. You must deactivate the coming soon mode, log out and then try to place an order…

    Best regards,
    Dude

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

    Hi!
    Ok, ich lasse den Thread mal offen :)

    Regards,
    Peter

    in reply to: Global Cookie Consent for Multisite Installation #976963

    Hey eny4W,

    I didn’t test it but you could try to replace line 53 in wp-content\themes\enfold\js\avia-snippet-cookieconsent.js

    
    document.cookie = CookieName+"="+CookieValue+expires+"; path=/";
    

    with

    
    document.cookie = CookieName+"="+CookieValue+expires+";domain=.example.com;path=/";
    

    Of course you need to replace example.com with you domain, however keep the dot before your domain (ie .mydomain.com).

    Reference: https://stackoverflow.com/a/23086139

    Best regards,
    Dude

Viewing 30 posts - 1,711 through 1,740 (of 9,352 total)