Forum Replies Created

Viewing 30 posts - 58,141 through 58,170 (of 67,191 total)
  • Author
    Posts
  • 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

    in reply to: Read more in blog #267117

    Hi!

    Thank you for the update.

    Please post the login details here and set it as a private reply. We would like to check the blog page. If possible, please deactivate all plugins then delete the .htaccess file. Regarding the product grid, unfortunately, the element does not utilize any ajax script so you might need to use the product slider for that matter.

    Cheers!
    Ismael

    in reply to: Archive pages #267111

    Hey!

    Thank you for the info.

    Edit includes > loop-index.php, find this code on line 184:

    echo $content;
    

    Replace it with:

    if(!is_archive()){
                echo $content;
    			} else {
    			$excerpt = the_excerpt(); 
    			echo $excerpt.'<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a>';
    			}
    

    Regards,
    Ismael

    in reply to: Masonary Product Slideshow Including invalid items #267108

    Hi!

    Thank you for using the theme!

    The scroll to top markup on your website is different. Please try to extract the footer.php file from a fresh download of the theme then override the old file on your installation.

    Regards,
    Ismael

    in reply to: Enfold Blog Grip was not work;-( #267101

    Hey Frank!

    Thank you for using the theme!

    Please change the blog style on Enfold > Blog Layout > Blog Style. See if that works. If you want to use Blog Posts element, set the blog style to Use the advance layout editor… option. Regarding the google map, on what browser and OS are you testing this with? I can’t see the line when I checked it on Chrome Windows 8.

    Cheers!
    Ismael

    Hey Coronacom!

    Thank you for visiting the support forum!

    What are the elements that you’re trying to modify? If you can provide us with a link to the actual page, we’ll be happy to provide you with the css snippets to decrease the padding or margin between elements.
    You can use the body page id to modify elements on a specific page. In order to find the current page id, you can use firebug or google chrome’s inspect element. Look for the body class id. It looks something like this:

    On the example above, the page id is page-id-734. Use that along with the object’s selector that you’re trying to modify. Something like this:

    .page-id-734 .avia-section {
    min-height: 50px;
    }

    I hope this helps.

    Cheers!
    Ismael

    in reply to: Layerslider lässt sich nicht mehr bearbeiten #267098

    Hey!

    We’re very sorry for the delay.

    I can see the issue now. Is it ok if we deactivate the plugins while debugging the issue? We might need to disable the Advanced TinyMCE and other plugins in order to find the problem. We don’t want to mess with your settings so we’re asking permission to do this.

    Cheers!
    Ismael

    in reply to: Change or Remove sidebar from Blog Page #267096

    Hi!

    Thank you for the update.

    Looks like the settings on Enfold > Sidebar Layout > Sidebar for Blog is overriding the actual page’s sidebar settings. I have to set it to “No Sidebar” to remove the widget areas. Please check here: http://terenure5mile.com/news/

    Cheers!
    Ismael

    Hi colleendr!

    Thank you for using the theme!

    Honestly, we haven’t tested any real state plugins that will work well with the theme but you can search through codecanyon or the wordpress plugins library. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    Regards,
    Ismael

    Hi!

    Thank you for the update.

    It does seem to work well with IE. Do you have any third party extension on your IE 11 browser? Please deactivate those then test the avia builder again.

    Cheers!
    Ismael

    Hi!

    Thank you for using the theme!

    Have you tried disabling the “Use Google CDN version of jQuery” option on the Layer Slider’s advance options? This setting loads an old version of jquery that might break some of the plugins. @Andrewj is correct regarding the plugin, there’s just no way that we can provide support for all third party plugins so you may need to redirect all questions on the plugin author. Honestly, we haven’t tested any real state listing plugins but you can search through codecanyon or the wordpress repository for available plugins.

    Best regards,
    Ismael

Viewing 30 posts - 58,141 through 58,170 (of 67,191 total)