Forum Replies Created

Viewing 30 posts - 721 through 750 (of 3,695 total)
  • Author
    Posts
  • Hey M1000000,

    Sorry for the late reply – but I was tagged for this topic today.

    At the moment there is no way out of the box.

    If you add to your functions.php file (in child theme):

    add_theme_support( 'show_advanced_custom_element_options' );

    in theme options – Custom Element tab you find a checkbox “Show advanced options” and there you find an option Custom Element Shortcode Buttons where you can select to group the custom elements similar to the normal elements.

    If you have programming skills:

    enfold\config-templatebuilder\avia-template-builder\php\element-templates.class.php line 2283:

    usort( $tab, array( $this, 'sortByOrder' ) );

    is the place where the default sort order is created in $tab.

    We can add a filter here in the next release if this helps you.

    Best regards,
    Günter

    in reply to: Thoughts about dividers #1290588

    Hey Guenter,

    Best regards,
    Günter

    in reply to: Sticky mobile menu #1290505

    Hi,

    Thank you for bringing this up.

    I added an issue to our dev repo and will have a look into it asap.

    Best regards,
    Günter

    in reply to: Problems with magazines and multi lingual #1290500

    Hi,

    Your welcome. If you need any futher assistance feel free to come back.

    Enjoy the theme and have a nice day.

    Best regards,
    Günter

    in reply to: Problems with magazines and multi lingual #1290384

    Hi,

    Thank you for your feedback and glad it is working now.

    The xml file is hosted by WPML on github and WPML always connects to this file. The version in theme folder is only left for backwards comp. with old WPML versions.

    So there is nothing to do from our side.

    Best regards,
    Günter

    in reply to: Images with link #1290109

    Hi,

    Have a great day !

    Best regards,
    Günter

    in reply to: Problems with magazines and multi lingual #1289957

    Hi,

    Thank you for your feedback. We will keep this topic open. Have a great day.

    Best regards,
    Günter

    in reply to: Problems with magazines and multi lingual #1289863

    Hi,

    I tried to reproduce the problem on my dev server. Using WPML’s Advanced Translation Editor I’m not able to reproduce the problem.

    In my opinion it is a problem with the classic translation editor (which as far as I heard will be deprecated in future) and switching around with the editors in the different languages.

    I would suggest that you try the Advanced Translation Editor, only edit the german language and translate only in the provided popup fields and do not open the translated post in an editor.
    WPML provides good support also for Enfold and if you have problems/questions in using WPML.

    As a first step I would suggest that you open a ticket at WPML – and describe the problem and provide your video.

    In case you do not find a solution to your problem with the regular support staff please come back with the link to your support thread there and we will contact the compatibility team directly to find a solution for your problem.

    Best regards,
    Günter

    in reply to: Enfold Gaming Demo Menu functionality on Sub Menu #1289666

    Hi,

    Please see line:

    let item = $(<code>#top .av-subnav-menu a[href*=\'${entry}\']);

    In my opinion

    ${entry}

    should be replaced with:

    " + entry + "

    Best regards,
    Günter

    in reply to: Images with link #1289593

    Hi,

    We added a slightly modified filter to our docu:

    Best regards,
    Günter

    in reply to: Images with link #1288932

    Hi,

    You need to query the image title in your function:

    $title = get_the_title( $id );

    And i would not rebuild the html code in this filter but just insert the title attribute. My final solution would be:

    
    function html_insert_image( $html, $id, $caption, $title, $align, $url, $size, $alt ) 
    {
    	$html = str_replace( '<img ', '<img title="' . esc_attr( get_the_title( $id ) ) . '" ' , $html );
    	return $html;
    }
    
    add_filter( 'image_send_to_editor', 'html_insert_image', 10, 8 );
    

    Best regards,
    Günter

    in reply to: Broken Stylesheet CSS Chain #1288762

    Hi,

    Glad to hear it is working for you now.

    Are you talking about bbPress on your site?

    bbPress has own post type forum, topic, reply in wp_posts database.

    Check for a plugin setting to limit time of posts in past – just an idea.

    Best regards,
    Günter

    in reply to: Images with link #1288717

    Hi,

    Good catch with the filter.

    I think we should add the filter to core that we add the title to new added images (with an option in SEO tab to disable this).

    But for existing images in already existing pages (where only the img tag html exists and probably no reference to the attachment id ) it will be difficult.

    Best regards,
    Günter

    in reply to: Images with link #1288445

    Hi,

    Sorry, but no hint for that problem.

    Instead of hacking tinyMCE – wouldn’t it be easier to switch to text mode and add the attributes manually to HTML? Depends how often you need it.

    But thanks in advance for reporting back when you have found some solution.

    Have a great day.

    Best regards,
    Günter

    in reply to: Broken Stylesheet CSS Chain #1288442

    Hi,

    Most Theme options are stored in a single array in your database table wp_options.

    You can query it with:

    SELECT * FROM 'wp_options' WHERE 'option_name' like 'avia_options_%'

    There are a few other options but that are mostly e.g. only key for Google Maps, …

    For import of demos we only use avia_options_[theme name]

    Hope this helps you.

    Best regards,
    Günter

    in reply to: mobile behavior on icon grid #1288438

    Hi,

    Thanks for your feedback – yes, I restructured the js file a bit as the last solution was not really good and might have caused problems when more than 1 grid was on the page.

    Have a great day.

    Best regards,
    Günter

    in reply to: Yoast Schema Integration #1288380

    Hi,

    Thanks for coming back.

    We have it in our dev repo – but at the moment we are not able to give a timeline when we are going to start to work on it.

    Best regards,
    Günter

    in reply to: mobile behavior on icon grid #1288371

    Hi,

    I added an option where you can activate this feature: “Mobile Flip Box Close Behaviour”

    Please update enfold\config-templatebuilder\avia-shortcodes\icongrid\icongrid.js + php with:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_1/icongrid/icongrid.php
    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_1/icongrid/icongrid.js

    Do not forget to clear server and browser cache.

    Will be part of the next update.

    Best regards,
    Günter

    in reply to: Images with link #1288331

    Hi,

    The “media” button in tinyMCE is standard WP. Actually a WP bug I would say.

    When you switch from visual to text mode you see the generated HTML by WP containing the alt but not the title. Enfold does not hook in this.

    Only way I see is try to add the image shortcode manually – but keep an eye on the layout, that it gets not broken.

    Best regards,
    Günter

    in reply to: previous/next post on portfolio page #1288330

    Hi Vera,

    Glad you got it to work.

    Please update to 4.8.1 as soon as possible – there is a small bug in 4.8 when saving pages that might break layout in frontend adding unwanted br tags.

    Best regards,
    Günter

    in reply to: previous/next post on portfolio page #1288040

    Hi,

    I had a look into your problem.

    On my dev server with Enfold 4.8.1 I’m not able to reproduce the problem. I have demo Enfold 2017 imported.

    You made several changes – I tried to reproduce them on my dev server also – but even with the filter avf_post_nav_settings from your functions.php and adding and removing

    $avia_post_nav = avia_post_nav();

    from template-builder.php and footer.php i can see the post nav.

    There must be something other causing the problems.

    I would suggest you set up a staging site with 4.8.1, import Enfold 2017 demo and check by yourself. Then make your changes and check, until it breaks.

    If nothing breaks then you can copy the files to your other server and check (keep a copy of your other files).

    Best regards,
    Günter

    Hi phouthuijzen,


    @phouthuijzen

    There had been a invalid character at the beginning of styles.css – opening it in WP theme editor showed a red point. Removing this it is working now.

    Best regards,
    Günter

    in reply to: Some more accessibility tweaks #1288024

    Hey THP,

    Thanks for reporting this.

    I checked all elements that use class=’avia-slideshow-arrows’ and added

    aria-hidden="true" tabindex="-1"

    I hope this fixes the problems. Will be in next release 4.8.2.

    If you encounter any more problems let us know please.
    Have a nice weekend.

    Best regards,
    Günter

    in reply to: Images with link #1288013

    Hey Guenter,

    If I follow your idea it would be necessary to extend the metadata of an image (in WP media popup attachment details sidebar) with:

    • Lightbox Title
    • Lightbox Description

    and add the metadata info to all ALB img tags (like alt, title, caption, desc, lightbox-title, lightbox-desc) ?

    Best regards,
    Günter

    in reply to: customized lightbox markup #1287983

    Hey Guenter,

    Sorry for the late reply – but I was tagged to this yesterday.

    I did not test, but you can try to add class “noLightbox” to the image.

    This should exclude the image from our default binding to magnificPopup and you can add your magnificPopup.

    Best regards,
    Günter

    in reply to: image alt in masonry gallery #1287785

    Hi!

    As mentioned above – background images have no alt.attribute.

    Please check the following articles:

    http://christianheilmann.com/2009/02/25/so-how-do-you-add-alternative-text-to-background-images/
    https://stackoverflow.com/questions/4216035/css-background-image-alt-attribute
    https://stackoverflow.com/questions/48913759/how-to-add-alt-text-to-background-images-making-background-images-accessible

    There are workarounds, but they increase the size of the page – which might also stand in opposite of having small loading times.

    I have opened an issue in our dev repo and we will discuss it.

    Best regards,
    Günter

    in reply to: Columns broken after update to 4.8 #1286483

    Hi,

    Sorry once again for the troubles.

    Glad we could help you fix the problem.

    Have a great day and enjoy the theme. Feel free to come back when you need further assistance.

    Best regards,
    Günter

    Hi,


    @jaripp
    @M1000000

    Thanks for your interest in the new feature and reporting this.

    Checking the code I found an unnecessary query for the frontend. Removing this the amount of queries dropped for me on a testpage.

    As a CET is stored in a post, there is a little overhead, depending on the amount of different CET used on a page ( we cache already queried CET ).

    If you want to check:

    Replace enfold\config-templatebuilder\avia-template-builder\php\element-templates.class.php with the content of:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_1/element-templates.class.php

    If you use WPML you also need to replace enfold\config-wpml\class-avia-wpml.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_1/class-avia-wpml.php

    Do not forget to make a backup of the original files for a fallback and clear server and browser cache.

    Best regards,
    Günter

    in reply to: What has been changed on 4.8.1 #1286404

    Hi,

    With 4.8 there were a lot of changes necessary concerning the custom elements – Hope you managed your changes.

    I will close this topic – have a nice day.

    Best regards,
    Günter

    in reply to: What has been changed on 4.8.1 #1286402

    Hi,

    With 4.8 there were a lot of changes necessary concerning the custom elements – Hope you managed your changes.

    I will close this topic – have a nice day.

    Best regards,
    Günter

Viewing 30 posts - 721 through 750 (of 3,695 total)