Forum Replies Created

Viewing 30 posts - 48,121 through 48,150 (of 66,033 total)
  • Author
    Posts
  • in reply to: Gallery Caption Problem #440804

    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!
    Ismael

    Hey 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,
    Ismael

    in reply to: Footer still disappearing #440741

    Hey!

    Sorry. My bad. The code should be:

    #footer {
      margin-left: 294px;
    }

    Use css media queries to adjust it on smaller screen sizes.

    Best regards,
    Ismael

    in reply to: Color section: background on mobile firefox #440739

    Hey!

    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,
    Ismael

    in reply to: WPML and custom css #440735

    Hi!

    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,
    Ismael

    in reply to: Catalogue element without pricing + padding #440730

    Hi!

    Replace the code with this:

    .av-catalogue-list .av-catalogue-content li {
        border-bottom: 0px none;
        list-style: outside none disc;
    }

    Best regards,
    Ismael

    in reply to: Make Price Table scrollable #440722

    Hey!

    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!
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Tabs on mobile #440718

    Hi!

    I think I know now why the tab scroll target isn’t working. There is an extra scrollbar on your installation but I can’t find where it’s coming from. I didn’t notice it before. Did you add any css overflow property to any containers?

    Best regards,
    Ismael

    in reply to: Greyed out / disabled checkbox #440274

    Hey 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,
    Ismael

    in reply to: Portfolio Slug #440269

    Hi!

    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!
    Ismael

    in reply to: Images to be sharp in Masonry blog post #440266

    Hi 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,
    Ismael

    Hey 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!
    Ismael

    in reply to: $avia_config['imgSize']['xxx'] parameters #440243

    Hi 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!
    Ismael

    in reply to: CSS Adaption on Enfold #440241

    Hi!

    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!
    Ismael

    in reply to: Excerpt length blog single author, big preview pic #440239

    Hey connepon!

    Thank you for using Enfold.

    You can use this plugin to control the excerpt length: https://wordpress.org/plugins/advanced-excerpt/

    Cheers!
    Ismael

    in reply to: edit search (ajax) position #440235

    Hey!

    Add this one:

    @media only screen and (max-width: 767px) {
    .main_menu form#searchform { display: none; }
    }

    Best regards,
    Ismael

    in reply to: post slider change & carrousels #440228

    Hi!

    Alright. Let us know if you need anything else. :)

    Best regards,
    Ismael

    Hey!

    Please give us the login details. We would like to check it. You can’t create any custom widget area now?

    Regards,
    Ismael

    Hey!

    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,
    Ismael

    Hi!

    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!
    Ismael

    Hi!

    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!
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Padding below top logo on mobile #440149

    Hi!

    Why did you set the header as trasparent if you don’t want a transparent header?

    Best regards,
    Ismael

    Hey!

    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,
    Ismael

    in reply to: blurry pictures #440140

    Hey!

    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.jpg

    Try 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,
    Ismael

    Hi!

    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!
    Ismael

    in reply to: woocommerce product tabs #440129

    Hi!

    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!
    Ismael

    in reply to: Don't display image on single post #440127

    Hey!

    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

    in reply to: top of page cutting off under menu bar #440107

    Hi!

    Aside from the custom css, you don’t have the latest version of the theme. Please upgrade the theme to version 3.1.5.

    Cheers!
    Ismael

Viewing 30 posts - 48,121 through 48,150 (of 66,033 total)