Forum Replies Created
-
AuthorPosts
-
Hi!
@MeryVi: Thank you for the info. I’m sorry but we don’t have permissions to view drafts. Please create a new thread then post the logins details there as a private reply.
Cheers!
IsmaelHey!
Please post the login details here. We would like to check it. Is it OK if we deactivate the plugins while working on the site? I’ll ask the rest of the support team to take a look.
Best regards,
IsmaelHey!
Maybe that’s the problem. Please get a fresh copy of avia.js from Enfold 2.9.2 version then modify it again according to your needs. Replace the old file on the child theme folder.
Best regards,
IsmaelHey!
Thank you for using Enfold.
I’m sorry but this is not a theme related issue. Have you tried minifying the youtube url? Use this http://tinyurl.com/.
Best regards,
IsmaelHi InekeWerkt!
Thank you for using Enfold.
Use this instead:
$category = get_the_category(); if(!empty($category)) { echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $category[0]->cat_name;; echo '</span><span class="text-sep text-sep-cat">/</span>'; }Cheers!
IsmaelHey!
Thank you for using Enfold.
Unfortunately, you can’t apply the masonry layout for category or archive page. You need to modify archive.php and tag.php in order to do that. I’m sorry but this is beyond the scope of support so you might need to hire a freelance developer.
Regards,
IsmaelSeptember 25, 2014 at 2:50 am in reply to: Thank you for your support – but there`s still a problem! (sorry) #324723Hi erikatzen!
Thank you for using Enfold.
You can change the thumbnail size of the single product page on config-woocommerce > config.php. Find this code on line 16:
$avia_config['imgSize']['shop_single'] = array('width'=>450, 'height'=>999, 'crop' => false);Replace the width then regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelSeptember 25, 2014 at 2:46 am in reply to: Enfold Products Displayed – Any ideas on making this layout better? #324722Hey!
Different selectors are needed to change the layout of the tab element. You can play around with the css selectors. Change the color values to know which is which. It will help you to a better css inspector. If you have the time, take a short tutorial about google inspector or firebug. I believe I answered the other question here: https://kriesi.at/support/topic/enfold-tab-options-changing-color-and-font/
Regards,
IsmaelHi!
Thank you for the link.
Please js > avia.js, find this code on line 1593:
text = element.data(this.options.data).trim(),Replace it with:
text = $.trim(element.data(this.options.data)),Remove browser cache then reload the page.
Cheers!
IsmaelSeptember 25, 2014 at 2:32 am in reply to: Text box editing problems (adds 'p' tags; white text; cross-browser) #324713Hey!
Thank you for the update.
The paragraph tag doesn’t break the layout. You need to avoid switching between visual and text mode as much as possible. Please try this plugin to toggle wpautop: https://wordpress.org/plugins/toggle-wpautop/
Regards,
IsmaelHi svreatt!
Thank you for using Enfold.
Please edit config-templatebuilder > avia-shortcodes > section.php, find this code on line 489:
'video_loop' => true,Replace it with:
'video_loop' => false,Cheers!
IsmaelHey!
Thank you for the update.
Please try to add a css class on the layer’s Attribute panel. Fill in the Classes field. Use media queries and the css selector that you applied on Quick CSS or custom.css file to modify the look of the font on mobile device.
Cheers!
IsmaelHi Juan!
Thank you for using Enfold.
I checked the site on safari and the slider is working fine. Please set the main menu as Enfold Main Menu on Appearance > Menus panel. In order to migrate the theme successfully and leave the database intact, please use this plugin: WP MigrateDB or WP MigrateDB PRO
Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:
http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684Cheers!
IsmaelHi a00109943!
Thank you for using Enfold.
Use this to change the font color of the tab content:
.main_color .tab_inner_content h4 { color: white; font-size: 18px; } .main_color .tab_inner_content > * { color: white; font-size: 14px; }Cheers!
IsmaelHey!
Looks like the slider preview is working now: http://kennedycatholic.org/wp-admin/admin.php?page=layerslider&action=edit&id=6
How did you fix it?
Best regards,
IsmaelSeptember 25, 2014 at 2:11 am in reply to: Gallery Columns – Choose the column count of your Gallery #324698Hey hughsieg5!
Thank you for using the Enfold theme.
Yes, that is possible. Use this on Quick CSS or custom.css to adjust the width of the gallery items:
@media only screen and (max-width: 767px) { #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a { width: 25%%; } }Best regards,
IsmaelSeptember 25, 2014 at 2:08 am in reply to: Adjust the opacity level of the transparent header #324697Hi codecreative!
Thank you for using Enfold.
Are you referring to the transparent glassy header? You can use this on Quick CSS or custom.css:
#top .av_header_glassy.av_header_transparency #header_main { border-color: rgba(255,255,255,0.25); border-top-color: transparent; }Adjust the 0.25 value.
Best regards,
IsmaelHey Simon!
Thank you for using Enfold.
Please try the other solution I provided below: https://kriesi.at/support/topic/problems-php-5-5-google-map-widget/
Best regards,
IsmaelSeptember 25, 2014 at 2:05 am in reply to: Main content width (edge or browser instead of content) #324695Hi a00109943!
Thank you for using Enfold.
Do you mind providing a screenshot of what you’re trying to do? You can’t apply the header settings on the content but you can increase the content container with this on Quick CSS or custom.css:
.container { position: relative; width: 1500px; }Cheers!
IsmaelHey!
Did you use this same account to purchase the theme before? It should be available on the Downloads panel. Please contact themeforest regarding this issue.
Cheers!
IsmaelHey!
Please try to add this on functions.php:
if(!function_exists('mysql_real_escape_string_alt')) { function mysql_real_escape_string_alt($value) { global $avia_config; $search = array("\\", "\x00", "\n", "\r", "'", '"', "\x1a"); $replace = array("\\\\","\","\\n", "\\r", "\'", '\"', "\\Z"); return str_replace($search, $replace, $value); } }Edit the same line of code on the same file then replace it with this:
$content = mysql_real_escape_string_alt($content);If that doesn’t work, just use this:
$content = esc_sql($content);Best regards,
IsmaelHi dondela!
Thank you for using Enfold.
You’re using an old version of the theme, 2.6. Please upgrade to WordPress 4.0 then download the latest version of the theme, 2.9.2, from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
IsmaelHey!
Please post the login details here and set it as a private reply. We would like to check it. Is it OK if we deactivate the plugins while working on the site?
Best regards,
IsmaelHey!
Why wouldn’t you be able to delete a custom widget? Did you add any plugins regarding widget areas? Please post the login details and set it as a private reply. We would like to check it.
Regards,
IsmaelSeptember 24, 2014 at 11:50 am in reply to: Woocommerce Upsells on Product Single Page doubled #324178Hey!
Edit config-woocommerce > config.php, find this code on line 853:
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 ); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );Replace it with:
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_output_product_data_tabs', 10 ); add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_output_product_data_tabs', 1 );Add this on Quick CSS or custom.css:
.related.products .woocommerce-tabs { display: none; }Best regards,
IsmaelHi!
Thank you for the update.
There’s an animation applied on the actual section. Try using this:
.js_active .av-minimum-height .container { opacity: 1; }Cheers!
IsmaelHi 1lizcollins!
Thank you for using Enfold.
The background should not be visible on iPhone or any other mobile device with the same screen size because the content or body width is set to 100% which will cover the background image. On iPad the background is fixed.
Best regards,
IsmaelHi!
Please post the login details here and set it as a private reply. Is it OK if we deactivate the plugins while working on the site? Do you prefer Quick Cache among other cache plugin? Have you tried using different cache plugin such as W3 Total Cache or WP Super Cache?
Best regards,
IsmaelHi!
Please post the login details here and set it as a private reply. We would like to check it. Are you sure you have Enfold 2.9.2? There’s an error with prettyPhoto lightbox plugin. We already removed this plugin and replace it with a new lightbox plugin. Did you add any modifications on the child theme regarding the lightbox?
Cheers!
IsmaelHey!
Thank you for using Enfold and sorry for the delay.
You can specify a height for the easy slider but it will cut out parts of the images:
.avia-slideshow ul.avia-slideshow-inner { height: 500px !important; overflow: hidden; }You can vertically center the images with this:
.avia-slideshow li img { margin-top: -20%; position: relative; }Adjust the negative top margin.
Best regards,
Ismael -
AuthorPosts
