Forum Replies Created
-
AuthorPosts
-
Hey Martin Bijma,
No, it is just Enfold and some good inspiration and design touch :)
Best regards,
BasilisHi,
I tried to update the file and it is not importing.
Can we enable it as a font faceBest regards,
BasilisAugust 10, 2018 at 10:00 pm in reply to: Problem Updating Enfold: "Download failed. Problem downloading theme" #996162Hi,
Thank you for the kind words and mostly for been so an increadible client.
Yes, we understand the notes and where you are standing. The problem here is that after some last updates we have had to give a version update that required in some cases to update
through FTPBest regards,
BasilisAugust 10, 2018 at 9:58 pm in reply to: Events calendar: page not displayed (source text available) #996160Hi,
Please do keep us updated regarding the status with the Tribe Events
Best regards,
BasilisAugust 10, 2018 at 9:57 pm in reply to: [URGENT]: Header icon displaying & menu changes color #996159Hi,
Enabling the Theme and Plugin Editors in wp-config.php
1. Use SFTP and go to the location of your WordPress site. Learn how.
2. Open wp-config.php on your computer.
3. Search for: define(‘DISALLOW_FILE_EDIT’, true);
4. Change true to false: define(‘DISALLOW_FILE_EDIT’, false);
5. Save the file and upload it back again.Best regards,
BasilisHi,
Yes it seems that it is something related to the theme that is why it is not working as should…
Best regards,
BasilisHi,
You can’t remove the comma with css, unfortunately. Edit the includes > loop-index.php file, look for this code around line 190:
$cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';Replace it with: <pre><code>$cats .= get_the_term_list($the_id, $taxonomy, '', '','').' ';Best regards,
BasilisAugust 10, 2018 at 9:46 pm in reply to: Text/icon at BOTTOM of accordion text to close the dropdown #996155Hi,
Thank you for the feedback and especially the reason you need that
We will do dig into it a bit more.Best regards,
BasilisAugust 10, 2018 at 9:44 pm in reply to: Draw Attention Pro and LearnPress -plugins with Enfold? #996153Hi,
I can see the problem – not sure what has changed.
I have assigned the ticket to dude – he will checkBest regards,
BasilisHi,
You can always try it to replace the files yes.
Best regards,
BasilisAugust 10, 2018 at 9:38 pm in reply to: Remove thumbnail overlay, disable changing of big image, remove first thumbnail #996149Hi,
Did it worked if the Media Elements work?
Best regards,
BasilisAugust 10, 2018 at 9:35 pm in reply to: Media Grid works fine, but enfolds elements displaying incorrect on lightbox #996148Hi,
You can create it with tabs and try use a shortcode to generate the content inside.
it will nor be so easy but yes it is possible!Best regards,
BasilisHi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
BasilisHey acscreativenew,
Have you added your billing details, to your google account?
Best regards,
BasilisAugust 9, 2018 at 10:02 pm in reply to: Media Library Not Uploading Images with Enfold 4.4.1 Update #995750Hi,
Actually yea the issue was:
samuel-zeller-158996-unsplash.jpg
HTTP error.so it is from the server
Best regards,
BasilisAugust 9, 2018 at 10:01 pm in reply to: Media Library Not Uploading Images with Enfold 4.4.1 Update #995749Hey HU_Dallas,
I am trying to uplaod a really small image and I cant, not sure if that issue because of our theme or of your server…
Best regards,
BasilisHey mineral_sw,
Have you tried contact WPML support, to help you with the issue?
Best regards,
BasilisHi,
Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
BasilisHey TMM1808,
Can you please post the question in English, so we can be able to help you faster?
Best regards,
BasilisHey pixopolis2222,
what is your web site URL?
Best regards,
BasilisHey losting,
can you please make the account admin for us?
Best regards,
BasilisHi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
BasilisHi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
BasilisAugust 9, 2018 at 9:40 pm in reply to: Remove Product Category Description Over Full Width Banner Image #995734Hey dwags52,
Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
BasilisAugust 9, 2018 at 9:33 pm in reply to: Text/icon at BOTTOM of accordion text to close the dropdown #995731Hi,
I tried to add it with CSS content: rule but does not seem to work properly…
Best regards,
BasilisAugust 9, 2018 at 9:32 pm in reply to: woocommerce 3.4.4 variable product image not showing Enfold Child #995729Hey WPDev4N0p,
Please try the following
add_action('woocommerce_after_single_product','custom_woocommerce_additional_variation_images'); function custom_woocommerce_additional_variation_images(){ ?> <script type="text/javascript"> (function($) { $(window).load(function(){ // alert('test'); $( "a.swatch-anchor").click(function() { //console.log(variation); var atts = $(this).parent().attr('data-value'); var product_variations = $('form.variations_form').data('product_variations'); var variation_id= ''; for ( var i = 0; i < product_variations.length; i++ ) { var variation = product_variations[i]; if( product_variations[i].attributes.attribute_pa_color == atts){ variation_id = product_variations[i].variation_id; } } //console.log( matching[0].attributes.attribute_pa_color); console.log(variation_id); var data = { security: wc_additional_variation_images_local.ajaxImageSwapNonce, variation_id: variation_id, post_id: $( 'form.variations_form' ).data( 'product_id' ) }; $.ajax({ type: "POST", url: $.wc_additional_variation_images_frontend.getAjaxURL( 'get_images' ), data: data, cache: false, success: function(data,response){ console.log(data); data = $.parseJSON(data); setTimeout(function(){ $.wc_additional_variation_images_frontend.imageSwap(data); },1000); } }); }); }) })(jQuery); </script>Best regards,
BasilisHi,
Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
BasilisHi,
Can we please the web site URL?
Best regards,
BasilisHey spengleraganslaw,
DO we have permitting to delete files and upload again?
Best regards,
Basilis -
AuthorPosts
