Forum Replies Created
-
AuthorPosts
-
Hi,
Yes. It is obsolete for CPT now.
Enjoy the theme and feel free to come back when you need further assistance.
Have a nice day.Best regards,
GünterMay 17, 2019 at 12:22 pm in reply to: "File merging and compression for CSS" still not working in Enfold Theme 4.5.7 #1101749Hi,
Thanks for the credentials.
I see a problem with the file enfold-child/style.css.
In WP theme editor (Dashboard -> Design -> Editor -> Selectbox Zu bearbeitendes Theme wählen -> Enfold Child -> Stylesheet style.css there is only an empty Textbox.
If I download the file and try to open it in my dev environment Netbeans I get the message: File cannot be opened safely with UTF8 encoding.
I created a file with the #wrap background image (style_support.css). Using this file as style.css merging works and the image is shown.
Try to edit your style.css with a normal editor and use UTF-8 for safeing.
I uploaded a safed version in my dev environment (style_ori_support.css) and if you use this for merging the background image is loaded in #wrap (console).
I left everything as it was before (deactivate CSS compression, style.css is the original one)
Best regards,
Günter- This reply was modified 5 years, 6 months ago by Günter.
May 16, 2019 at 1:49 pm in reply to: WooCommerce Advanced Product Labels and Enfold Masonry Grid for Products #1101435Hi,
Thanks for the link.
I’m afraid there is not easy way to implement it.
The plugin is based on the WooCommerce shop loop. The masonry element has its own loop which is running in a different way as the WC one.
Also I’m not sure, if the CSS for the labels is fitting in the masonry CSS.
Alltogether this needs heavy modifications.
A starting point for that is in enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php line 358ff (the loop) and as far as I’ve seen you can use the actions woocommerce_before_shop_loop_item_title and/or woocommerce_product_thumbnails to output the label.
Best regards,
GünterHey matthias,
Thank you for using Enfold.
Did you register your CPT using filter avf_alb_supported_post_types ?
Best regards,
GünterHi,
In functions.php of your child theme (or parent theme) add:
add_theme_support( 'avia_rel_nofollow_for_links' );
Best regards,
GünterMay 16, 2019 at 11:00 am in reply to: WordPress sends message about technical problem with Enfold #1101386Hi,
@michaelH
Thanks for the feedback.
Your problem is probably caused by the Envato request returning an error and not responding correctly. So this might also occur in future. I added the fix to be merged in core for the next update – so we should be safe in future releases.
Best regards,
GünterMay 16, 2019 at 10:26 am in reply to: WordPress sends message about technical problem with Enfold #1101380Hi,
@michaelH
Thanks for reporting this.
In enfold\framework\php\auto-updates\class-avia-envato-base-api.php line 212:
protected function add_envato_api_error( array $response, array $body, $prefix = '' )
replace with:
protected function add_envato_api_error( array $response, $body = array(), $prefix = '' )
and line 248:
if( ! isset( $body['error'] ) )
replace with:
if( ! is_array( $body ) || ! isset( $body['error'] ) )
You also can replace the file with: https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_7/envato/class-avia-envato-base-api.php
@Monique
Can you please check if the file enfold/config-wpml/config.php exists?
If not, please download a new copy from theme forest. It must be there.
If the file exists, than this message is strange.If you do not need WPML you can remove enfold\functions.php line 29:
require_once( 'config-wpml/config.php' );
Best regards,
GünterMay 15, 2019 at 1:03 pm in reply to: WooCommerce Advanced Product Labels and Enfold Masonry Grid for Products #1101025Hey crowdlauf,
Thank you for using Enfold.
We try to stay compatible with as many plugins as possible, but there are so many around that it is not possible to support all of them. And this is not a free plugin and we do not have access to it.
If you give us FTP access so I can download the plugin from your server I can check if there is an easy way to integrate it.
Best regards,
GünterHey brandgeist17,
Thank you for using Enfold.
Did you try to update to 4.5.7?
Can you create us a WP admin account so We can check your settings in the backend and try to reproduce it on our dev servers?
Also try to disable other plugins and check to exclude a possible plugin conflict.
Best regards,
GünterMay 15, 2019 at 11:52 am in reply to: "File merging and compression for CSS" still not working in Enfold Theme 4.5.7 #1100985Hi,
Thanks for coming back.
I rechecked building of the compressed file:
– styles.css of the child theme is the last one
– enfold/css/custom.css is located right before styles.css
– Custom CSS is located right before enfold/css/custom.css
– all other CSS is located before Custom CSSFrom that point I cannot see a problem.
Can you give us WP admin rights and FTP so we can check your backend and the created files?
And can you provide us a link to the page with problems?
Best regards,
GünterMay 14, 2019 at 6:31 pm in reply to: Avia Builder – Custom Page // css not Found // avia-builder-el.. usw. #1100726Hi,
Freut mich, dass es jetzt klappt.
Der Code oben (avf_builder_boxes) kann entfernt werden – das neue filter erledigt alles.
Viel Freude noch mit dem Theme. Gerne stehen wir bei weiteren Fragen zur Verfügung.
Einen schönen Abend moch.Best regards,
GünterHey conflock,
Thanks for coming back.
As I already said in https://kriesi.at/support/topic/wordpress-5-2-upade-enfold-fatal-errors/#post-1100018 – from point of program flow the class ShortcodeHelper must be defined at that point as it is loaded in init hook.
Do you have any chance to check with your hoster what queries caused this message ?
As a temp. fix you can replace in file enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php line 361:
ShortcodeHelper::$shortcode_index = 0;
with
if( class_exists( 'ShortcodeHelper' ) ) { ShortcodeHelper::$shortcode_index = 0; }
Best regards,
GünterMay 14, 2019 at 5:44 pm in reply to: Avia Builder – Custom Page // css not Found // avia-builder-el.. usw. #1100703Hey Qeibu,
Danke dass Du Enfold verwendest.
Habt Ihr die CPT mit dem Filter “avf_alb_supported_post_types” registriert. Siehe als Beispiel:
Vielleicht hilft das schon.
Best regards,
GünterHi,
Thank you for using Enfold.
As far as I see only twitter is using this “shortlink”.
In functions.php of your child theme (or parent theme) add:
function my_social_share_link_arguments( array $args ) { $args['twitter'] = array( "encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[permalink]" ); return $args; } add_filter( 'avia_social_share_link_arguments', 'my_social_share_link_arguments', 10, 1 );
If you encounter others let us know please.
Best regards,
GünterMay 14, 2019 at 4:55 pm in reply to: Upgraded to Woo 3.6.2 and now I get get_woocommerce_term_meta is deprecated #1100679Hi,
Did you already update to 4.5.7? In this version the deprecated function warning has been fixed.
Best regards,
GünterHi,
The result links to an attachment – seems that relevanssi finds the attachment. Seems to be a WP default template for attachments.
Missing ajax search results below popup could be a problem with the ajax call.
Maybe you can try in the evening when there is only few traffic to disable the merging and check. You can enable it after that again.
Can you check the server error log if you find something there.Best regards,
GünterMay 14, 2019 at 4:26 pm in reply to: Can't change publication date in Status & Visibility once post is published… #1100655Hi,
I found the bug:
Please replace enfold\config-gutenberg\css\avia_gutenberg.css
with
Do not forget to clear server and browser cache, disable Enfold CSS merging to force a rebuild of compressed files.
Keep a backup of the original file for a fallback.
If you need help let us know and we can do the update for you.
Best regards,
GünterMay 14, 2019 at 3:32 pm in reply to: Can't change publication date in Status & Visibility once post is published… #1100617Hi,
Thanks for the credentials.
I copied the shortcodes to my install – and content was found using the ajax search (though it needed to save the page 2 or three time).
As you are using the block editor and ALB – this could be a reason. If you do not need the block editor, select Classic Editor in Theme Options Tab -> Select Your Editor.
Could be, that relevanssi in not fully compatible with the block editor.
What is also strange: the possible results / No matches is not displayed below the ajax search box on your site.
That’s different from my install.I do not want to mass around in a live site – but also try to disable Enfold js compression during testing and changing files (and clear browser cache several times).
I uploaded a new beta version that works on my install – see private content below
Best regards,
Günter- This reply was modified 5 years, 6 months ago by Günter.
May 14, 2019 at 3:03 pm in reply to: Comeback of topic 'Problem with footer page and bbpress (displaying shortcodes)' #1100586Hi,
Thank you also for pointing at this problem and your assistance in fixing it.
Will become part of the next update.
Enjoy the theme and have a nice day. Feel free to come back when you need further assistance.
Best regards,
GünterMay 14, 2019 at 2:00 pm in reply to: Comeback of topic 'Problem with footer page and bbpress (displaying shortcodes)' #1100536Hi,
Yes – one more little thing.
File updated: https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_7/bbPress/config.php
Best regards,
GünterMay 14, 2019 at 1:17 pm in reply to: Can't change publication date in Status & Visibility once post is published… #1100523Hi,
You can try the following:
In functions.php of the child theme (or parent theme) at the bottom add:
add_theme_support( 'avia_gutenberg_post_type_support' );
(Re)load Dahboard -> Enfold Options Page -> Tab Theme Options -> “Select Your Editor”
Choose “Classic Editor”.When opening a page/post you now can select which editor you want to use for editing.
When using ALB open it with classic editor.Best regards,
GünterMay 14, 2019 at 1:07 pm in reply to: "File merging and compression for CSS" still not working in Enfold Theme 4.5.7 #1100515Hey Leo,
Sorry if you are still having troubles.
All fixes concerning CSS compression have been merged in 4.5.7.
Did you clear all server cache and remove all old compressed files?
Are the problems concerned with URL’s to images?
How did you enter the links?Best regards,
GünterMay 14, 2019 at 11:58 am in reply to: Comeback of topic 'Problem with footer page and bbpress (displaying shortcodes)' #1100485Hi,
Sorry for that. I updated the file:
https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_7/bbPress/config.php
Best regards,
GünterMay 13, 2019 at 5:23 pm in reply to: Comeback of topic 'Problem with footer page and bbpress (displaying shortcodes)' #1100170Hey Octopus4444,
Thanks for reporting this – and sorry for the late reply.
Please update enfold\config-bbpress\config.php
with
https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_7/bbPress/config.php
Will become part of the next update.
Best regards,
Günter- This reply was modified 5 years, 6 months ago by Günter.
Hi,
I uploaded a modified version.
On my install the columns are indexed and shown in ajax search results.
If it does not work for you, can you create an admin account for me and enable ALB debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor
This lets us view the shortcode for all the page elements so I can check it on my install.
Disable caching, clear server and browser cache.
Best regards,
GünterHi,
Thanks for feedback.
Could be that when updating WP tried to load something and this caused the error ?
If everything is running as expected I would say we can ignore this.
Feel free to come back when you need further assistance. I will close the topic for now.
Enjoy the theme and have a nice day.Best regards,
GünterHi,
The only idea I have:
enfold/header.php on line 32:
$is_burger_menu = apply_filters( 'avf_burger_menu_active', avia_is_burger_menu(), 'header' );
replace with:
$is_burger_menu = avia_is_burger_menu(); $is_burger_menu = apply_filters( 'avf_burger_menu_active', $is_burger_menu, 'header' );
and check in enfold\functions-enfold.php around line 200 for:
function avia_is_burger_menu ()
Next you can try to update to a higher PHP version: Supported versions
Also check for Enfold latest version 4.5.7.
Best regards,
Günter -
AuthorPosts