Forum Replies Created
-
AuthorPosts
-
Hey!
Thank you for using Enfold.
EDIT: Remove the modifications above then look for this code around line 2364 of js > shortcodes.js file:
oldImgSrc = oldImg.attr('src');
Replace it with:
oldImgSrc = oldImg.attr('src'), oldCaption = big_prev.find('.avia-gallery-caption'), currentCaption = $(this).attr('title'); oldCaption.empty(); oldCaption.append(currentCaption); big_prev.attr('title', currentCaption);
Cheers!
IsmaelMay 7, 2015 at 5:22 am in reply to: 2nd and 3rd full-screen video sections are too long due to header #440743Hey unclemurray!
Thank you for using Enfold.
I think if we add the header height to the scroll target, it’ll be fix. For a temporary fix, edit js > avia.js then find this code around line 730:
fixedMainPadding = parseInt($('html').css('margin-top'),10);
Replace it with:
var $headerh = parseInt($header.outerHeight(),10) || 0; fixedMainPadding = parseInt($('html').css('margin-top'),10) - $headerh;
Remove browser cache then reload the page. The scroll target should be lower than it used to.
Best regards,
IsmaelHey!
Sorry. My bad. The code should be:
#footer { margin-left: 294px; }
Use css media queries to adjust it on smaller screen sizes.
Best regards,
IsmaelHey!
Please add this in the Quick CSS field:
.avia-android #coodoshare .av-parallax { background-size: 100% 100% !important; background-attachment: scroll !important; }
If you want to completely remove the background on these devices, use this:
@media only screen and (max-width: 768px) { .avia-android #coodoshare .av-parallax { background: none !important; }}
What is the firefox version in your android device? The background-size property is only supported on Firefox 37 and up.
Best regards,
IsmaelHi!
Please check the page now: http://hotel-residence-loren.ch/
This is the font script: http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700%7CPathway+Gothic+One
Best regards,
IsmaelHi!
Replace the code with this:
.av-catalogue-list .av-catalogue-content li { border-bottom: 0px none; list-style: outside none disc; }
Best regards,
IsmaelHey!
Unfortunately, this is not possible because the structure of the tabular table is different from the pricing table. The customization will require more than css modifications. You need to modify the entire table script.
Cheers!
IsmaelMay 7, 2015 at 4:06 am in reply to: Custom widget area + cyrillic name = broken in enfold 3.1.5 #440719Hey!
Is it OK if reset the widgets to factory settings or default? Please delete all widgets inside the widget areas including the ones in the Inactive Section then add this in the functions.php file:
update_option( 'sidebars_widgets', $null );
Refresh the widget page then remove the code. Don’t forget to remove the code after the first refresh. Based on: http://justintadlock.com/archives/2009/03/03/widgets-reset-wordpress-plugin
Regards,
IsmaelHey EricSmeets!
Thank you for using Enfold.
You can add the attribute “disabled” via javascript. The theme automatically apply unique ids to each checkbox. The very first checkbox id will be “#avia_checkbox_1”. Use google inspector or firebug to get the correct checkbox or input id.
Regards,
IsmaelHi!
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing. Concerning the question, edit the portfolio item then look for the Overwrite Portfolio Link setting then set it to Define Custom Link. Add the # (hash tag) symbol in the Link portfolio item to external URL field.
Thanks!
Cheers!
IsmaelHi Charlotte!
Thank you for using Enfold.
Are you trying to remove the image overlay effect? Please edit the masonry item then disable the Image overlay effect. Set it to “Overlay deactivated”.
Regards,
IsmaelMay 6, 2015 at 11:57 am in reply to: Is there an easy way to change where video shows on productpage… #440263Hey idespiran!
Thank you for using Enfold.
Do you want to replace the product image with a video? Are you going to do this for all products? It’s possible but you need to add a custom field. Edit the product then go to the Screen Options. Enable the custom field, add a new field called “product_video” then add the youtube url as value. If possible, use this kind of youtube url format: http://www.youtube.com/watch?v=G0k3kHtyoqc
Add this in the functions.php file:
add_filter('woocommerce_single_product_image_html','avia_woocommerce_post_thumbnail_description', 10, 2); function avia_woocommerce_post_thumbnail_description($img, $post_id) { global $post, $woocommerce, $product; $image_title = esc_attr(get_post_field('post_content', get_post_thumbnail_id())); $image_link = wp_get_attachment_url( get_post_thumbnail_id() ); $image = get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ), array( 'title' => $image_title ) ); $attachment_count = count( $product->get_gallery_attachment_ids() ); if ( $attachment_count > 0 ) { $gallery = '[product-gallery]'; } else { $gallery = ''; } $video = get_post_meta( $post->ID, 'product_video', true ); $echo = do_shortcode("[av_video src='{$video}' format='16-9' width='16' height='9' custom_class='']"); if(has_post_thumbnail() && get_post_meta( $post->ID, 'product_video', true )) { return sprintf( $echo . '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image); } elseif(has_post_thumbnail() && empty($video)) { return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image); } else { return $img; } }
In order to make the video bigger, add this in the Quick CSS field:
.single-product-main-image { width: 50%; }
For further modifications, please contact codeable: http://kriesi.at/contact/customization
Cheers!
IsmaelHi SirValeq!
Thank you for using Enfold.
It is an iteration of the actual add_image_size function: https://codex.wordpress.org/Function_Reference/add_image_size
Cheers!
IsmaelHi!
3.) You can set the color secton’s Section Minimum Height settings to Custom height in pixel.
4.) Edit the color section, add a unique id to the Section ID field. Use “custom-section” for example then add this in the Quick CSS field:
#custom-section .template-page.content { padding: 0; }
Cheers!
IsmaelHey connepon!
Thank you for using Enfold.
You can use this plugin to control the excerpt length: https://wordpress.org/plugins/advanced-excerpt/
Cheers!
IsmaelHey!
Add this one:
@media only screen and (max-width: 767px) { .main_menu form#searchform { display: none; } }
Best regards,
IsmaelMay 6, 2015 at 10:48 am in reply to: Custom widget area + cyrillic name = broken in enfold 3.1.5 #440227Hey!
Please give us the login details. We would like to check it. You can’t create any custom widget area now?
Regards,
IsmaelHey!
Alright. This might not be helpful at all but I created a test page again (http://www.quierohacer.com/wp-admin/post.php?post=2461&action=edit) and click preview:
Please ask your host to create a phpinfo page. We would like to check the details. Maybe, we can find something there. If possible, please deactivate all plugins then test if the preview is working.
Regards,
IsmaelMay 6, 2015 at 7:44 am in reply to: Move page title out of band out of the header and into the content area #440152Hi!
Please go back to this post: https://kriesi.at/support/topic/move-page-title-out-of-band-out-of-the-header-and-into-the-content-area/#post-403262
Just add the_title function:
add_action('ava_after_main_container', 'ava_after_main_container_mod'); function ava_after_main_container_mod() { echo "<div class'custom-title'>".the_title()."</a>"; }
Or use the ava_after_main_title hook:
add_action('ava_after_main_title', 'ava_after_main_container_mod'); function ava_after_main_container_mod() { echo "<div class'custom-title'>".the_title()."</a>"; }
Cheers!
IsmaelHi!
Is this the only post created with the ALB? Add this in the Quick CSS field to hide the read more link temporarily:
.blog .read-more-link { display: none; }
Cheers!
IsmaelHi!
If the feature gathers enough request, we’ll consider adding it on future updates. You can request the feature here: https://kriesi.at/support/enfold-feature-requests/
Best regards,
IsmaelHi!
Why did you set the header as trasparent if you don’t want a transparent header?
Best regards,
IsmaelMay 6, 2015 at 7:20 am in reply to: Custom widget area + cyrillic name = broken in enfold 3.1.5 #440148Hey!
Thank you for using Enfold.
The video helps but I don’t fully understand the implications. The id changed or has been added when you recreate the custom sidebar and the deleted widget areas come back when the page is refreshed? I guess this is due to the WP 4.2 update which now requires the id attribute when you register the sidebar (https://codex.wordpress.org/Function_Reference/register_sidebar). The theme applies a custom id to the widget areas so you don’t have to do anything when you update the theme however Kriesi stated the following:
In rare cases it might be necessary to check if the widgets are still correctly placed, especially when the user uses plugins to create sidebars. The worst thing that can happen is that a widget is moved to the “inactive widgets” area and needs to be placed in the appropriate widget area.
I noticed in the video that you placed widgets in the “Inactive Widgets” section. This widgets will no longer work unfortunately. This is just a wild guess because I don’t really see what’s happening inside the widget panel nor I fully understand cyrillic characters. I think the next step is to recreate the custom widget area from scratch.
Best regards,
IsmaelHey!
I checked the site on my iPod and the fonts are not blurry any more. It looks sharp except for the price which is a little bit muddy. The price issue only happens on portrait mode. Regarding the images, the image quality is blurred initially like these images for example:
http://www.manufactura.cz/wp-content/upLoads/Sakai-Hoicu-Par-Slivoni-1_web-220×220.jpg
http://www.manufactura.cz/wp-content/upLoads/Sakai-Hoicu-Par-Slivoni-2_web-220×220.jpg
http://www.manufactura.cz/wp-content/upLoads/Hokusai_Vlna3-220×220.jpgTry to upload larger images. Go to Woocommerce > Settings > Products > Display pane. Change the catalogue image size, currently set to 220x220px, then regenerate the thumbnails: https://wordpress.org/plugins/regenerate-thumbnails/
Regards,
IsmaelMay 6, 2015 at 6:50 am in reply to: WORKAROUND for HTTP Error When Uploading Images to Enfold #440136Hi!
OK. It’s not happening on most Enfold installation, which is more than 50,000++ and counting, so it’s either server related or a third party plugin is causing the issue. If this is a common Enfold installation issue then we would have 50,000++ inquiries regarding this specific issue but we don’t. Now, did you follow the suggestion provided in the previous post? Please get back to us after.
Cheers!
IsmaelHi!
Please check your custom css modifications. You have this code which hides the wc tabs:
.product-sorting, .product .woocommerce-tabs, .related.products { display: none; }
Cheers!
IsmaelHey!
Alright. What do you mean by “posting via Email”? You’re trying to make a simple thing complicated or trying to fully automate the settings. If you don’t want a featured image on a post then don’t add a featured image. If you do want a featured image but don’t want to display it in a single post then tick the option under the featured image box. Aside from that, I don’t think we can help with the plugin nor the email settings. Please contact a developer to configure those settings.
Regards,
Ismael -
AuthorPosts