Forum Replies Created
-
AuthorPosts
-
May 2, 2019 at 10:18 am in reply to: [REQUEST] Option to chose H-tag in certain items (fullwidth slider) #1096411
Hey mynick,
Thank you for this suggestion.
With 4.5.6 we added filter avf_customize_heading_settings as a first step.
We do not want to overstrain inexperienced users with too many options.
But I will add it to our issues and discuss it with Kriesi.
Best regards,
Günter- This reply was modified 5 years, 8 months ago by Günter.
May 2, 2019 at 10:08 am in reply to: Merge Parent Theme Scripts and Styles But Not Child Theme #1096410Hi,
Thank you for using Enfold.
You can try to use filter avf_exclude_assets and add the scripts/styles you do not want to be merged.
I would suggest to load the child theme scripts and styles after parent theme.
Hope this helps you.
Best regards,
GünterMay 2, 2019 at 10:02 am in reply to: Issues with enfold since update to 4.5.5 — layout broken, cpt mobile broken,… #1096408Hi,
Thanks for the feedback and posting the code for the community.
Let us know, when you need further assistance.
Best regards,
GünterMay 1, 2019 at 5:39 pm in reply to: Updates theme 4.5.6 and performance functions not working anymore #1096213Hey ptolda,
Thank you for using Enfold.
Kriesi forgot to merge the pull for the asset-manager pull request – sorry for that.
In private content you find a link and password to a zip file with a beta version of Enfold (4.5.6.1-beta-1) – including also some more additional fixes.
If you have problems with uploading this with ftp to your server please provide ftp access and a WP admin account so we can do that for you.
As a first step try to remove the ssl, and also save theme options after updating, disable caching plugins and Enfold css and js performance.
Then check please, try to switch to ssl (save theme options again) and check.
Next enable Enfold css and js performance if needed and check.
Last enable caching plugin.Best regards,
Günter- This reply was modified 5 years, 8 months ago by Günter.
May 1, 2019 at 5:28 pm in reply to: Unable to disable 'add to cart',button on category pages after upgrade. #1096208Hi,
Thank you for using Enfold.
Can you please create a WP admin account so we can check the backend please.
Also provide links to the pages that cause the problem.
Best regards,
GünterHi,
Wenn es darum geht, die post navigation z.B. nur auf portfolio einzuschränken, sollte diese helfen:
Falls Du z.B. nur pages ausschliessen möchtest – kann ich Dir gerne noch den Code geben.
Falls es darum geht, die Sortierreihnfolge zu ändern (z.B. von post date auf title) – das geht momentan nicht.
Best regards,
GünterMay 1, 2019 at 10:29 am in reply to: Issues with enfold since update to 4.5.5 — layout broken, cpt mobile broken,… #1096114Hi,
Since 4.3 there is a new filter to register CPT for ALB: avf_alb_supported_post_types (see function AviaBuilder::get_supported_post_types() ).
You can remove the avf_builder_boxes filter. You might consider to use the avf_metabox_layout_post_types if you need the layout meta box.
Can you try to update this and check?
Also try to disable all enfold compression and any caching plugin as a first step.
Also save the theme options again.If you can create a WP admin accout for your staging site would be fine.
Also enable the debug mode please: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
And also link to the page with troubles.
Thank you.
Best regards,
Günter- This reply was modified 5 years, 8 months ago by Günter.
April 30, 2019 at 2:17 pm in reply to: issue with previous and next navigation in the porfolio #1095765Hi,
Using
$settings['skip_output'] = false;
forces the script to continue and output the navigation.
Under normal circumstances you do not need to alter this value as Enfold logic is setting this as needed (removes it for hierarchical post types like pages and when fullwidth elements are found (avia_sc_layerslider, avia_sc_slider_full).
If you want e.g. enable nav for all portfolio only (also including fullwidth elements) you can use:
if( false === $settings['skip_output'] ) { return $settings; } if( 'portfolio' == $settings['type'] ) { $settings['skip_output'] = false; } else { $settings['skip_output'] = true; } return $settings;
Hope this helps.
Best regards,
GünterApril 30, 2019 at 1:36 pm in reply to: Issues with enfold since update to 4.5.5 — layout broken, cpt mobile broken,… #1095750Hi,
A rollback to 4.5.3 should be possible without problems. With FTP delete the complete enfold folder and upload version 4.5.3.
We have released a beta version with Fixes that might solve your problems – see private content.
Can you try this before the rollback please.Disable all Enfold compression settings during testing.
Best regards,
GünterHey argusnet,
Events calendar changed the query parameters.
For a fix please have a look at:
Best regards,
GünterHi,
Hab mit kurz nochmals die WP Funktion get_adjacent_post angeschaut.
Es ist möglich die Logik auf z.B. post title zu ändern, dies erfordert aber doch einiges an Aufwand, da zumindest noch ein weiteres Filter in dieser Funktion betroffen ist.
Im Rahmen des supports ist dies zu komplex – soweit ich weiss hat es bis jetzt in dieser Richtung auch noch keine Anfrage gegeben.
Ich geb es einmal in unsere Issues.
Best regards,
GünterHi,
Thank you for using enfold and glad that this solved the issue.
Enjoy the theme and have a nice day.
Feel free to come back when you need further assistance.
Best regards,
GünterApril 30, 2019 at 9:35 am in reply to: Upcoming events and events countdown important issues #1095677Hi,
Sorry for the problems – but the events calendar changed the query parameters.
Please check https://kriesi.at/support/topic/past-events-are-shown-since-the-events-calendar-update/#post-1095191 for the fix.
Best regards,
GünterHey Guenter,
Sorry for the late reply – had not been tagged on this.
Please check https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Layout/avf_customize_heading_settings.php.
We decided for a filter to be more flexible. And we did not want to confuse users with too many options only needed by a few.
Let me know if you need more help on this filter.
Best regards,
GünterHi,
Die Query Logik geht nach post date.
Es gäbe da ein filter in wp-includes\link-template.php Zeile 1821:
"get_{$adjacent}_post_sort"
Allerdings fehlt bei Enfold noch ein entsprechendes Filter für looping. Das bau ich aber noch ein (avf_post_nav_loop_args).
Solltest Du es benötigen, kann ich es Dir schon geben.
Best regards,
GünterApril 29, 2019 at 12:14 pm in reply to: Past events are shown since The Events Calendar update #1095226Hi,
Please try to update enfold\config-templatebuilder\avia-shortcodes\events_countdown\events_countdown.php with
Fix will be in the next update.
Best regards,
GünterApril 29, 2019 at 11:48 am in reply to: Past events are shown since The Events Calendar update #1095224Hi,
Glad it works for you.
Thanks for pointing at events countdown. I will try to get a fix asap and come back.
Best regards,
GünterHi,
Super, dass es jetzt funktioniert.
Könntest Du das etwas genauer spezifizieren, damit ich es reproduzieren kann (auch ein Link zu der Seite bitte) ?
Best regards,
GünterApril 29, 2019 at 9:20 am in reply to: Past events are shown since The Events Calendar update #1095200Hi,
Sorry, yes: enfold\config-templatebuilder\avia-shortcodes\events_upcoming\events_upcoming.php
Best regards,
GünterHi,
Vertauschen ist natürlich auch so möglich – da aber die queries dafür nochmals aufgerufen werden müssen, nicht optimal. Vertauschen von Zeiger auf objekte ist schneller.
Das Looping problem kann ich nicht rekonstruieren.
Hab bei mir die Demo Enfold 2017 installiert – damit funktioniert es.Kann ich evtl. Backend access bekommen, damit ich mir die Einstellungen anschauen kann?
Arbeitest Du mit Subcategories bei Portfolio?Best regards,
GünterApril 28, 2019 at 11:06 am in reply to: Past events are shown since The Events Calendar update #1095016Hi,
Please follow the steps to update the file (enfold >= 4.5.5):
Best regards,
GünterApril 27, 2019 at 4:48 pm in reply to: Past events are shown since The Events Calendar update #1094927Hi,
Thanks for the update. Could get access to backend – but updating the file failed. Might be because of access rights to files.
Can you give us ftp access?
Or shall we provide you a zip file to upload with ftp.
Best regards,
GünterHi,
Es gibt da ein neues gut dokumentiertes filter avf_post_nav_settings (enfold\functions-enfold.php line 587)
function my_avf_post_nav_settings( array $settings ) { $settings['same_category'] = true; return $settings; } add_filter( 'avf_post_nav_settings', 'my_avf_post_nav_settings', 10, 1 );
Zum Vertauschen sollte folgendes Filter funktionieren (enfold\functions-enfold.php line 702):
function my_avf_post_nav_entries( array $entries, array $settings, array $queried_entries ) { $next = $entries['next']; $entries['next'] = $entries['prev']; $entries['prev'] = $next; return $entries; } add_filter( 'avf_post_nav_entries', 'my_avf_post_nav_entries', 10, 3 );
Best regards,
GünterApril 27, 2019 at 10:32 am in reply to: Past events are shown since The Events Calendar update #1094885Hallo,
Die Option für “Loop Post Navigation” ist in 4.5.6 drinnen (Enfold -> Blog Layout -> Single Post Navigation).
Wegen dem text/alt attributes:
enfold\config-templatebuilder\avia-shortcodes\columns.php ersetzen mit:
Ausgabe:
<a class="av-screen-reader-only" href="http://www.test.at" title="Title and new" alt="Alt and new">Follow a manual added link</a>
Best regards,
GünterApril 26, 2019 at 2:08 pm in reply to: 2 SOLUTIONS CONFLICT – Last ALB fix omitted previous code fix you gave #1094738Hi,
Glad it works now.
– Update the production site to Enfold 4.5.6.
I updated the code on github – there was really an error using $this (a php keyword), which I did not see (happened because of copy paste of function call).
I replaced that with $class. So you are save to use this (or simply take the code from your functions.php (at top) of the child theme – is the same).– Add this code to functions.php of your child theme on the production site.
On future updates there is no more to do.
Best regards,
GünterHi,
Auf die Schnelle auch nicht – ich schau mir das aber als nächstes an – kann aber morgen werden. Klingt mir irgendwie unlogisch. Muss mir da genauer anschauen, was da im Hintergrund abläuft.
Melde mich aber, sobald ich was habe.
LG,
GünterHi,
Can you try to use the following:
@media only screen and (max-width: 479px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin{ margin-bottom: 0px !important; } }
Best regards,
GünterApril 26, 2019 at 9:00 am in reply to: Past events are shown since The Events Calendar update #1094654Hi,
Please update enfold\config-templatebuilder\avia-shortcodes\events_countdown\events_countdown.php
with
If you need help with this please let us know and our moderators can do it for you.
Do not forget to make a backup of the original file for a fallback and clear server and browser cache.
Best regards,
Günter -
AuthorPosts