Forum Replies Created
-
AuthorPosts
-
Hi Martin,
Try deleting ‘enfold’ folder from the theme folder.
Then download the latest version and upload it.Had the same problem on several pages, it solved the problem, as it was not enough just to overwrite the files.
(Remember to make a backup of ‘enfold’ folder if you have made changes – if you are using a child theme, it is not necessary to make a backup of ‘enfold’.).
Please upgrade PHP version to minimum 5.6
Regards Pete
Hi Ian,
Try deleting ‘enfold’ folder from the theme folder.
Then download the latest version and upload it.Had the same problem on several pages, it solved the problem, as it was not enough just to overwrite the files.
(Remember to make a backup of ‘enfold’ folder if you have made changes – if you are using a child theme, it is not necessary to make a backup of ‘enfold’.).
Regards Pete
- This reply was modified 6 years, 8 months ago by 2funky.
Hi mmaack,
Try deleting ‘enfold’ folder from the theme folder.
Then download the latest version and upload it.Had the same problem on several pages, it solved the problem, as it was not enough just to overwrite the files.
(Remember to make a backup of ‘enfold’ folder if you have made changes – if you are using a child theme, it is not necessary to make a backup of ‘enfold’..)
Regards Pete
- This reply was modified 6 years, 8 months ago by 2funky.
Hi mleite,
Try deleting ‘enfold’ folder from the theme folder.
Then download the latest version and upload it.Had the same problem, it solved the problem, as it was not enough just to overwrite the files.
(Remember to make a backup of ‘enfold’ folder if you have made changes – if you are using a child theme, it is not necessary to make a backup of ‘enfold’.)
Regards Pete
- This reply was modified 6 years, 8 months ago by 2funky.
Hi,
Try adding the code in child / functions.php – it should work
function add_custom_script(){ ?> PASTE YOUR CODE HERE <?php } add_action('wp_footer', 'add_custom_script');
Alternatively, copy footer.php or header.php to child theme folder and paste the code.
Regards Pete
- This reply was modified 6 years, 10 months ago by 2funky.
Hi Basilis,
Just updated to 4.2.1 – it does not appear that the update solves the problem ??
I have cleared all cachesBest regards Pete,
Hi Mike,
It works with version 4.1.1 – See the front page 4 top icons on my page (Link added in private content).
I hope you can help.
Best regards Pete
Hey,
You can do that with html.
example<a href="https://companyname.com">companyname.com</a>
Best regards, Pete
- This reply was modified 7 years, 1 month ago by 2funky.
October 23, 2017 at 10:46 pm in reply to: Add copyright info but remove Kresi link from Enfold Footer Socket #867861Hey gwinenvato,
You can remove Kresi link by adding:
[nolink]
Best regards,
Pete
Hi,
It looks like, latest version 3.1.2 ‘PDF Product Vouchers’ fixed this problem – at least on my sites
Regards Pete
Hi, same problem here.
See scrn print: http://imgur.com/a/GMgy5
Works with other templates, so it seems that it’s Enfold theme there is the problem.
There are also still problems with Enfold’s 4.1 variant image view (in my opinion it’s the nicest) – only works if you choose woo standard.(Hope you also find a solution to this, so you can use both image options)
Note: Enfold works with product voucher version: 3.0.7 – but when you update to Version 3.1.0 something goes wrong with Enfold ‘breaks’ image and and descripton +.
See changelog: http://dzv365zjfbd8v.cloudfront.net/changelogs/woocommerce-pdf-product-vouchers/changelog.txt
Hope you can solve this isue, as it’s a very popular plugin developed for woo.
Thanks, Pete
Thanks Victoria,
Hi,
the problem is solved – I deleted mansonry + then I created it back in the same way, and now it works – mysterious;)
I can close this.
Regards Pete
Hey,
I had a similar problem a week ago,it was chrome that ‘cached’ crazy, have you tried a different browser or incognito browser right corner.
For me, it helped to delete all temporary files + reinstall chrome.Hope the same solution works for you.
Regards Pete,
Hey Ismael,
thanks for great support.
Regards Pete,
Hey Ismael,
Thanks, I know it is probably a little out of support, but can you guide me to what needs to be changed / added in CF7 filter, so it also works on another field.
Hope you can help, now when your form can’t do the job;)
Regards Pete,Hey Rikard,
Thanks, I have found a plugin for the job;)
Regards Pete
Hi Justin,
You kan change that in theme settings / header + Separator between menu itemsRegards Pete,
Hi,
I think this is an known issue
https://kriesi.at/support/topic/tabel-make-entire-table-scrollable-error-enfold-3-6-1/Regards Pete,
Hi,
I think this is an known issue
https://kriesi.at/support/topic/tabel-make-entire-table-scrollable-error-enfold-3-6-1/Regards Pete,
Hi,
I think this is an known issue
https://kriesi.at/support/topic/tabel-make-entire-table-scrollable-error-enfold-3-6-1/Regards Pete,
Hey,
This is a known issue
Solution
https://kriesi.at/support/topic/tabel-make-entire-table-scrollable-error-enfold-3-6-1/@media only screen and (max-width: 767px) { .responsive .avia_scrollable_table .avia-data-table > thead > tr > th, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th, .responsive .avia_scrollable_table .avia-data-table > thead > tr > td, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td { width: 230px; }}
Note: this is a quick fix – a permanent solution should be added to the template.
forwarded to Kriesi as ‘not resolved’
https://kriesi.at/support/topic/tabel-make-entire-table-scrollable-error-mobile-enfold-3-7/
Regards
Pete- This reply was modified 8 years, 2 months ago by 2funky.
August 27, 2016 at 10:25 pm in reply to: TABEL + Make entire table scrollable – ERROR MOBILE, Enfold 3.7!! #678522Hey Josue,
Great, thanks.
Regards Pete
Hey Andy,
Thanks, woo do not know either, but they have ’30 day Money Back Guarantee ‘ , so I must try to test.
Regards Pete
Hey,
You can close this, i found this code – and it seems to work:
/* Exclude Category from Shop*/ add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 ); function get_subcategory_terms( $terms, $taxonomies, $args ) { $new_terms = array(); // if a product category and on the shop page if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() ) { foreach ( $terms as $key => $term ) { if ( ! in_array( $term->slug, array( 'cat1', 'cat2' ) ) ) { $new_terms[] = $term; } } $terms = $new_terms; } return $terms; }
Regards Pete
- This reply was modified 8 years, 3 months ago by 2funky.
Hey,
http://www.tiikoni.com/tis/view/?id=148423b
The picture to the right is how I want it to look like – the ‘add to cart btn’ are placed correctly.
(picture on the left is how it looks now)Can you please help with CSS, so it will render correctly on all devices.
Regards Pete
- This reply was modified 8 years, 4 months ago by 2funky.
Hey,
I think this is what you are looking for: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
Regards Pete,Same problem here – seems to be due the new woo ajax cart update
Best regards Pete,
June 10, 2016 at 4:52 pm in reply to: TABEL + Make entire table scrollable – ERROR MOBILE, Enfold 3.6.1!! #646269Hey Vinay,
Thank you for quick good support.
I’ve added a few lines, so ‘header row’ also comes with.
Hope you add a solution that works in next update.Best regards, Pete
@media only screen and (max-width: 767px) {
.responsive .avia_scrollable_table .avia-data-table > thead > tr > th,
.responsive .avia_scrollable_table .avia-data-table > tbody > tr > th,
.responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th,
.responsive .avia_scrollable_table .avia-data-table > thead > tr > td,
.responsive .avia_scrollable_table .avia-data-table > tbody > tr > td,
.responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td {
width: 230px;
}} -
AuthorPosts