Forum Replies Created

Viewing 30 posts - 58,531 through 58,560 (of 67,591 total)
  • Author
    Posts
  • in reply to: Portfolio Masonry – max items row #268428

    Hey!

    Thank you for the info.

    You can add something like this on Quick CSS or custom.css:

    @media only screen and (min-width: 1800px) {
    .responsive.html_stretched .av-masonry-entry {
    width: 24.9555555%;
    }
    }

    Regards,
    Ismael

    in reply to: Problem with Portfolio Grid #268427

    Hi!

    Thank you for the update.

    Make sure that you replace all life strings on register-life.php file to “staff”. Did you change the file name from register-life to register-staff? If yes, then you’ll need to change the code on functions.php to something like this:

    require_once( 'includes/admin/register-staff.php' );				// register custom post types for staff entries
    

    These inquiry has been asked many times and it works as expected.

    Regards,
    Ismael

    Hey baiker!

    Thank you for visiting the support forum!

    That is strange indeed. Do you mind if we take a look at the actual page with the issue? If possible post the login details here and set it as a private reply so that we can inspect it.

    Cheers!
    Ismael

    in reply to: Partner/Logo Elements #268422

    Hi blankonblank!

    Thank you for using the theme!

    The demo uses logo images with 710x350px dimension so you can stick to that image size or upload larger or smaller images.

    Regards,
    Ismael

    in reply to: http error uploading images to gallery #268420

    Hi!

    Thank you for the update.

    Please add this on the .htaccess file, below or above the code:

    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>

    If that doesn’t work, please ask your host, if possible, to upgrade the PHP version to 5 or higher. And if all else fails, deactivate all plugins then try to upload an image again.

    Best regards,
    Ismael

    in reply to: Accordion Slider #268417

    Hi Sharon!

    Thank you for visiting the support forum!

    Do you mind if we take a look at the actual page with the accordion slider? Make sure that you’re running Enfold 2.7.1 and WordPress 3.9 or higher.

    Best regards,
    Ismael

    in reply to: Portfolio View Demo or View Details Option? #268416

    Hi!

    Thank you for the update.

    Actually, there are lots of tutorials for animated object overlay on images. You can try this one:

    http://buildinternet.com/project/mosaic/

    The cost will depend on the contractor but I think someone will happily do it for less than $30 if you look on oDesk or Freelancer.

    Best regards,
    Ismael

    in reply to: Grid Functionality with Custom Type #268414

    Hi!

    Thank you for using the theme!

    If you want to create a new post type, duplicate the includes > admin > register-portfolio.php file. Rename it to something else, for example register-life.php. Replace it with this code: http://pastebin.com/ZBpzgbSe

    Add this on functions.php:

    require_once( 'includes/admin/register-life.php' );				// register custom post types for life entries
    

    This will register the custom post type life. You can now select the Life Entries when you’re using the Blog Posts or Fullwidth Masonry elements. Replace “life” with different custom post type name.

    Cheers!
    Ismael

    in reply to: Sidebar items not showing on one of my pages #268413

    Hey!

    Thank you for the info.

    We tested the page and found out that the fullwidth easy slider at the very bottom of the page is causing the issue. We removed it for now and if possible recreate the slider again from scratch. Let us know if the issue with the sidebar persists. Regarding the image slider size, suggested image size that you need to upload is 1500x500px for pages with a sidebar or you can try to edit functions.php. Find this code on line 101:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Adjust the width and height attribute then set the crop parameter to false.

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270, 'crop' => false);		                 // big images for blog and page entries
    

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Chaning order of the home page for Mobile devices #268412

    Hey!

    Thank you for the update.

    Please try to use this:

    @media only screen and (max-width: 987px) {
    .home .avia-builder-el-33 { display: none !important; }
    .home .avia-builder-el-28 { display: none !important; }
    }

    Regards,
    Ismael

    Hey!

    Thank you for the info.

    I logged in to the dashboard and check the page via View Page or Preview Changes but it requires a password. Please post the password here as a private reply.

    Cheers!
    Ismael

    in reply to: No Next or Prev in portfolio #268410

    Hi fherrard!

    Thank you for using the theme!

    You can add this on functions.php to enable the post navigation on pages with full width sliders:

    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['is_fullwidth'] = false;
    return $settings;
    }

    Cheers!
    Ismael

    in reply to: Problems with colors and Quick CSS #267788

    Hi!

    Thank you for the update.

    I checked the website on Chrome Windows 8 but I don’t see the cyan boxed as described on the screenshot anymore. Is this fixed on your end? Please try to remove browser cache and reload the page a few times.

    Cheers!
    Ismael

    Hey!

    Thank you for the info.

    Do you mind if we take a look at the actual website? Please try to contact your host if they have a server cache and if you have a cache plugin, empty it. The problem with the text editor should be fix on the latest patch of the theme which is 2.7.1.

    Regards,
    Ismael

    in reply to: Social Icons in Header #267786

    Hey!

    Thank you for visiting the support forum!

    Please use this on Quick CSS or custom.css:

    #top #wrap_all .av-social-link-facebook  a{color:#fff; background-color:#37589b; }
    #top #wrap_all .av-social-link-twitter   a{color:#fff; background-color:#46d4fe; }
    
    #top #wrap_all .av-social-link-facebook:hover  a{color:#37589b; background-color: transparent; }
    #top #wrap_all .av-social-link-twitter:hover    a{color:#46d4fe; background-color: transparent; }

    Best regards,
    Ismael

    in reply to: Change the position of the breadcrumps #267781

    Hi Sven!

    Thank you for using the theme!

    You can add this on functions.php to render the breadcrumbs on the header meta container:

    add_action('avia_meta_header', 'avia_meta_header_breadcrumbs');
    
    function avia_meta_header_breadcrumbs() {
    	$breadcrumb = avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    	echo $breadcrumb;
    }

    After that, add this on Quick CSS or custom.css to reposition the element and remove the default breadcrumb:

    .title_container div.breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }
    
    #header_meta div.breadcrumb.breadcrumbs.avia-breadcrumbs {
    position: absolute;
    left: 0;
    bottom: -7px;
    }

    Best regards,
    Ismael

    in reply to: Styling the sidebar #267778

    Hi!

    Thank you for the info.

    You can adjust the left padding with this on QuickCSS or custom.css:

    #top .widget_nav_menu li {
    padding: 5px 5px 5px 15px;
    }

    Cheers!
    Ismael

    Hi!

    Thank you both for using the theme!

    If you don’t mind, please provide us with a link to your respective websites then we’ll check it. Other browser might need specialize css snippets to target the fonts like the ones you posted above. An actual link to the page and a screenshot will greatly help.

    Best regards,
    Ismael

    in reply to: Non-responsive #267776

    Hi sparkeeey!

    Thank you for using the theme!

    The layout that you’re after won’t work without further customization within the theme. You might need to hire someone to do the header for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page. As a workaround, you can do the following. First, remove the css snippet that you added for the header background. Apply the background image on Enfold > General Styling > Header tab > Background Image. After that, go to Enfold > Header Layout > Header Size. Select custom pixel value and set it to 173px. Add this on Quick CSS or custom.css:

    #header_meta {
    display: none;
    }
    
    strong.logo.bg-logo {
    display: none;
    }
    
    div#header_main_alternate {
    top: 36px;
    border-top: 1px solid #ffffff;
    }
    
    #header_main {
    border-bottom: 0;
    }

    This layout won’t work for fixed headers. As we said, you need to hire someone because this particular request or modification is beyond the scope of support.

    Regards,
    Ismael

    in reply to: Problem with Portfolio Grid #267774

    Hey!

    Thank you for using the theme!

    If you want to create a new post type, please follow this one. This is much more extensive and you’ll be able to select the post type when using the Blog Posts or Masonry elements. Duplicate the includes > admin > register-portfolio.php file. Rename it to something else, for example register-life.php. Replace it with this code: http://pastebin.com/ZBpzgbSe

    Add this on functions.php:

    require_once( 'includes/admin/register-life.php' );				// register custom post types for life entries
    

    This will register the custom post type life. You can now select the Life Entries when you’re using the Blog Posts or Fullwidth Masonry elements. Replace “life” with the custom post name that you want.

    Regards,
    Ismael

    Hi tom77113!

    Thank you for using the theme!

    If you want the layout like the Coalition, you can try to use the Single author, small preview pic blog style then enlarge the featured image with this on Quick CSS or custom.css:

    .small-preview {
    width: 162px;
    height: 162px;
    margin: 50px 0 0 0;
    line-height: 162px;
    left: -40px;
    }

    This can get you started but it needs polishing. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Regards,
    Ismael

    Hi tom77113!

    Thank you for visiting the support forum!

    1.) Are you using the Grid Layout for the blog? Unfortunately, you can’t use shortcodes for the excerpt. You might need to hire a freelance developer to modify the theme for you. Please visit Envato Studio or Werkpress for further customization. There is a workaround if you’re using the grid layout. Please edit config-templatebuilder > avia-shortcodes > postslider.php. Find this code on line 311:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
    

    Replace it with this:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : do_shortcode(avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 150) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " ") , "…", false, ''));
    

    2.) I’m not sure if understand this one correctly so please provide us with a link to the actual page. I’ll ask Dude to check this thread.

    Regards,
    Ismael

    in reply to: Blog Grid Pulling in Portfolio Items #267768

    Hi!

    Thank you for using the theme!

    I checked the portfolio page or in your case the products page and it is only pulling the portfolio items with the category “Products”. You only have 14 portfolio items with this category if I am not mistaken so I think all is working well with the portfolio grid.

    Best regards,
    Ismael

    in reply to: Lightbox text not displaying in Chrome #267766

    Hey!

    Thank you for the update.

    It does load fine on my end, Chrome Windows 8 but it takes a while to fully open the lightbox. This might be because of the 30 plugins or so that you’re currently using. You might want to optimize the website or upgrade your hosting plan. Usually minimizing the image sizes and number of plugins that you install will greatly improve the performance. These are the things that you can do to optimize the website speed and page load courtesy of the wordpress community:

    1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
    2. Once all images are on the website optimize with ewww optimizer plugin twice 1hr 10mins apart.
    3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
    4. Use BWP minify plugin to minify scripts and stylesheets.
    5. Install WP-Super cache, select all recommended settings.
    6. Logout your website, visit every page at least once to create super cache files.
    7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
    8. Have a cup of coffee.
    9. Visit your site after 20 minutes or so.
    10. Don’t forget to smile.

    We hope this helps.

    Cheers!
    Ismael

    Hi!

    Thank you for using the theme!

    I’m not sure why the columns act that way but they should be fullwidth on 989px screen width or lower. Please add this at the very bottom of Quick CSS or custom.css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .av_one_half.first.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_half, .responsive .avia-content-slider-inner .av_one_fourth {
    width: 48%;
    }
    }

    Best regards,
    Ismael

    in reply to: maximum number of page in main menu #267761

    Hey tredition!

    Thank you for using the theme.

    This is happening because of the limit on your server configuration. Please contact your host then ask them to increase the max_input_vars php option to at least 5000 or more. If you have access to .htaccess file, just add this code:

    php_value max_input_vars 5000
    

    Cheers!
    Ismael

    in reply to: Turn sidebar mega menu pages off? #267758

    Hi Micheal0424!

    Thank you for using the theme!

    Those are nested subpages and you can turn that off on Enfold > Sidebar Layout > Page Sidebar navigation. Just disable the option and you’re good to go.

    Best regards,
    Ismael

    in reply to: Layer Slider for single page quit working #267756

    Hi!

    Glad it is working again now. If you have any questions, let us know. :)

    Cheers!
    Ismael

    in reply to: Removing the white space #267751

    Hey DJQuad!

    Thank you for visiting the support forum!

    Lots of users are asking for the same thing but a lot of modern designs now utilize huge spaces and gaps and imo, they look great. Anyway, if you want to remove some spaces on the content and widget areas, you can try this on Quick CSS or custom.css:

    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;
    }
    
    .widget {
    padding: 10px 0 10px 0;
    }

    If you can provide us with a link to the actual elements that you want to modify, that will be great. A screenshot will help.

    Best regards,
    Ismael

    in reply to: Problem with mobile logo. #267750

    Hey qeeqac!

    Thank you for using the theme!

    Do you mind if we take a look at the actual website? We would like to see it. I think we can fix it via css media query.

    Best regards,
    Ismael

Viewing 30 posts - 58,531 through 58,560 (of 67,591 total)