Forum Replies Created
-
AuthorPosts
-
Hi Sam,
Do you have hosting as well? If so, you can simply install WordPress on your server. Most hosting providers offer one click WordPress installation so you could go ahead and install WordPress and then purchase Enfold – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 and install it on your WordPress installation start creating your website right away :)
Best regards,
YigitHey Bruno!
Thanks for contacting us!
I noticed that one of your thread was already replied. We will reply to other one soon :)
Regards,
YigitHi!
Glad Jordan could help! We will reply to your other thread soon :)
Regards,
YigitHey,
Thanks for contacting us!
Example site is using App demo – https://kriesi.at/themes/enfold-app/ of our premium WordPress theme Enfold. After activating Enfold, you can import any chosen demo with a single click within a few minutes in Enfold theme options > Demo Import – https://kriesi.at/themes/enfold-overview/
Enfold is using drag & drop page builder called Advance Layout Builder so you can easily replace demo content with yours and adjust colors as needed :)
You can go to one of the recommended hosting sites here – https://kriesi.at/documentation/enfold/hosting-requirement/, purchase a domain and a hosting plan, then Enfold on ThemeForest and create your own website. 6 months of support and lifetime updates are included in your purchase so you can contact us whenever you have a question or an issue :)
Regards,
YigitHi,
@seomar Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:p { text-align: justify!important; }If you have any other questions or issues, please start a thread under Enfold sub forum – https://kriesi.at/support/forum/enfold/#new-post
Best regards,
YigitNovember 5, 2019 at 11:33 pm in reply to: Display star review under title for custom product page with page builder #1154107Hi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)Best regards,
YigitNovember 5, 2019 at 4:37 pm in reply to: Display star review under title for custom product page with page builder #1154022Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
.morso_blocco_acquisto .avia_textblock .star-rating { float: none; display: inline-block; } .morso_blocco_acquisto .avia_textblock { display: flex; justify-content: center; align-items: center; }Best regards,
YigitHi,
You are welcome, Kurt. Let us know if you have any other questions or issues :)
Best regards,
YigitHi,
Thanks for contacting us!
I have updated your email in your forum account. Please request a new password here – https://kriesi.at/support/register/?action=lost_pw :)
Cheers!
YigitNovember 5, 2019 at 1:41 pm in reply to: Display star review under title for custom product page with page builder #1153988Hi,
1- I tried adding following code to bottom of Functions.php file of your child theme however i am getting “Scrape nonce check failed. Please try again.” error. Please try adding the code to file via FTP
// Get star rating of product function get_star_rating() { global $woocommerce, $product; $average = $product->get_average_rating(); $review_count = $product->get_review_count(); return '<div class="star-rating"> <span style="width:'.( ( $average / 5 ) * 100 ) . '%" title="'. $average.'"> <strong itemprop="ratingValue" class="rating">'.$average.'</strong> '.__( 'out of 5', 'woocommerce' ). '</span> </div>'.' <a href="#reviews" class="woocommerce-review-link" rel="nofollow">( ' . $review_count .' )</a>'; } function custom_shortcode() { return get_star_rating(); } add_shortcode( 'get_average_rating', 'custom_shortcode' );Then use following shortcode to display star rating of single product
[get_average_rating]2- I added following shortcode to your tab to display reviews
[av_product_review av_uid='']Cheers!
YigitNovember 5, 2019 at 11:43 am in reply to: Reduce the gap between bottom of logo and horizontal line #1153953Hi,
You can edit the cell “✓ denotes winner” text is in and increase top padding. I did not want to do it as that will change “last update” date :)
Best regards,
YigitHi,
I updated the code in bottom of functions.php file to following one
//-------------------------------- // Header widget area //-------------------------------- add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); } // Display update time function wp_get_updated_date(){ $u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time >= $u_time + 86400) { echo "<p class='update-time'>Updated at "; the_modified_time('F jS, Y'); echo " at "; the_modified_time(); echo "</p> "; } } add_shortcode( 'update_time', 'wp_get_updated_date' );Then i added following code to bottom of Quick CSS in Enfold theme options > General Styling
p.update-time { width: 335px; margin: auto; }Please review your website :)
Best regards,
YigitNovember 5, 2019 at 11:05 am in reply to: Theme Update shows older version despite installing newest version #1153939Hi,
Glad Rikard could help! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)Best regards,
YigitNovember 4, 2019 at 4:17 pm in reply to: Reduce the gap between bottom of logo and horizontal line #1153723Hi,
I added following code to bottom of Quick CSS field in Enfold theme options > General Styling
.home .content { padding-top: 20px; }Please review your website and adjust the value as needed :)
Best regards,
YigitHi,
Please add following code to bottom of your child theme functions.php file in Appearance > Editor
// Display update time function wp_get_updated_date(){ $u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time >= $u_time + 86400) { echo "<p>Last modified on "; the_modified_time('F jS, Y'); echo " at "; the_modified_time(); echo "</p> "; } } add_shortcode( 'update_time', 'wp_get_updated_date' );Then add following shortcode to display it
[update_time]If you would like to add a widget area to header and to display it there, please refer to this post – https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
YigitHi,
You can try adding your content into a Color Section element with a unique ID and then link your button to “#your-unique-id” :)
Regards,
YigitNovember 4, 2019 at 3:56 pm in reply to: Star review display in title for custom product page with page builder #1153716Hey,
@bitinteractive Could you please start a new thread – https://kriesi.at/support/forum/enfold/#new-post and attach temporary admin logins in private content field and a link to the page where stars do not show up?Cheers!
YigitNovember 1, 2019 at 11:37 pm in reply to: Enfold Google maps don't work At Multilanguage page #1153154Hi,
Google maps in footer now displays on all languages on my end on all browsers. Please flush browser cache and review your website :)
Best regards,
YigitNovember 1, 2019 at 9:57 pm in reply to: Enfold textblock element without developers class after update to 4.6.3.1 #1153143Hey Fabian,
Please replace /enfold/config-templatebuilder/avia-shortcodes/textblock.php file with this one – https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_6_3/textblock-fallback/textblock.php
Fix will be included in upcoming update :)Regards,
YigitNovember 1, 2019 at 9:53 pm in reply to: With the new Enfold 4.6.3.1 update from the safari browser, google maps are no l #1153140Hi,
@migmarrero i just seen your message and replied to your thread. Let us continue there :)Best regards,
YigitNovember 1, 2019 at 9:53 pm in reply to: Enfold Google maps don't work At Multilanguage page #1153139Hi,
I checked your website and maps show up on all languages on my end on all browsers except for Safari.
I replaced /enfold/js/avia-snippet-cookieconsent.js file with this one – https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_6_3/avia-snippet-cookieconsent.js and then went to Spanish version of Enfold theme options > Performance and disabled “Javascript file merging and compression”, flushed cache, enabled it.
Then i switched to English version to do the same but your website is now throwing Internal Server Error.“Javascript file merging and compression” needs to be disabled and cache needs to be flushed and then JS compression needs to be enabled once again in English and German versions as well.
Could you please contact your hosting provider regarding Internal Server Error?
Regards,
YigitHi,
Could you please try replacing /enfold/config-woocommerce/config.php file with this one – https://pastebin.com/RVdgbmYc and let us know if that also fixes the issue? :)
Best regards,
YigitHi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)Best regards,
YigitHey,
Thanks for contacting us!
We sell premium WordPress theme Enfold – https://kriesi.at/themes/enfold-overview/ and provide support to our users. I believe there has been a confusion. You might have seen our link in one of our users website :)
That being said, if you are looking for a powerful, flexible and user-friendly WordPress theme, please let us know so we can provide more information on our theme, Enfold :)
Regards,
YigitHi,
I changed the code to following and it helped
exclude : ' .soliloquy-outer-container, .soliloquy-item, .soliloquy-item a, .noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]'Please flush browser cache and review your website :)
Best regards,
YigitNovember 1, 2019 at 1:15 pm in reply to: After update layerslider, cookie notification and maps not working safari #1153021Hi,
You are welcome! Let us know if you have any other questions or issues :)
Best regards,
YigitHey,
Sorry for the late reply!
Please go to /enfold/js/ and copy avia-snippet-lightbox.js file to your child theme inside /js/ folder, open the file and find following line
exclude : '.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]'and change it to following
exclude : '.soliloquy-image, .soliloquy-image a, .noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]'Then add following code to functions.php file of your child theme
function wp_change_avia_lightbox_js() { wp_dequeue_script( 'avia-lightbox-activation' ); wp_enqueue_script( 'avia-lightbox-activation-child', get_stylesheet_directory_uri().'/js/avia-snippet-lightbox.js', array('jquery'), 2, true ); } add_action( 'wp_print_scripts', 'wp_change_avia_lightbox_js', 100 );Best regards,
YigitHi,
Thanks for contacting us!
Your customer is currently using a very old version of the theme which is not compatible with the latest version of WordPress and PHP.
You would need an access to ThemeForest account that was used to purchase the theme to download the latest version. Does your customer have a license? In case they have, maybe you could contact Envato support and they might be able to help. But if they do not have, i am afraid you might need to purchase a new license.
Cheers!
YigitOctober 31, 2019 at 11:55 am in reply to: do the enfold theme support new WP 5.3 with block editorn guttenberg #1152672Hi,
Unfortunately, you are going to need to have an access to ThemeForest profile to download the latest version. If you have a copy of the license, Envato support might be able to help you retrieve your purchase. If that will not be possible, i’m afraid you might need to purchase a new license.
As i mentioned previously, API keys no longer work due to changes made in Envato API. That is the reason why your API key is not working. You would need to generate Personal Token to receive auto updates – https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
Cheers!
YigitHey Dorothea,
Replied to your thread here – https://kriesi.at/support/topic/theme-not-responding/. Let us continue there :)
Best regards,
Yigit -
AuthorPosts
