Viewing 30 results - 6,121 through 6,150 (of 10,101 total)
  • Author
    Search Results
  • #509742
    mikehartrich
    Participant

    The gallery set to display one big image and thumbnails below scales the image up to the full width. So when we have a page with no sidebar, the image is huge, and scaled up beyond it’s actual size so it looks terrible. The image size doesn’t change when I change the Gallery Big Preview Image Size options. I tried changing the image size to Medium 560×0 and the image was still showing at the full width of the page, which would have been over 1000 px wide. Even when I set it to “No scaling” it still scales the image up to fit the full width of the page or layout cell that it’s in.

    This happens when the gallery is in a grid row, in a 1/1 row, and in no layout element (just dropped on the page). We have had to add a 2nd column on the page just to try to constrain the gallery so it doesn’t scale up the images and look terrible. But even on my 13″ MacBook Air it enlarges the image beyond it’s actual dimensions and degrades the quality.

    #509573
    Maciej
    Participant

    Hello.

    Can you help me to make category page as regular page?
    I have everything what I need, just it doesn’r work :)

    1. I need to have just regular page. I would like to copy all code from page.php to category.php (or archive.php).

    This doesn’t work for me. As I imagine this should work like normal page. If you visit some category page you should get empty, page with header, sidebar etc.? Right?

    Right now, I have posts one after another like blog (even with code from page.php). I have my files in child folder (category.php and archive.php works like that). If I have empty file, only white page shows (as should be).

    2. I also heve nice plugin that let me to edit category page as regular post (Enhanced Category Pages ).
    What I need to do is to include this code:

    //in category.php or taxonomy.php
    <?php
        global $enhanced_category;
        //get enhanced category post and set it up as global current post
        $enhanced_category->setup_ec_data();
    ?>
    <!-- enhanced category content -->
    <?php the_post_thumbnail("medium"); ?>
    
    <?php get_template_part( 'content', 'page' ); ?>
    
    <!-- custom fields -->
    <?php
        get_post_custom();
    ?>
    
    <?php
        // If comments are open or we have at least one comment, load up the comment template
        if ( comments_open() || get_comments_number() ) :
            comments_template();
        endif;
    ?>

    From this I only need part for content. After that I can show only text from my editor.

    Can you help me to mix this code?
    I think I need only this part:

    <?php
        global $enhanced_category;
        //get enhanced category post and set it up as global current post
        $enhanced_category->setup_ec_data();
    ?>

    to run this but right now I can’t even make empty page.

    Thnaks!
    rm

    #509431

    Hi!

    The code is actually working on my installation. Did you regenerate the thumbnails?

    https://wordpress.org/plugins/force-regenerate-thumbnails/

    Cheers!
    Ismael

    #509375

    Hi Rikard

    In the case of the lower Magazine layout example, I would like there not to be a huge percentage of white space (and the grey lines) after the thumbnails and post title etc ….

    In the case of the upper Grid layout example, now that with Elliot’s code the image alignment is neater with regard to the text, I would like to have a larger left margin (white space), so that it doesn’t look too close to the ‘page edge’ ….

    Hope this all makes sense, and many thanks for looking at it :)

    Mike

    #509121

    Namaste Pat!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab to remove borders around image

    .av-magazine-hero .av-magazine-thumbnail {
        border: none;
    }

    Regards,
    Yigit

    #509115
    mcmahon_pt
    Participant

    Hi there,

    I’ve been using Enfold for years and it’s been great for our site.

    One problem that nags at me is when a featured image is portrait for a blog post, the blog widget (set to magazine with first entry bigger) never crops right. See today’s front page, halfway down: http://yogatrade.com

    Is there a setting for this that I’m missing or a snippet of CSS that would fix that?

    Thanks for your help,

    Pat

    #508889

    Hi!

    The code above will completely remove the thumbnails. Please try it first then update us if it doesn’t work. This is the full list of the thumbnails if you want to remove everything:

    function ava_image_sizes() { 
    	add_image_size('masonry', 0, 0);
    	add_image_size('magazine', 0, 0);
    	add_image_size('widget', 0, 0);
    	add_image_size('featured', 0, 0);
    	add_image_size('featured_large', 0, 0);
    	add_image_size('extra_large', 0, 0);
    	add_image_size('portfolio_small', 0, 0);
    	add_image_size('gallery', 0, 0);
    	add_image_size('entry_with_sidebar', 0, 0);
    	add_image_size('entry_without_sidebar', 0, 0);
    	add_image_size('square', 0, 0);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Note that removing the thumbnails will have a negative effect on the site, on google pagespeed insights for example.

    EDIT: Don’t forget to use the plugin suggested on the previous post after you add the code. It will delete all the previous images then regenerate the default image.

    Regards,
    Ismael

    #508854

    Hi!

    Yes, I know exactly what you want. That’s why I suggested to delete the registered thumbnail sizes in functions.php file. Actually, I edited my post above. You can try the ava_image_sizes function in the child theme’s functions.php file. Regenerate the thumbnails with this plugin: https://wordpress.org/plugins/force-regenerate-thumbnails/

    Regards,
    Ismael

    #508851

    To change the predefined thumbnail sizes this one is correct – i found in other discussions:

    function enfold_customization_modify_thumb_size( $size ) {
        $size['widget'] 		 		= array('width'=>60, 'height'=>50 );							// small preview pics eg sidebar news
       $size['square'] 		 	        = array('width'=>180, 'height'=>180);		                                // small image for blogs
      return $size;	
    }
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    

    WHAT I WANT… is to delete the thumbnail completely with a function.
    (Not just hide it) because of SEO issues
    COMPLETELY REMOVE THE THUMBNAIL

    #508848

    Hi!


    @hunter74
    : I’m sorry but it’s not possible to delete a pre-set thumbnail size with a function. You can only remove the registered thumbnail size on functions.php file. Look for this block of code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $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
    

    EDIT: Actually, you can try this in the child theme’s functions.php file:

    function ava_image_sizes() { 
    	add_image_size('masonry', 0, 0);
    	add_image_size('magazine', 0, 0);
    	add_image_size('widget', 0, 0);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Set the width and height to 0. Register all the thumbnails that you want to remove inside the ava_image_sizes function.

    Regards,
    Ismael

    #508690

    Hi Drake,
    Yes, I see that as well. However it’s “Earthcycle Pulp Trays” (http://ckf.nicomitcms.com/products/earthcycle-pulp-trays/) that doesn’t seem to exist, but is showing up with a thumbnail and link in the portfolio grid on this page http://ckf.nicomitcms.com/products/earthcycle/.

    “Earthcycle Pulp Fibre Tray” has a similar name, but is a separate portfolio item – http://ckf.nicomitcms.com/portfolio-item/earthcycle-pulp-fibre-trays/.

    I don’t recall adding anything specific to the functions.php for the widget areas in the footer. However I did make some updates to that file and uploaded my copy to the updated theme folder. So if there was anything changed, that should have fixed it. I guess I just need to go under “Appearance > Widgets” and put the info back in each widget area. It would be nice to know why it happened though to avoid it for future updates.

    #508679

    Very important function!!

    DO you know how to deactivate the thumbnails.
    With a function in the childtheme – please?

    #508674

    heio. Don´t wan to open a new thread.

    Is it possible to hide 7 deactivate the thumbnails with a function!

    with a function in the child theme functions.php!

    #508485

    Hi!

    1.) the first two pictures have 113×169 px (naturally), while the other pictures have 450×450 px. That is why you see the difference. Delete those two pictures and upload them in 450x450px as well. Regenerate your thumbnails.

    2.) Not sure what you are trying to achieve and on the link you have provided I ca’t see any sidebar at all. Can you show us an example of what you are trying to do, so we get a clear idea of what you need?

    Regards,
    Andy

    #508201
    rudtek
    Participant

    I’m having problems with your form builder. The page at movept.rudtek.com. the last 2 sections of the page are giving me problems. I want to a have a 2 column (1/3, 2/3) section followed by a full width map section. If i place the 2 colum section in a grid row, it doesn’t stay in the container. However if i place it in a color section and then place two colums so that i can stay in the container, it places the map in a container so it’s no longer full width. I’ve placed the full code below. You’ll see that if you delete the bottom color section that has 2 columns (a contact data section adn a contact form, the map will go back to full width.

    How can we fix this?

    [av_section min_height='100' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='aviaTBscroll_down' id='' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-header-parallax01.jpg' attachment='24' attachment_size='full' attach='parallax' position='center left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='custom' color='#79c143']
    <h1 class="pagetitle">Move Better,</h1>
    <h1 class="pagetitle">Feel Better</h1>
    [/av_textblock]
    
    [av_one_half first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='custom' color='#ffffff']
    At MovePT, Physical Therapy is all about learning how to move in ways that feel better. Through movement skills and lessons designed with your life in mind, you can reduce pain, improve your performance, and move better at work, home, and play.
    [/av_textblock]
    
    [/av_one_half]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='services' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">Services:</h1>
    <h2 class="subtitle" style="text-align: center;">Harmony and rhythm keep the body in balance and when the system fall out of sync the pain starts to set in. Let me help you in becoming pain free by teaching you better techniques in body movement. Call today or book an appointment below.</h2>
    [/av_textblock]
    
    [av_one_fourth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_workplaceprograms_thumbnail.jpg' attachment='194' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Workplace Programs</h3>
    <p style="text-align: center;">Industry specific movement workshops and practical injury prevention for employees in all types of business.</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#workplace' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth][av_one_fourth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_workshopsandevents_thumbnail.jpg' attachment='195' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Movement Labs</h3>
    <p style="text-align: center;">Solve your movement puzzles and get out of pain with skills learned in these dynamic group sessions.</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#workshop' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth][av_one_fourth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_trainingandeducation_thumbnail.jpg' attachment='193' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Training & CEUs</h3>
    <p style="text-align: center;">Continuing education seminars and advanced movement training for rehabilitation professionals</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#training' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth][av_one_fourth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_physicaltherapy_thumbnail.jpg' attachment='192' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Physical Therapy</h3>
    <p style="text-align: center;">Learn to move in ways that help you perform better every day. Private PT sessions for all ages and stages.</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#physical-therapy' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-contact-parallax06.jpg' attachment='23' attachment_size='full' attach='parallax' position='center center' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_testimonials style='slider_large' columns='2' interval='3' font_color='' custom_title='' custom_content='']
    [av_testimonial_single src='' name='Jane Doe' subtitle='' link='http://' linktext='']
    Jeni has been treating my daughter for the past two years, and we have been enormously pleased with the results of her work. She is wonderful with children and makes the session so much fun that my daughter loves to attend and tries her best to do just what Jeni asks. Jeni's kinetic sense is phenomenal; she analyzes patterns of movement and intuitively grasps exactly what types of exercise and movement will be most beneficial. As a result, we have seen major improvements in my daughter's functional ability...
    [/av_testimonial_single]
    [/av_testimonials]
    
    [av_button label='READ MORE' link='manually,http://' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='calendar' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">Calendar:</h1>
    <h2 class="subtitle" style="text-align: center;">Book and appointment with us, call or email today.</h2>
    [tribe_mini_calendar]
    [/av_textblock]
    
    [/av_one_full]
    [/av_section]
    
    [av_section min_height='50' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-blog-parallax03.jpg' attachment='20' attachment_size='full' attach='parallax' position='center left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='blog' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">BLOG:</h1>
    <h2 class="subtitle" style="text-align: center;">Stay on track with MovePT.</h2>
    [/av_textblock]
    
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='3' contents='excerpt_read_more' content_length='content' preview_mode='auto' image_size='portfolio' items='3' offset='0' paginate='no']
    
    [/av_one_full]
    [/av_section]
    
    [av_section min_height='50' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-about-parallax04.jpg' attachment='15' attachment_size='full' attach='parallax' position='center left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">ABOUT:</h1>
    My name is Dr. Jeni Gall. I have a true passion for the intricacies of human movement and a love of teaching. I believe the art of Physical Therapy is in helping clients recognize habits and patterns of movement that are contributing to pain and dysfunction and then teaching practical strategies for lasting change.
    
    <strong>Graduated</strong> with Doctorate in Physical Therapy from <a href="http://www.pacificu.edu" target="_blank">Pacific University</a>, OR (2003)
    
    <strong>Clinical Experience</strong> includes pediatrics, orthopedics & sports, women’s health, and skilled nursing
    
    <strong>400+ hours</strong> of continuing education
    
    <strong>Comprehensive Movement Training</strong> – <a href="http://www.movementseminars.com/courses/default.cfm" target="_blank">Certified Orthopedic Movement Specialist</a> (2013-2014)
    
    <strong>Credentialed Clinical Instructor</strong> – <a href="http://www.apta.org/" target="_blank">American Physical Therapy Association</a> (2013)
    
    <strong>Board of Directors, Vice President</strong> – <a href="http://masteringpaininstitute.com/">Mastering Pain Institute</a> (2015)
    [/av_textblock]
    
    [/av_section][av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='resources' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-resources-parallax05.jpg' attachment='26' attachment_size='full' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">RESOURCES:</h1>
    <h2 class="subtitle white" style="text-align: center;">Online Movement Lessons.</h2>
    [/av_textblock]
    
    [av_button label='LEARN MORE' link='manually,/resources' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='contact' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">CONTACT:</h1>
    <h2 class="subtitle" style="text-align: center;">Want to book an appointment? Contact us today and get moving.</h2>
    [/av_textblock]
    
    [/av_section][av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    
    [av_cell_one_third vertical_align='middle' padding='30px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Direct – 503.310.1323
    
    [av_font_icon icon='ue842' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Address – 1409 Franklin Street Suite 103, Vancouver, WA
    
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Office Phone – 360.718.7603
    
    [av_font_icon icon='ue838' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Fax – 360.852.8043
    
    [av_font_icon icon='ue843' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Get Directions
    [/av_textblock]
    
    [/av_cell_one_third][av_cell_two_third vertical_align='middle' padding='30px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    [contact-form-7 id="47" title="Contact form 1"]
    [/av_textblock]
    
    [/av_cell_two_third][/av_layout_row][av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_one_third first  min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Direct – 503.310.1323
    
    [av_font_icon icon='ue842' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Address – 1409 Franklin Street Suite 103, Vancouver, WA
    
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Office Phone – 360.718.7603
    
    [av_font_icon icon='ue838' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Fax – 360.852.8043
    
    [av_font_icon icon='ue843' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Get Directions
    [/av_textblock]
    
    [/av_one_third][av_two_third  min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    [contact-form-7 id="47" title="Contact form 1"]
    [/av_textblock]
    
    [/av_two_third][/av_section][av_google_map height='400px' zoom='16' saturation='' hue='#5b9dc2' zoom_control='aviaTBzoom_control']
    [av_gmap_location address='1409 Franklin Street' city='Vancouver' country='' long='-122.676714' lat='45.6322059' marker='22' imagesize='40' tooltip_display='']
    1409 Franklin Street Suite 103 Vancouver, WA
    [/av_gmap_location]
    [/av_google_map]
    
    
    #508054

    Hello,

    I think that is the correct way to override one of the Enfold parent theme functions in config-woocommerce/config.php– at least I am convinced it is.

    However, it seems the function that Elliot originally recommended doesn’t fire anyway in my case, so I don’t think we are overriding the correct spot yet. Perhaps that function only fires when there is a category banner image, and I’m just using the category thumbnail field with category styling set to Default. Any ideas?

    Thanks

    #507899

    Hey ditteditte!

    1. Add this to your custom CSS.

    .inner_product .thumbnail_container img { max-height: 150px; min-height: 150px; }
    

    2. Hmm, it sounds like you will need to create your own product shop pages. You can do this by creating a new page and in the layout builder drag the “Product Grid” or “Product Slider” elements to your page content. You can find them in the “Plugin Additions” tab.

    Cheers!
    Elliott

    #507862

    Hi!

    did you regenerate thumbnails after changing image sizes? use this plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Andy

    #507451

    Thanks Elliott. I know I can do links, but I was trying to find an easy solution for my client who is not very tech savvy. She likes having a thumbnail of each newsletter and then linking that to the actual pdf.

    Cheers
    Ivana

    #507450

    Hi-
    I am finally circling back on this. What I ended up doing was changing from perfect grid to flexible masonry and then the thumbnails and text below it looked great. I have since added a bunch of entries and have run into the problem of sorting. It seems like with the flexible masonry it is running in a snake like pattern, line 1 left to right, line 2 right to left, line 3 left to right. Is this normal? Is there a way for all the lines to run left to right?
    Thanks!

    #507438
    Sherman
    Participant

    Hi Team, running WordPress 4.3.1 & Enfold 3.3.2. After a recent update, my client noticed all her Portfolio Thumbnails in each Portfolio Item on the Home Page are large, blurred and stacked under and the same width as the featured image, instead of small thumbnails, sharp resolution, and arranged as small thumbnails under the featured image.

    http://chilliwackgatedcommunities.com/

    Would the mods or members have experienced this to offer a solution/fix? Thanks!

    #507101

    Hey!

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

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);	

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

    Regards,
    Yigit

    Rakaus
    Participant

    Hi,

    First of all, great theme. Had a really fun experience with customizing it without knowledge about websites.
    A few questions before i’m really content with the website:

    1. After updating to the latest version, the website is displayed differently on mobile devices. When I visit the website on a mobile device, the background image of the color section is displayed full page instead of the color section itself. Any idea how to solve this?

    2. I would like to show blog posts in multi author blog style. The featured image should be hidden though. This way there are thumbnails for the post in the latest news widget.

    Hopefully you guys can help me out. Thanks in advance!

    Regards,
    Remco

    Hello,

    I’m getting my codes from: http://kriesi.at/documentation/enfold/enable-social-share-section-for-pages/
    I put them at the top of my child theme’s functions.php file.

    This is the code to put social share at the bottom of the product page

    add_action('woocommerce_after_single_product_summary', 'avia_add_social_toolbar', 10);
    function avia_add_social_toolbar()
    {
    	$content  = avia_social_share_links(array(), false, '', false);
    	$content .= '<div class="hr"></div>';
    	
    	echo $content;	    
    }

    This is the one to put social share below the image thumbnails:

    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>";
    }

    I have just changed to the first code so you can see that same page (http://demo.greetingsworld.com.ng/product/blue-blouse/) with social share at the bottom of the page and the product tabs look okay.

    #506813

    In reply to: wp rss aggregator

    Hi!

    Looking at the plugin’s extension, I found this: http://www.wprssaggregator.com/extension/excerpts-thumbnails/

    Maybe, you need to install that plugin to show excerpts and thumbnails? Please contact the plugin author for more info.

    Cheers!
    Ismael

    #506781

    Hi!

    Yes, please give us the login details and a screenshot of what you’re trying to adjust. Use imgur or dropbox. The solution on the previous link will decrease the thumbnail size but it will not affect the actual height of the masonry items. Try to use this in the Quick CSS field instead:

    .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
        padding-bottom: 60%;
    }

    Best regards,
    Ismael

    #506649

    In reply to: wp rss aggregator

    Hi Basilis

    Thanks so much for looking into this. I’ve added the code

    
    function wpsites_auto_set_featured_image() {
    	global $post;
    		$featured_image_exists = has_post_thumbnail($post->ID);
    			if (!$featured_image_exists)  {
    				$attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
    					if ($attached_image) {
    						foreach ($attached_image as $attachment_id => $attachment) {
    							set_post_thumbnail($post->ID, $attachment_id);
    						}
    					}
    			}
    }
    add_action('the_post', 'wpsites_auto_set_featured_image');
    

    However thumbnail image is still not loading when using the magazine shortcode :(

    #506640

    In reply to: wp rss aggregator

    Hey!

    Yes you can do it.
    You can assign the first image of the post, to be the featured image.

    Add the following to your functions.php file

    function wpsites_auto_set_featured_image() {

          global $post;
          $featured_image_exists = has_post_thumbnail($post->ID);
              if (!$featured_image_exists)  {
              $attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
                          if ($attached_image) {
                                foreach ($attached_image as $attachment_id => $attachment) {
                                set_post_thumbnail($post->ID, $attachment_id);
                                }
                           }
                        }
      }
    add_action('the_post', 'wpsites_auto_set_featured_image');

    Best regards,
    Basilis

    #506614

    In reply to: wp rss aggregator

    Hi Elliott,

    Yes, that was done on the actual post itself… And yes, posts are being aggregated via RSS feeds using the wp rss aggregator plugin.

    Is there a way to tweak the magazine shortcode so that it can pull the featured image as thumbnails via rss?

    Thanks again.

    #506591

    In reply to: wp rss aggregator

    Hi Elliott,

    Thanks for the reply. Can you elaborate more what you mean by “setting the featured images of these custom post types?” If I understood what you mean correctly then yes, i have set the featured image option already. Please refer to the screenshot below.
    featured image activated

    NOTE: Also if you look at my screenshot on post #506512. You’ll notice that the thumbnails are loading properly on each post using the wp rss aggregator shortcode. These thumbnails are the actual featured images on each of the posts.

    Thanks again for your help!

Viewing 30 results - 6,121 through 6,150 (of 10,101 total)