Viewing 30 results - 7,591 through 7,620 (of 10,096 total)
  • Author
    Search Results
  • #335804
    profil77
    Participant

    Hi,
    I use an av_magazine in a footer widget with the following code:

    [av_magazine link='category' items='3' offset='0' thumbnails='aviaTBthumbnails' heading='' heading_link='manually,http://' heading_color='theme-color' heading_custom_color='#ffffff' first_big_pos='top' custom_class='']

    A paginated site shows on page (1) the posts No. 1-3, on page (2) the posts No. 4-6, from page (3) on no posts (there exist only six posts).
    Do you have an idea how to get the posts No. 1-3 on eyery page?
    Thanks, Bernd

    • This topic was modified 11 years, 5 months ago by profil77.
    #335520

    In reply to: Portfolio

    I would like to have a foto portfolio
    with…
    1 an element for sorting the categories
    2 category thumbnails with one photo shown and behind that
    3 a gallery with all ohter pics which opens by clicking

    i tried and will try on but didn´t succeed
    please help or feel free to chanbe something
    you already have the login

    thank you

    #335412

    Hey!

    Thank you for the update.

    You can only use hierarchical parameter for pages though it is possible to enable it on custom post types, I’m not entirely sure of the ramifications of doing so. Add this on functions.php:

    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_cpt_args', 1);
    
    function avf_portfolio_add_cpt_args($args) {
    	$args['hierarchical'] = true;
    	$args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'page-attributes');
    	return $args;
    }

    Cheers!
    Ismael

    #335281

    Hey!

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

    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)

    and change it as needed then regenerate thumbnails using – https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #335264

    Hey diefleischerei!

    1- Please add following code to Quick CSS

    a.cart_dropdown_link {
    color: #f05a1a!important;
    }

    2- Please go to Settings > Media and change thumbnail sizes and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
    Regards,
    Yigit

    #334949

    In reply to: calc_dimensions

    Hi Ismael,

    Thanks for taking a look. Yes, as noted in my previous private response with the login credentials, the call to calc_redimensions is commented out. I can’t have my website “disabled” for any long length of time. Seeing as coordinating a time for me to enable the function call is not feasible, I’ve uploaded my cpanel credentials so you can change the file yourself.

    As for the slow image loads, I’m aware of the issue, which is two-fold.

    2) WordPress is kind of stupid when it comes to image sizes. It thinks that pulling a smaller-sized image into a larger size frame is OK, and it’s not because that reduces the sharpness of the image. To stop having my thumbnails being softened I’ve had to force WordPress to use the original size image which is usually about 1024×768 and between 200k to 300k. As you noted, this slows my page load times. Image sizing is something I need to look at more, but simply havn’t had time to do yet due to other pressing issues.

    21) My hosting server is very slow. That’s why I use Cloudflare and also plan on moving my site to inmotionhosting.com in the future. Cloudflare as been a tremendous help with faster page loads. I’m hoping inmotionhosting will be another significant improvement. The move to inmotion is being delayed until I resolve a few more issues with my site, like this one.

    I will look at the optimization plugins you recommended. Thanks for the list.

    -Al

    #334288
    WynandB
    Participant

    Guys, I want to say first of all that the support is the main reason I support and recommend you guys to everyone I can. But is have been very disappointment in your support… my previous question did not even get an answer.

    As for my problem: My portfolio images are all different sizes in the portfolio grid on my site http://www.galoot.co.za/compostmatters
    With all your themes there has never been a problem where the thumbnails gets generated like this. I have tried the “regenerate thumbs” plugin etc, but still nothing.

    I will now try the simple image sizes as a last measure, but I feel this is wasting my time and I expect stuff like thumbnail sizes to work and not for 3rd party plugins to be a solution to basic problems like this.

    #334277
    chrisfrank22
    Participant

    Hello,

    Great theme! The only issue I have had so far is that when I create a post and publish the featured image the featured image links to one of the available products when clicked on; instead of directing visitors to the post itself. Even if I don’t use a featured image the blank thumbnail still directs to the product.

    For the sake of visitors I have changed the Enfold blog setting to “use advance layout editor to build” so the visitors can go straight to the post when they click on it.

    #334222

    Hi!

    If you want to change the layout of the category page featured image, you can edit config-woocommerce > config.php. Find this code on line 718:

    if(is_product_category())
    	{
    		global $wp_query;
    		$image	= "";
    		if(isset($wp_query->query_vars['taxonomy']))
    		{
    			$term 			= get_term_by( 'slug', get_query_var($wp_query->query_vars['taxonomy']), $wp_query->query_vars['taxonomy']);
    
    			if(!empty($term->term_id))
    			{
    				$attachment_id 	= get_woocommerce_term_meta($term->term_id, 'thumbnail_id');
    
    				if(!empty($attachment_id))
    				{
    					$image = wp_get_attachment_image( $attachment_id, $image_size, false, array('class'=>'category_thumb'));
    					if($image) echo "<div class='page-thumb'>{$image}</div>";
    				}
    			}
    		}
    	}

    This is line of code is specifically responsible for the category featured image:

    if($image) echo "<div class='page-thumb'>{$image}</div>";
    

    Cheers!
    Ismael

    #333896

    Hey lsgstudio!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    time.av-magazine-time {
    display: none;
    }

    then please go to Settings > Media and increase thumbnail size and and regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #333876
    lsgstudio
    Participant

    Hello,

    I would like to make 2 changes to the magazing feature.
    1) I would like to increase the size of the thumbnail to something more like 200×300 portrait
    2) I would like to not display the date.

    Are these possible? Can you help?

    Thanks

    Hey!

    Please add this on functions.php:

    add_filter( 'post-format-image', 'avia_image_slideshow_filter_2', 10, 1 );
    
    function avia_image_slideshow_filter_2($current_post)
    {
    
    	$prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');
    	$image = "";
    
    	if(!$prepend_image)
    	{
    		$image		= avia_regex($current_post['content'],'image');
    		if(is_array($image))
    		{
    			$image = $image[0];
    			$prepend_image = '<div class="avia-post-format-image"><img src="'.$image.'" alt="" title ="" /></div>';
    		}
    		else
    		{
    			$image		= avia_regex($current_post['content'],'<img />',"");
    			if(is_array($image))
    			{
    				$prepend_image = '<div class="avia-post-format-image">'.$image[0]."</div>";
    			}
    		}
    	}
    	else
    	{
    		
    		$large_image = get_the_permalink(get_the_ID());
    		$prepend_image = '<div class="avia-post-format-image"><a href="'.$large_image.'">'.$prepend_image."</a></div>";
    	}
    
    		if(!empty($prepend_image) && is_string($prepend_image))
    		{
    			if($image) $current_post['content'] = str_replace($image, "", $current_post['content']);
    			$current_post['before_content'] = $prepend_image;
    			$current_post['slider']  = "";
    		}
    
    	return avia_default_title_filter($current_post);
    }
    

    Best regards,
    Ismael

    #333667

    Hey Lee!

    Caption is showing under the thumbnails – http://screencast.com/t/0d7tq4g4UgZ

    Cheers!
    Josue

    #333588
    kerriotoo
    Participant

    Hi there,
    I would like to find a way to overlay a small custom graphic on the thumbnails of certain tagged portfolio items (in my case each portfolio item is a property). I have currently tagged New Listings, New Prices, Open House, ect. I would like them to be visible on the portfolio grids…I currently have grids set up on the homepage and each listing category page. I’ve included the links. What’s the best way to go about this? I guess the image would be an overlay of the featured image thumbnail. Any alternate suggestions on accomplishing this are definitely welcome. Thanks! I hope that makes sense.

    #333561
    Perenso
    Participant

    For the life of me I cannot figure out how to get LayerSlider to open embedded video (using an iframe) to show up in a popover.

    This use to work perfectly with the old version of LayerSlider but since it’s been updated it just keeps opening the videos in the main window.

    What I’m doing is choosing ‘Image’ as the layer type then specifying the image of a PLAY button.
    I then switch over to the ‘Link’ tab and enter in the embed popover URL into the field and set it to ‘Open on same page’.
    http://fast.wistia.net/embed/iframe/k15tf84uzl?videoWidth=640&videoHeight=388&controlsVisibleOnLoad=false&autoPlay=true
    Additionally if I used a fancybox plugin, I would add the class ‘fancybox-iframe’ into the ‘Attributes’ tab.

    In the old version of the Enfold theme with LayerSlider, it could detect the source of the video (Youtube etc) and allow it to load as a popover video.

    I’m currently using a video from Wistia. I’ve tried a Youtube hosted video but it too doesn’t open in a popover now either.
    The only way that I could get it to work is choosing the ‘HTML / Video / Audio’ layer type and entering in the following html code:

    <a href="//fast.wistia.net/embed/iframe/k15tf84uzl?popover=true"><img src="https://embed-ssl.wistia.com/deliveries/07b5e1d983243191d31e6f4f47ca8dfa7fcdb75d.jpg?image_play_button=true&image_play_button_color=0212e3e0&image_crop_resized=150x84" alt="" /></a>
    <script charset="ISO-8859-1" src="//fast.wistia.com/assets/external/popover-v1.js"</ script>

    But I don’t like having to do this because the thumbnail/preview image does not actually resize itself when you alter the window size of the browser, so everything around it is reduced except for the video play button.

    Can you please help figure out how to get this working like it was before?

    • This topic was modified 11 years, 5 months ago by Perenso. Reason: Added code tags in
    #333295
    slwuppertal
    Participant

    Hi Folks!

    I am using your wonderful theme for two different websites now and just encountered a problem, where I do need your help:

    As the topic title expresses, I would like to change the image size in the recent works widget. With the help of the forum I nearly made it. But after I successfully updated the thumbnail size, the pics are now stretched.

    How can I use a self created thumbnail size in the widget?

    Appreciate your help.

    Best regards,
    Stefan

    #333173

    In reply to: Pagination not working

    Hi Yigit, in deed – the Facebook Like Thumbnail was the sucker. A plugin that wasn’t suspected to cause this effect.
    Thank you for your support!
    Best, Gerold

    #333082

    Hey Josue

    Thanks a lot. That did the trick (though “fake-thumbnail…” ?) :)

    I am sorry that the autoplay functionality has been removed. My clients really liked that feature. Any chance of bringing it back in a later update?

    very best regards

    Hey!

    Please go to Settings > Media, look for the Gallery thumbnail size then set the crop parameter to No. Adjust the width and height to 9999. This will somehow distort some of the images. The better solution is to crop your images to landscape mode before uploading them.

    Best regards,
    Ismael

    #332846

    Hey!

    Try adding this code to the Quick CSS:

    .ls-thumbnail-slide {
        margin-left: 0 !important;
    }

    Cheers! 
    Josue

    #332836

    Hey Carsten!

    1. Add this to Quick CSS:

    .fake-thumbnail a.slide-image {
        display: none;
    }

    2. That’s currently not available in the Enfold new popup script, however you can install another popup script and disable the default theme one via Theme Options.

    Regards,
    Josue

    #332778

    i am using 3.0 can you please help me? My boss has to have a sidebar for the product pages this is crucial below is the functions file for the child theme i am using, i am using a custom widget for the sidebar and on the product listing pages i have it set to ‘sidebar product page’ and i have the child theme overall settings for all sidebars to be set to the right below the functions file i will add the css u sent me please help if you can i am so close please let me know if anyhting is wrong?

    FUNCTIONS FILE-CHILD THEME

    <?php
    $avia_config[‘imgSize’][‘shop_thumbnail’] = array(‘width’=>120, ‘height’=>120, ‘crop’ => true);
    $avia_config[‘imgSize’][‘shop_catalog’] = array(‘width’=>260, ‘height’=>260, ‘crop’ => true);
    $avia_config[‘imgSize’][‘shop_single’] = array(‘width’=>450, ‘height’=>999, ‘crop’ => false);

    add_action( ‘woocommerce_before_single_product_summary’, ‘avia_add_image_div’, 2);
    add_action( ‘woocommerce_before_single_product_summary’, ‘avia_close_image_div’, 20);
    function avia_add_image_div()
    {
    echo “<div class=’single-product-main-image alpha’>”;
    }

    function avia_close_image_div()
    {
    global $avia_config;
    $avia_config[‘currently_viewing’] = “shop_single”;

    echo “</div>”;
    }

    add_action( ‘woocommerce_before_single_product_summary’, ‘avia_add_summary_div’, 25);
    add_action( ‘woocommerce_after_single_product_summary’, ‘avia_close_summary_div’, 3);
    function avia_add_summary_div()
    {
    echo “<div class=’single-product-summary’>”;
    }

    function avia_close_summary_div()
    {
    echo “</div>”; //close out the summary
    get_sidebar();
    }

    ?>

    CSS-style.css child-theme

    /*
    Theme Name: Enfold Child
    Description: A Child Theme for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */

    body {
    font: 15px/1.8em “HelveticaNeue”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    color: #444;
    -webkit-text-size-adjust: 100%;
    }

    td {
    font-size: 14px;
    padding: 9px 12px;
    border-style: solid;
    border-width: 1px;
    border-left:none;
    border-top:none;
    }
    table {
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
    }
    #top select {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    padding: 8px 6px;
    outline: none;
    font: 14px “HelveticaNeue”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0px;
    }
    blockquote small, blockquote cite, blockquote small a, blockquote cite a, blockquote a small, blockquote a cite{font-size: 15px;}
    blockquote{
    border-left-style:solid;
    border-left-width:7px;
    padding-left:20px;
    margin-bottom:1em;
    margin-right:1em;
    font-size: 12px;
    line-height: 1.8em;font-family: Georgia,”Times New Roman”;
    }
    .asc_facebook .social_widget_icon{
    color:#fff;
    background-color:#3b5997;
    border-color:#3b5997;
    text-shadow: 1px 1px 1px #17ACD8;
    }
    .asc_gp .social_widget_icon{
    color:#fff;
    background-color:#d64937;
    border-color:#d64937;
    text-shadow: 1px 1px 1px #17ACD8;
    }
    .logo {margin:7px 0}
    .single-product .product {
    width: 68%;
    margin-right: 4%;
    clear: none;
    float: left;
    }

    #332661
    ragugo
    Participant

    I try to change the image thumbs on Magazine with author avatar, but it doesn’t work.
    I try to open magazine.php and change the code:

    $image= get_the_post_thumbnail( $entry->ID, $this->atts[‘image_size’][$style] );

    with

    $image= get_avatar( get_the_author_meta( ‘ID’ ), 81 );

    But it doesn’t work, I see the ID=1 avatar.

    Please, help!

    #332636
    günter
    Participant

    I need to display some kind of posts not in single pages, but to display them in an archive-like page with a collapsible list. Therefore I had to make some modifications in magazine.php. My modifications:

    		function render_entry($entry, $style)
    		{	
    			$output			= "";
    			$image	 		= get_the_post_thumbnail( $entry->ID, $this->atts['image_size'][$style] );
    			$link			= get_permalink($entry->ID);
    /* START MODIFIKATION ----------------------------------- //
    			$titleAttr		= "title='".__('Link to:','avia_framework')." ".the_title_attribute('echo=0')."'";              // DELETED
    end delete, continue modification: ---------------------- */
    $titleAttr = "title='".get_the_title($entry->ID)."'";     // new
    $titleid = $entry->ID;                                           // new
    if( get_the_ID() == '2' ) {                                       // new  ( if magazine at hompage )
     $title = "<a href='http://www.timegolf.net/_news/#news-".$titleid."?news=".$titleid."' {$titleAttr}>".get_the_title($entry->ID)."</a>";
                                                                            // new
     }                                                                      // new
    else {                                                                // new
    interrupt modification: -------------------------------------- */
    			$title	 		= "<a href='{$link}' {$titleAttr}>".get_the_title($entry->ID)."</a>";
    end interrupt ,  continue modification: ---------------- */
     }                                                                      // new
    END MODIFICATION---------------------------------------- */

    The page works properly, if it is called by a simple link (“/page/”) or with only one attribute behind the url (/page/#anchor or /?get_var=id).
    Screenhot:
    So sollte es sein

    Unfortunately I need both: hash tags for deep-linking to the specific item AND the id, to open the called up item by javascript. In that case the second tab in the left column loses its position and clicking at it does not work anymore.
    Screenshots:
    the prolem
    the problem

    I have no idea, how to solve this tricky problem.

    Please help me!
    Günter

    Hey!

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

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider

    and change the values as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #332490
    pcball
    Participant

    Hi Support,

    How can I display the caption under the thumbnail at Gallery ?

    Please advice.

    #332309

    Hi!

    Please uncheck “Hard Crop?” and then re-regenerate the thumbnails

    Regards,
    Yigit

    #332218

    Hi Ismael,

    Thank you. But if I use a big category image, will the images on the category overview page be that wide as well? Ideally I want to have small thumbnails on the category overview page and a big widescreen image just below the header on each of the various category pages. Is this possible?

    Edit: if I change the image width to full width, it still does not change position. I’d like it to be below the header and stretching from one end of the screen to the other, like this: http://www.bikecap.com/nl/pillow.html So the image is above the main content and sidebar. Is this possible?

    • This reply was modified 11 years, 5 months ago by johniem.

    Hi!

    Alright. Let us know if you’re ready. We’ll keep the thread open.

    1.) Portfolio Grid does have a thumbnail size option so you can select the size of the grid image. This is possible, you can change the thumbnail sizes with this plugin: https://wordpress.org/plugins/simple-image-sizes/

    2.) Yes, this is also possible. Adding a border that will act as a gap between portfolio items will do.

    3.) Yes, we can use the css grayscale filter.

    Best regards,
    Ismael

    #332103

    Hi!

    I’m sorry but widget size image is less than 2KB. I don’t think it will consume a lot of space on your account. Please reactivate the widget size thumbnail then regenerate the thumbnails. You can use this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Regards,
    Ismael

Viewing 30 results - 7,591 through 7,620 (of 10,096 total)