Viewing 30 results - 6,151 through 6,180 (of 10,101 total)
  • Author
    Search Results
  • #506513

    In reply to: wp rss aggregator

    Hi!

    Your setting the featured images of these custom post types? The thumbnail is using the featured image of the post. If none is set then it will not display.

    Best regards,
    Elliott

    #506512

    In reply to: wp rss aggregator

    Hi Andy,

    Thanks for replying. I know you’ve already mentioned that you guys don’t support 3rd party plugins but just wanted to know if there’s anything on the magazine shortcode that i can change/alter/tweak as the plugin itself is working fine with enfold. if you look at the url below (image attached as well magazine shortcode screenshot) and navigate down under “Latest insights”. Right below the magazine shortcode, you’ll notice that the aggregator is working perfectly fine (image thumbnails are all loading along with the posts). The magazine shortcode I believe is also working except that it doesn’t load the thumbnails of the post whereas if i use the aggregator shortcode, everything loads.

    Thanks so much in advance!

    #506471

    Hi Dietlinde!

    Wordpress generiert automatisch verschiedene Thumbnailgrößen, sobald man ein Bild hochlädt. Schaue dir diesen Post dazu an: https://kriesi.at/support/topic/prevent-unused-thumbmail-creation-delete-thumbnails/#post-201959

    Du könntest auch ein Plugin verwenden:
    http://www.nicearma.com/delete-not-used-image-wordpress-dnui/
    https://wordpress.org/plugins/delete-thumbnails/

    Gruß,
    Andy

    Hello Andy,

    1. Thanks but your code left padding space in the section. so i used the code below instead. Please help confirm that this code won’t affect another page.

    .avia-section-small .content {
        display: none;
    }

    2. See below how the social share breaks the product tabs.
    a. Screenshot when social share is placed just before the footer section: https://www.dropbox.com/s/v84vtnixpqy7k18/Blue%20Blouse%20%E2%80%A2%20Greetings%20World3.png?dl=0
    b. Screenshot when social share is placed just underneath the product image thumbnails:
    https://www.dropbox.com/s/l4yezlujwj8ly9l/Blue%20Blouse%20%E2%80%A2%20Greetings%20World%202.png?dl=0

    I need to put the social share underneath the image thumbnails while ensuring that the product tabs look like screenshot b

    Hello Elliott,

    Thanks for the support thus far. I have 2 requests.

    1. I got this code below from (https://kriesi.at/support/topic/woo-related-products-above-tabs/#post-483781) and i tried to tweak it to show related products in a tab.

    /* Upsell Hook */
    
    // Remove the WooCommerce Upsell hook
    remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
    
    // Add a custom action to display Upsells
    add_action( 'growdev_after_single_product_summary', 'woocommerce_upsell_display', 15 );
    
    if ( ! function_exists( 'woocommerce_output_upsells' ) ) {
    	function woocommerce_output_upsells() {
    	    woocommerce_upsell_display( 10,5 ); // Display 10 products in rows of 5
    	}
    }
    
    // A filter to add a custom tab
    add_filter('woocommerce_product_tabs','growdev_add_tab');
    
    // Callback for add_filter that defines the filter. You can change 'New tab' to the desired
    // tab title
    // growdev_custom_tab is the function callback
    function growdev_add_tab( $tabs ) {
    	$tabs['upsell_tab'] = array( 'title' => 'Passende Produkte:', 'priority' => 29,
    								 'callback' => 'growdev_custom_tab');
    	return $tabs;
    }
    
    // The function callback for the custom tab.
    // This does the display upsells action inside of the tab
    function growdev_custom_tab( $key, $tab ) {
    
    	do_action('growdev_after_single_product_summary');
    
    }

    I tweaked it to the code below. it shows the related products in a tab but still shows a duplicate of the related products beneath just before the footer (Screenshot: https://www.dropbox.com/s/r3rk01dviyghhq0/Blue%20Blouse%20%E2%80%A2%20Greetings%20World.png?dl=0) Could you please help fix. thanks.

    /* Related Products Hook */
    // Remove the WooCommerce Related Products hook
    remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 10 );
    
    // Add a custom action to display Related Products
    add_action( 'growdev_after_single_product_summary', 'woocommerce_output_related_products', 20 );
    
    if ( ! function_exists( 'woocommerce_output_related_products' ) ) {
    	function woocommerce_output_related_products() {
    	    woocommerce_related_products( 10,5 ); // Display 10 products in rows of 5
    	}
    }
    
    // A filter to add a custom tab
    add_filter('woocommerce_product_tabs','growdev_add_tab');
    
    // Callback for add_filter that defines the filter. You can change 'New tab' to the desired
    // tab title
    // growdev_custom_tab is the function callback
    function growdev_add_tab( $tabs ) {
    	$tabs['RelatedProducts_tab'] = array( 'title' => 'Related Products', 'priority' => 29,
    								 'callback' => 'growdev_custom_tab');
    	return $tabs;
    }
    
    // The function callback for the custom tab.
    // This does the display Related Products action inside of the tab
    function growdev_custom_tab( $key, $tab ) {
    
    	do_action('growdev_after_single_product_summary');
    
    }

    2. I’m using this code below (got it from: http://kriesi.at/documentation/enfold/enable-social-share-section-for-pages/) to show the social share icons beneath the gallery thumbnails but it breaks the woocommerce product tabs (Screenshot: https://www.dropbox.com/s/l4yezlujwj8ly9l/Blue%20Blouse%20%E2%80%A2%20Greetings%20World%202.png?dl=0). Could you please help fix this.

    remove_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    add_action( 'woocommerce_before_single_product_summary',  'avia_product_share', 20);
    function avia_product_share() {
    	//share links on single post
    	avia_social_share_links();
    	echo "</div>";
    }
    • This reply was modified 10 years, 7 months ago by adotopanuga.
    #506004

    In reply to: Remove comments

    Hi Elliott,
    No, not in single post and i don’t want to disable comments. From the link if you have noticed, there are comment counts under each thumbnail, i just don’t want them to show.

    Thanks
    Arash

    #505909

    Topic: Remove comments

    in forum Enfold
    A_Niloo
    Participant

    Hi,

    I’m currently using Disqus Comment System and disabled enfold comments, but the problem is, in my page where i set to show the posts from a category, the comments appear in below the thumbnails of each post. how do i remove them?
    Please, check the link i sent to you.
    Thanks
    Arash

    Hi Ismael,

    Thanks for your advice.

    I edited the function.php and removed the code.

    After that, the extra images are still added.

    I didn’t regenerate the thumbnails, because the images were still there.

    #505813

    This actually doesn’t work, when I switch the editor back to the basic editor all the content dissappears. You can see I’m inserting tabs at the bottom of each entry. If I save the post in Avia Visual editor I get my tabs but loose my thumbnail. If I save in the basic editor I get my thumbnail back but loose my tabs.

    Please can we focus on the problem. none of the image files that are of this naming scheme: ###_HOME-705×470.jpg or ###_HOME-470×705.jpg are in the media gallery. The original image is – ###_HOME.jpg. It is the 60 files that all have the 470×705 or similar that are the problem.

    I can deal with the instagram….. please help me find why these specific image files are created and yet can not be found anywhere. Are they thumbnails that can not be optimized? are they some specially coded image file that is specific to the home page?

    Please………

    #505037

    That selects the whole gallery, i want to click on that and then be able to select the smaller thumbnails below the main image?

    #505021
    Jay
    Participant

    Im trying to use jquery to add more functionality to the theme, but something in the portfolio item is letting me add to the theme, the portfolio code looks like the following:

    <a href="#" data-rel="gallery-1" data-prev-img="#" class="first_thumb lightbox lightbox-added" data-onclick="1" title="Matt White" itemprop="contentURL"><img data-avia-tooltip="Matt White" src="#" width="180" height="180" title="matt-white" alt="" class="avia_start_animation"></a>

    im trying to get the data-onclick=”1″ with the code:

    	$('a[data-onclick="1"]').hover(function(){
    		alert('clicked on first thumbnail');
    	});
    	

    i know thise code works, as if used it on codepen, but the enfold theme doesnt leave it work, there are no javascript errors, so i cant see why it wouldnt work.

    #504971

    Hi Andy,

    Thanks, but I think you’ve misunderstood.

    1) The settings at [WooCommerce->Settings->Products->Display->Product Images] changes the product image thumbnail size as well. What I’d like is to keep the product images at 450 x 450px square, but have the category thumbnails a different size, (eg. 450px width x 200px height).

    2) [Private link below] What I’m trying to achieve is to separate the categories and products. At the moment they are all together in one loop. Ideally I’d like a heading that says “Categories” with the category thumbnails below, then a dividing line <hr>, then another title saying “Products” followed by the single product thumbnails. (see very crude layout below)

    Categories
    [__] [__] [__]
    —————
    Products
    [__] [__] [__]
    [__] [__] [__]
    [__] [__] [__]

    Thanks
    Dunc

    #504824

    Hey mistral2!

    Send us a link to your page and let us know the exact element your using and we’ll take a look.

    You can find the image thumbnail sizes used around line 120 in the /enfold/functions.php file.

    Best regards,
    Elliott

    #504782

    In reply to: FUZZY THUMBS!

    Hey Cybernun!

    Please go to Appearance > Editor and open Functions.php file and find

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);

    and change it to

    $avia_config['imgSize']['square'] 		 	    = array('width'=>340, 'height'=>340);

    then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #504704

    Topic: enfold portfolio

    in forum Enfold
    Jay
    Participant

    Hi, im using an enfold portfolio item, with a large image at top, righthand side for text and underneath the big image 6 thumbnails. Is there anyway i can replace the text on the right hand side of the big image when i hover over the smaller thumbnails?

    thanks.

    #504455
    Dunc R
    Participant

    Hi guys, thanks as always for the great theme and support.

    Please can you tell me how I can change the size of the category thumbnail images for Woocommerce overview pages?

    Ideally, I want to keep the product thumbnails as 450 x 450px square, but have a smaller height for the category images.

    I’ve had a look through config-woocommerce/config.php, but can’t find the bit that needs to be changed.

    ALSO… do you know how I can put a <hr> or <h2> title between the categories and products on a woocommerce page to split them up?

    thanks
    Dunc

    • This topic was modified 10 years, 7 months ago by Dunc R.
    #504438

    Thanks, the plugin works great for Excerpts.

    Another issue presents itself regarding the Blog layout and the Archives Layout. As stated above, I am using “Use the advanced layout editor to build your own blog layout” to ensure my breadcrumbs are accurate, etc. Because I selected this layout in the Enfold options, I am unable to show a thumbnail next to the headline on Category Archive pages.

    Can I turn off the automatic formatting for the Archives? I’m just looking to show post thumbnails on Archive pages (like this http://kriesi.at/themes/enfold/blog/blog-single-small/), without changing the layout of my main News and Events page.

    #504407

    Hey Keith!

    Please add the following code, to your WordPress functions.php file

    function featuredtoRSS($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
    $content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
    }
    return $content;
    }
    add_filter('the_excerpt_rss', 'featuredtoRSS');
    add_filter('the_content_feed', 'featuredtoRSS');

    Let us know if that worked out.

    Best regards,
    Basilis

    #504211
    Fionadee
    Participant

    Hi,

    I am looking for a way to show a grid of newsletter covers as thumbnails, with links to download pdf files.

    I have looked at gallery and portfolio options, but cannot find a way to make this work. I need a thumbnail of the cover, a title and a link to download the pdf.

    I have used a workaround using “Avia Layout Builder > Text Block Element”, “Add media” to add the image and “Content Elements > Button” to add a button, giving me the following html in my text box:

    <h6><a href="http://www.-------------/pdf/no_56_spring_2015.pdf" target="_self">
    Issue 56 – Spring 2015</a></h6>
    <a href="http://www.-------------/pdf/no_56_spring_2015.pdf" target="_self"><img class="aligncenter size-full wp-image-606" src="http://www.-------------/png" alt="Newsletter 56" width="55" height="76" /></a>
    [av_button label='Download here' link='manually,http://www.-------------/pdf' link_target="_self'' size='small' position='center' icon_select='yes' icon='ue887' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']

    My question is, can this be achieved more efficiently using another feature in Enfold – the Gallery for instance? Basically I need a group of newsletter cover images, a group of article cover images, with titles, and links to enable download of pdfs.
    We will need to add new material occasionally.

    I have included a private link below showing a rough working layout.

    Hope you can help,

    Best wishes
    Fiona

    #503961

    it works. But I lost my icon and now I see the pencil icon .. .can you help me more ?

    as written above

    I also need the lightbox click to be disactivated on the thumbnails (no click at all on (ONLY) this portfolio grid. Is it possibile?

    • This reply was modified 10 years, 7 months ago by niguli.
    #503812

    In reply to: Upcoming Events Plugin

    Hi Ismael,

    Thanks for the response.

    Unfortunately, I’m not that well versed in php. Would you be able to tell me exactly what to add below line 150 to just get the excerpt of the event?

    Your instructions in regards to the thumbnail sizing works great!

    #503727

    Is it possible to replace image thumbnail sizes in a child theme’s functions.php?

    $avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>845, ‘height’=>321); // big images for blog and page entries
    replaced with
    $avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>845 , ‘height’=>442); // big images for blog and page entries

    for example.

    #503487

    Hey!

    Please add following code to Functions.php file of your child theme in Appearance > Editor

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
            $size['widget'] 		 	= array('width'=>70, 'height'=>70 );		
    	return $size;	
    }

    then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #503166

    In reply to: Upcoming Events Plugin

    Hey dialedinmarketing!

    Thank you for using Enfold.

    You need to modify the config-templatebuilder > avia-shortcodes > events_upcoming.php file if you want to add a description or excerpt. Look for this code around line 150:

    $output .= apply_filters('avf_upcoming_event_extra_data', "", $entry);
    

    Below, you can add the excerpt code. Refer to this link for more info:

    https://codex.wordpress.org/Function_Reference/get_the_excerpt
    https://codex.wordpress.org/Function_Reference/get_the_content

    Regarding the thumbnail, add this in the functions.php file:

    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );
    function ava_image_sizes() { 
    add_image_size('square', 845, 321, array('center', 'top'));
    }
    

    Adjust the width (845) and height (321) value. Regenerate or upload the images after.

    Best regards,
    Ismael

    #503163

    thanks – that helped somewhat but there is still some kind of overlap on the left hand images…I just am trying to have good sized thumbnails in a layout that works on all devices (seems like 2 columns is best) with a little padding in between.
    any suggestions?
    Nancy

    • This reply was modified 10 years, 7 months ago by Munford.
    #503073
    vinipinelli
    Participant

    Hello,

    I need my PORTFOLIO open an independent gallery of each job in BIG IMAGES format.

    After clicking Porfolio Project> Open Big Image with a gallery regarding that project.

    What I tried but to no avail:
    – Portfolio> Big image in lightbox: Opens pictures of each thumbnail and not a gallery of each work as desire.
    – Masonry Gallery: Open the pictures one beside the other and not to a separate gallery for each job.

    It is possible?

    Thanks!!

    #503004
    LAVision
    Participant

    When I use a masonry gallery (using all the same size images, by the way), I don’t understand why the thumbnail image doesn’t display it centered? It seems to display the lower part of the image. Then, when I click on the thumbnail and it shows via the lightbox, the image looks normal. Basically, if I want the centered part of the image displayed in the thumbnail (which should be normal/standard to my way of thinking), I have to enlarge the imaged and move the part I want displayed higher, just to have it look centered in the thumbnail image. But then, when it opens in the lightbox, it looks bad because of this modification. I simply can’t use the masonry gallery as a result — which was one of the reasons I liked Enfold in the first place. Is there any way to fix this behavior?

    Sorry, no link because I’m developing the site locally.

    #502992

    Topic: Upcoming Events Plugin

    in forum Enfold
    dialedinmarketing
    Participant

    Hi there,

    I was wondering if you could tell me how to add an except or description of the upcoming events underneath the title of each event. Is there also a way stop the featured images from uploading at a 180px by 180px dimension in the thumbnail?

    Thank you!

    #502937

    In reply to: Image Cropping Issues

    Hi!

    Try changing it to this.

    $avia_config['imgSize']['masonry'] 		 		= 'full';
    

    And then regenerate the thumbnails again.

    Cheers!
    Elliott

Viewing 30 results - 6,151 through 6,180 (of 10,101 total)