Forum Replies Created

Viewing 30 posts - 691 through 720 (of 3,704 total)
  • Author
    Posts
  • in reply to: how to use : avf_custom_svg_shapes #1312651

    Hi,

    Why is the media uploader structure independent when assigning a media attachment ID

    If you look at config-templatebuilder\avia-template-builder\php\class-svg-shapes.php line 120ff you see the structure for defining you custom shape (added with 4.8.5):

    
    		 'attachment'		=> int			attachment id of uploaded media
    		 'attachment_negative'	=> int			attachment id of negative uploaded media
    

    The attachment ID has info to the path of the uploaded file. When using ID’s ‘path’ and ‘filename’ are ignored.

    Best regards,
    Günter

    Hey!

    Sorry for the problems.

    Thank you for reporting this. I added a fix in the next upcoming version 4.8.5 – was uploaded to Theme Forest a few minutes ago.

    Hope this solves the problem.

    Please let us know.

    Best regards,
    Günter

    in reply to: Please contribute and translate Enfold #1312094

    Hi Roger,


    @EZWebdesign

    Thanks a lot for this. Is merged into core for next release.

    Best regards,
    Günter

    in reply to: how to use : avf_custom_svg_shapes #1311937

    Hi,

    Thanks for this. See below.

    Best regards,
    Günter

    in reply to: how to use : avf_custom_svg_shapes #1311761

    Hi,

    Thanks a lot for the feedback.

    I opened an issue in our dev repo to implement these improvements.

    upload via Media Library

    I can add “attachment_id” as additional parameter to shape definition – to be independent from uploader directory structure.

    Best regards,
    Günter

    Hi,

    yes, I added a fix and it worked on my install.

    If you check enfold\js\shortcodes.js (at the bottom) you find $.easing functions with 1 argument.

    Please make sure to clear server and browser cache.

    Best regards,
    Günter

    Hi,

    I tried to update your functions.php in child theme for testing but I could not.

    At the moment Enfold does not support the block editor in the widget page (and probably other plugins also not).

    In next release we will deactivate the block editor by default.

    Meanwhile can you try to add this to your functions.php of the child theme please:

    
    	// Disables the block editor from managing widgets in the Gutenberg plugin.
    	add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
    	
    	// Disables the block editor from managing widgets.
    	add_filter( 'use_widgets_block_editor', '__return_false' );
    

    or you can use this plugin: https://wordpress.org/plugins/classic-widgets/

    Best regards,
    Günter

    in reply to: how to use : avf_custom_svg_shapes #1311095

    Hey Guenter,

    Yes, in our docu:

    Best regards,
    Günter

    in reply to: Table from database #1310302

    Hey maxh_muc,

    Thank you for using Enfold.

    Out of the box there is no easy way.

    What you have to do is create the complete shortcode av_table and then call do_shortcode with this string.

    Please enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor

    This lets you view the shortcode for all the page elements.

    The following steps can give you an idea how to do it:

    – Create an empty page
    – Add a new table element (in the debug window you see the shortcode for this “empty” element)
    – Select the options as if you would enter the table manually – this will set all shortcode attributes for the table
    – Add a single line and style it (this will set all shortcode attributes for a single line
    – The shortcode in the debug window is the frame.
    – Now your script must add all lines using av_row as “template” for a single line.
    – The final string (av_table – av_row …. – /av_table ) can be passed to do_shortcode().

    Hope this helps you.

    Best regards,
    Günter

    in reply to: Logo SrcSet? #1310143

    Hi @thinkjarvis

    thanks for pointing at this.

    I readded in 4.8.4 the logo dimensions width and height (same used prior 300 * 100 – see filter avf_logo_dimension ) even if scrset and sizes is set.

    And you now can also use the url from media library instad of attachment ID (you need to select “Full Size”, because we find the attachment ID via attachment URL).

    Best regards,
    Günter

    in reply to: 4k+ pages crashes enfold back-end!? #1309891

    Hi,

    sorry for the late reply.

    As a first step you can try to modify the value of 4000 and increase it.

    If this works you can add the following filter to your functions.php of your child theme (or parent theme) to be safe on upgrades:

    
    function custom_avf_dropdown_post_number( $limit, $post_type, $element, $context )
    {
    	$limit = 9999;	//	set to your desired value
    	
    	return $limit;
    }
    
    
    add_filter( 'avf_dropdown_post_number', 'custom_avf_dropdown_post_number', 10, 4 );
    

    Best regards,
    Günter

    in reply to: Masonry Gallery – Image Size Selector #1309495

    Hi Tim,

    In Masonry Gallery I added a selectbox to toggle “Masonry Settings”:

    Image Size
    Select a size for each image. Default setting by theme is “Masonry”

    similar to “Horizontal Gallery”.

    Will be in next update.

    Have a nice weekend.

    Cheers!
    Günter

    in reply to: Please contribute and translate Enfold #1309358

    Hi @comkapi,

    Thanks a lot for sharing. Added it to core.
    Have a great day.

    Best regards,
    Günter

    in reply to: Testimonial Image #1309280

    Hi @THP,

    will be in the next release.

    Supports scrset and lazy loading.

    Best regards,
    Günter

    Hi @madsonic

    Sorry for the problems with scrolling.

    I started digging deeper in jQuery core and I found that jQUery 3.x changed the way to call easing functions in core (https://jquery.com/upgrade-guide/3.0/#deprecated-additional-easing-function-parameters) and that breaks the call to jQuery .animate() in our smoothscroll animation.

    We are working to find a solution asap.

    Best regards,
    Günter

    in reply to: Logo SrcSet? #1308329

    Hey!

    Thank you for your patience.

    Fix will be added to next release 4.8.4.

    Both ID and an URL added to Theme Optins -> Logo is supported and also $use_image in framework\php\function-set-avia-frontend.php -> function avia_logo()

    Cheers!
    Günter

    Hi,

    Thank you for using our theme and reporting this.

    Glad you found a solution to fix it for your case.

    I added this to our dev repo to check.

    Have a nice day and feel free to come back any time.

    Best regards,
    Günter

    in reply to: Please contribute and translate Enfold #1303011

    Hi Luigi,


    @BigBatT

    Thanks a lot for your work.

    Updated in core and uploaded to https://github.com/KriesiMedia/enfold-language-files

    Have a great day.

    Best regards,
    Günter

    in reply to: Please contribute and translate Enfold #1302392

    Hi Roger,


    @EZWebdesign

    Thank you – added to core. Have a great day.

    Best regards,
    Günter

    Hi!

    FYI: With 4.8.3 added new theme option Enfold -> Layout Builder -> Custom Color Palette

    You can add up to 22 custom colors to be displayed below iris selection area.

    Regards,
    Günter

    in reply to: Enfold theme #1298753

    Hi!

    WP Dashboard -> LayersliderWP -> Sliders und dann den Slider bearbeiten. Wie das genau geht, dazu kann ich nur auf die Doku von LayerSlider verweisen.

    Regards,
    Günter

    in reply to: Enfold theme #1298747

    Hi,

    Danke dass Ihr Enfold nutzt.

    Grundsätzlich sind keine Bilder in Slidern fix kodiert und alles kann angepasst werden.

    Um Support anzubieten bitte einmal im Support Forum registrieren https://kriesi.at/support/register/.

    Dann bitte unter Enfold einen Thread starten und im Private Content bitte WP admin login daten und Link zu der fraglichen Seite und was genau geändert werden soll.

    Best regards,
    Günter

    in reply to: Contact Form Suggestion #1298039

    Hi,

    Glad we could help you.

    Enjoy the theme and have a nice day.

    Best regards,
    Günter

    in reply to: Contact Form Suggestion #1297989

    Hi,

    If you fill in the option “Autorespond Text” then the user gets a mail with (unless you use filter ‘avf_form_custom_autoresponder’):

    Content of Autorespond Text
    All (Form Labels : Content)

    But with the next version 4.8.3 I added a new option “Autorespond Text After Form Labels”.
    The content of this is placed after the form labels.

    Is this what you meant ?

    Best regards,
    Günter

    in reply to: lightbox and srcset #1296278

    Hi,

    Schönen Tag noch.

    Best regards,
    Günter

    in reply to: lightbox and srcset #1296235

    Hi,

    Super.

    Ja, diese Änderung geht jetzt auf allen PHP Versionen (7 und 8) und ich habe bereits den fix im core integriert (und auch schon auf https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_2/framework/class-responsive-images.php einen patch zur Verfügung gestellt).

    Danke dass Du dies entdeckt hast.

    Best regards,
    Günter

    in reply to: Custom elements templates modify in all languages #1296120

    Hi,

    Thank you for the credentials. But I cannot log in (added to hosts file, but still does not work).

    But I tried the following on my dev install and that worked for me:

    – Create a page
    – Click Button “Add New Custom Element”
    – Create a “Gallery”
    – Add 3 images to Gallery
    – Lock the images of the gallery
    – Save CET gallery
    – Add a Special Heading to the page and add a title (to translate and to know which language)
    – Add the custom gallery
    – publish page
    – Click Button “Edit Custom Element”
    – hover over custom element Gallery and click green pencil left bottom to translate
    – new Window opens, now translate special heading text using translation management to all languages, then close window
    – Make sure, all images are translated
    – Translate the page to all languages (actually only the special heading text)

    Now you should see the correct images in the different languages

    Adding new images:

    – Open any page
    – Click Button “Edit Custom Element”
    – Edit the custom Gallery – add e.g. an image – and save
    – Now you must translate the custom gallery again in all languages to reflect the changes – this needs WPML to update and sync the page content

    If you now check the page it shows the new image and the translated image in the other languages (clear server cache when using a cache plugin)

    Best regards,
    Günter

    in reply to: lightbox and srcset #1296108

    Hi,

    Bei 2. Problem hab ich einen bug in PHP < 8.0 gefunden im file enfold\framework\php\class-responsive-images.php function html_attr_image_src().

    Hab ich auf Deinem Testserver korrigiert:

    $key .= '';

    und

    case '0':

    Jetzt werden alle Bilder gross angezeigt (siehe …/lightbox ).

    In PHP 8.0 funktioniert meine ursprüngliche Lösung. Interessant, da die älteren PHP versionen datentyp toleranter sind.

    Das 1. Problem – hat sich da etwas verbessert ?

    Best regards,
    Günter

    in reply to: How put two functional arrows in the Tab Section ? #1295859

    Hi,


    @Guenni007

    Thank you for sharing this. Very nice solution.

    I added this to our dev repo. Thinking to extend this.

    Best regards,
    Günter

    in reply to: Custom elements templates modify in all languages #1295854

    Hey sitebysite,

    Thank you for using Enfold.

    My first idea: are all images translated – did you lock the gallery images in the CET ?

    If locked, then you can edit the gallery images only in the CET and not in the elements on a page.

    If this does not help, please create an admin account for us so we can check your backend. Could be that we also need to get in contact with WPML.

    And please also a link to the page – maybe you can create a test page with only 1 gallery so we can test.

    Please also enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor

    This lets you view the shortcode for all the page elements.

    Best regards,
    Günter

Viewing 30 posts - 691 through 720 (of 3,704 total)