Forum Replies Created
-
AuthorPosts
-
September 7, 2018 at 10:22 am in reply to: Use of product slider in product page – Don't show current product #1007021
Hi Ismael,
This doesn’t work either. This time, I have a grey screen. I looked in the console, but nothing. You can see my page with this screenshoot. I also tried to deactivate all my plugins except WooCommerce to see if there is a conflict but there is none.
Best regards,
- This reply was modified 6 years, 2 months ago by dimitrilpc.
September 6, 2018 at 11:15 am in reply to: Use of product slider in product page – Don't show current product #1006541Hi dude,
Unfortunately, these two code snippets doesn’t work: I have a blank page with both of them.
I looked up the code in productslider.php (in the folder productslider) and found these lines in the file (at line 679):
if( ! empty( $terms ) ) { $tax_query[] = array( 'taxonomy' => $params['taxonomy'], 'field' => 'id', 'terms' => $terms, 'operator' => 'IN' ); } $query = array( 'post_type' => $params['post_type'], 'post_status' => 'publish', 'ignore_sticky_posts' => 1, 'paged' => $page, 'offset' => $params['offset'], 'post__not_in' => ( !empty( $no_duplicates ) ) ? $avia_config['posts_on_current_page'] : array(), 'posts_per_page' => $params['items'], 'orderby' => $ordering_args['orderby'], 'order' => $ordering_args['order'], 'meta_query' => $meta_query, 'tax_query' => $tax_query ); if ( isset( $ordering_args['meta_key'] ) ) { $query['meta_key'] = $ordering_args['meta_key']; } $query = apply_filters( 'avia_product_slide_query', $query, $params ); query_posts( $query ); // store the queried post ids in if( have_posts() ) { while( have_posts() ) { the_post(); $avia_config['posts_on_current_page'][] = get_the_ID(); } }
How can I pass the ID of the current product in the post__not_in of the $query array? Maybe this could work,
Best regards,
September 5, 2018 at 3:22 pm in reply to: Use of product slider in product page – Don't show current product #1006174Hi dude,
I didn’t saw your quick reply, thank you for it. I had tested this code, I should have stated it in my original post, sorry. I think the reason why this code doesn’t work is because WooCommerce have its own methods to call products. I see for example the avia_get_the_ID() method, and I wonder if this is the proper way to call a WC product ID.
Best regards,
Hi there, same issue and I found the solution: I had 0 reviews and I found this snippet in the product_snippet_review.php
if($product->get_review_count('view') != 0) { add_filter('comments_open', __return_true); }
This means that if your number of review is equal to 0, the ALB element will not appear. This is problematic. Furthermore, there is a problem with the brackets of the add_filter line. __return_true needs to be in brackets like this: ‘__return_true’. Just replace these two lines by:
if($product->get_review_count('view') >= 0) { add_filter('comments_open', '__return_true'); }
You could also try to delete these two lines, I didn’t do it because I didn’t inspect the entire structure of the code. But, it seems that these two lines were not in previous Enfold versions. This needs to be fixed at the next update. Please push this to the dev team in charge of the updates because this is highly important. There is, at the same time, a problem with the ‘__return_true’ which is not in brackets and a problem for the user experience. Your team thaught that if there is no review, there is nothing to show ( !=0 ). But at this moment, how the customers will write reviews?
I also posted on this thread: https://kriesi.at/support/topic/product-reviews-dont-appear-on-site-when-using-alb/
Best regards,
Dimitri.- This reply was modified 6 years, 5 months ago by dimitrilpc.
Hi there,
Same goes for me. Details in private content. I also tried to modify the file mentioned above but no effect.
EDIT: Found the solution. I had 0 reviews and I found this snippet in the product_snippet_review.phpif($product->get_review_count('view') != 0) { add_filter('comments_open', '__return_true'); }
This means that if your number of review is equal to 0, the ALB element will not appear. This is problematic. Just replace it by:
if($product->get_review_count('view') >= 0) { add_filter('comments_open', '__return_true'); }
You could also try to delete these two lines, I didn’t do it because I didn’t inspect the entire structure of the code. But, it seems that these two lines were not in previous Enfold versions. This needs to be fixed at the next update. Please push this to the dev team in charge of the updates because this is highly important. There is, at the same time, a problem with the ‘__return_true’ which is not in brackets and a problem for the user experience. Your team thaught that if there is no review, there is nothing to show ( !=0 ). But at this moment, how the customers will write reviews?
Best regards,
Dimitri.- This reply was modified 6 years, 5 months ago by dimitrilpc. Reason: Found the solution
June 11, 2018 at 1:48 pm in reply to: Quick CSS new rules don't work when CSS performance settings are enabled #971180Hi there,
I have fixed the issue. It was indeed related to this thread: https://kriesi.at/support/topic/saving-didnt-work-admin-ajax-php-failed-to-load-after-enfold-4-4-update/
I have removed a broken function in my child theme’s functions.php. I guess the structure of the function changed drastically between 4.2 and 4.4. Everything went to normal after this.
Thanks Vinay for the support :)Best regards,
Dimitri.June 11, 2018 at 1:45 pm in reply to: Saving didnt work – Admin-ajax.php failed to load after Enfold 4.4 update #971174Hi there,
I have fixed the issue. After looking for errors in my server log, I retraced one problematic function in my child theme’s functions.php. I guess the structure drastically changed between 4.2 and 4.4, and my functions.php file had compatibility issues. By removing the problematic function, everything went to normal. Thank you for this clue, Victoria, and thanks Rikard too. You can close this thread.
Best regards,
Dimitri.June 11, 2018 at 10:20 am in reply to: Quick CSS new rules don't work when CSS performance settings are enabled #971056Hi,
I also did the hard refresh. I tried another time this morning, still not working.
Best regards,
Dimitri.June 7, 2018 at 2:11 pm in reply to: Quick CSS new rules don't work when CSS performance settings are enabled #968928Hi Vinay,
Thank you four your quick reply. The cache files are cleared, however there is still no effect… About the other issue, it is not fixed when the merging is disabled as it is stated in the other thread. But yes, let focus on this one.
With the inspector, I can see that the merged file doesn’t contain my latest rules in the Quick CSS. I really don’t know why.
Best regards,
June 7, 2018 at 11:44 am in reply to: Saving didnt work – Admin-ajax.php failed to load after Enfold 4.4 update #968677Hi,
I tried to disable all plugins, still no change unfortunately. Same goes for the performance settings. I also tried to remove all .htaccess rules except HTTPS and WP rules. I have still no clue about this. Currently, I am trying to refresh the cache of my CDN.
My website is hosted at OVH (Performance 2 server) and runs PHP 7.2.
Could you take a quick look on my install?
Best regards,
Dimitri- This reply was modified 6 years, 5 months ago by dimitrilpc.
June 2, 2018 at 10:12 am in reply to: Saving didnt work – Admin-ajax.php failed to load after Enfold 4.4 update #965746Hi Rikard,
Sorry, should be good for the login. I will try to contact my hosting provider, but this worked fine a few days ago. I don’t understand why it have to change for Enfold 4.4. I have another clue, I have set a lot of rules for my .htaccess file. Is this possible that Enfold 4.4 introduced new rules and creates conflict with my .htaccess file? I was on 4.2.4 before.
Best regards,
D.You could try. Save your file in order to have a back up and go for it. It worked for me!
Hi there,
I experienced an issue with several Avia Builder element such as the Accordion. I figured it out, the reason why it was broken is that I overrided the Avia shortcodes in my Child Theme with a shortcode folder. I guess some important rules changed. Just simply edit/delete the files in your shortcodes folder will do the job. I will post this in as much topic talking about Avia Elements Builder as I can. Thx again for this great update!
Dimitri.Hi there,
I experienced an issue with several Avia Builder element such as the Accordion. I figured it out, the reason why it was broken is that I overrided the Avia shortcodes in my Child Theme with a shortcode folder. I guess some important rules changed. Just simply edit/delete the files in your shortcodes folder will do the job. I will post this in as much topic talking about Avia Elements Builder as I can. Thx again for this great update!
Dimitri.February 16, 2018 at 6:49 pm in reply to: Fontello Icons – Chinese icons shows instead (IE 11) – CORS enabled #913337Hello Basilis,
Thank you for your quick reply. I was able to replicate the issue on different computers of my company, that’s why I eliminated cache problems (that we cleared several times, etc.). However, with your suggestion, I was wondering… “And if the issue is cause by our internal configuration?”. I tested the website on others computers than the company’s… and everything was normal.So after one hour of fight with IE, I finally founded the problem: IE blocked only fontello font from download.
You guys can even solves IE problems aha!You can close this thread,
Best regards,
Dimitri.- This reply was modified 6 years, 9 months ago by dimitrilpc.
Hello Enfold’s Team,
I finally managed to install the Enfold 2017 demo. However, for that, I had to download Wamp, migrate my site which was online on this localhost, correctly configure the localhost with the correct php variables, etc. then I was able to install the demo correctly. Then I remigrated everything from localhost to my online site. It took me time, courage and a lot of caffeine but I succeeded!
However, I find it very restrictive. It would be great if Kriesi set up an alternative demo import mode for those who do not have enough powerful hosting to import one of Enfold’s demos. A link with a token based on the theme’s license would be a good solution. This link would redirect to the desired demo in .zip format.
Anyway, thank you and have a good day!
Dimitri- This reply was modified 6 years, 9 months ago by dimitrilpc.
Hey Basilis,
I found this message which is copied / pasted on the topics with the same subject. However, this message miss the 2017 Enfold demo XML data that I want. In addition, according to some other topics, importing XML files is problematic because the layersliders are missing. Is it possible to provide the ZIP file as you did in this thread? https://kriesi.at/support/topic/cant-import-enfold-2017-demo-3/
Also, this is getting very urgent to me… Is this possible to have it before tomorrow?
Thanks! :)- This reply was modified 6 years, 9 months ago by dimitrilpc.
Hello,
I finally bought mrdonthave’s plugin and this is my review. It is amazing and I recommend it a lot! I hope this message will help other people in my situation. This plugin is simple, easy to use and fully compatible with Enfold. This plugin solved all my problems and saved me a lot of time. I don’t need to change the same content many times in a lot of pages. Exactly what I expected! If you’re in the same situation that me before this message, don’t hesitate to buy mrdonthave’s plugin. Also, he is very available to respond to all your requests. I hope this review will make him sales a lot this very helpful plugin.
Dimitri,
Hey,
Thank you for all the informations. As it is quite new, I’ll wait to see feedbacks from a lot of people. Maybe my opinion will help you: I’m kind of “suspicious” because I can’t see a clear documentation about this plugin, the website is in german and you don’t have other products on it. Unless I am mistaken, I can’t see any videos or tutorials about it. The forums are empty, etc.I’m not reassured. If you make some clear product informations + testimonies, I’ll be very happy to buy your product! :) (And why not sell it directly to Kriesi? I think they need this into Enfold! ;) ). Anyway, I’ll keep an eye on it, I really need this.
Best regards,
DimitriEdit: Didn’t saw the possibility to change the language, sorry for my mistake ;)
- This reply was modified 7 years, 8 months ago by dimitrilpc.
Hello,
Is anyone ever tried this plugin? Is it compatible with all versions of Enfold? It would be nice if a moderator could give me its advice on this. Anyway, thank you mrdonthave ;) Do you have any backoffice demo?
Dimitri,Hi Rikard,
Yes, I can save those elements as templates. But the point is, if I use these identic templates in multiple pages, I can’t manage them in one place. I’ll need to edit each single page to change the same thing at multiple time. This is a complete waste of time! That’s why I’m looking for a solution :). I looked your most requested features, and centralized content would save many lives ;).
That will be awesome for the future! But for the moment, there is no way to do that with plugins? Nobody have a solution?
Thank you in advance,
DimitriFebruary 14, 2017 at 10:11 am in reply to: Image's link overlay + icon don’t work due to color section #746785Hi Rikard,
You can close it :)
Best regards,
DimitriHi Ismael,
I added the following lines to my robots.txt file:
Disallow: /search
Disallow: /*?s=I guess my problem is solved now. Thank you for the help :)
Best regards,
DimitriFebruary 13, 2017 at 11:18 am in reply to: Image's link overlay + icon don’t work due to color section #746304Hi Ismael,
Thank you very much. With your help, I also solved another issue: a responsive problem on some of my pages. It was also due to the same mistake: my color section incorrectly implemented. It was my last issue with Enfold.Best regards,
DimitriFebruary 7, 2017 at 8:31 pm in reply to: Image's link overlay + icon don’t work due to color section #744068Hello Yigit,
Sorry for the delay. My themes and WordPress are always up to date. I have launched my website today, and I still have these issues :(.Here are the temporary admin login. I have other issues (with e-mail), but I’ll post other topics about them.
Thank you for your help,
DimitriHi Yigit,
It works. Thank you for the help!
Best,
DimitriThank you Yigit, it works for me!
But when I’m in category pages and sub-category pages, “Shop” is still display. Is there a way to not display it on those pages?
Best regards,
Dimitri -
AuthorPosts