Forum Replies Created

Viewing 30 posts - 53,341 through 53,370 (of 67,505 total)
  • Author
    Posts
  • Hey!

    Replace the code with this:

    function avia_default_title_filter($current_post)
    	{
    		if(!empty($current_post['title']))
    		{
    			$heading = is_singular() ? "h2" : "h2";
    	
    			$output  = "";	
    			$current_post['title'] = $output;
    		}
    
    		return $current_post;
    	}

    Cheers!
    Ismael

    in reply to: Show only one (first?) category in blog single post #360622

    Hey website2create!

    Thank you for using Enfold.

    You can replace the code with this:

    $taxonomies  = get_object_taxonomies(get_post_type($the_id));
                        $cats = '';
                        $excluded_taxonomies =  apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
    
                        if(!empty($taxonomies))
                        {
                            foreach($taxonomies as $taxonomy)
                            {
                                if(!in_array($taxonomy, $excluded_taxonomies))
                                {
                                    $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                                }
                            }
                        }
    					
    					$cats = explode(',', $cats);
    
                        if(!empty($cats))
                        {
                            echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                            echo $cats[0];
                            echo '</span><span class="text-sep text-sep-cat">/</span>';
                        }

    Or this:

    
    $categories = get_the_category($the_id);
    
                        if(!empty($categories))
                        {
                            echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                            echo $categories[0]->cat_name;				
                            echo '</span><span class="text-sep text-sep-cat">/</span>';
                        }

    Or this:

    $categories = get_the_category($the_id);
    					foreach($categories as $category) {
    						$category = '<a href="'.get_category_link( $category->term_id ).'">'.$category->cat_name.'</a>';
    					}
    
                        if(!empty($categories))
                        {
                            echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                            echo $category;				
                            echo '</span><span class="text-sep text-sep-cat">/</span>';
                        }
    

    Best regards,
    Ismael

    in reply to: Put fullwidth sub menu on top of FullScreen Slider #360619

    Hi!

    Thank you for the info.

    You can still use the main menu then add this plugin to control the menu visibility on different pages:

    https://wordpress.org/plugins/menu-items-visibility-control/
    https://wordpress.org/plugins/zen-menu-logic/

    Cheers!
    Ismael

    in reply to: Woocommerce "direct checkout pro" plugin #360618

    Hi Philip!

    Thank you for using Enfold.

    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

    in reply to: Animations and stuff stopped working #360616

    Hey!

    I’m sorry but we won’t be able to help you unless you update the theme to the latest version. Enfold 3.0.1 have some issues with WP 4.0.1 which is fixed on Enfold 3.0.4. Hundreds or thousands of users reported this issue and updating to version 3.0.4 fixed it for them. If you don’t want to affect the current state of the website, please create a stage site with the latest version of the theme. Let us know if the issue is still happening there.

    Regards,
    Ismael

    in reply to: Random Image with link to gallery #360615

    Hi Siracher!

    Thank you for using Enfold.

    You can add the image manually using html codes then link it to the page with the gallery.

    Best regards,
    Ismael

    in reply to: Content Slider image size and spacing between images #360614

    Hey sitesme!

    Thank you for using Enfold.

    I checked the site but I don’t see any issue on the page. Can you please provide a screenshot?

    Best regards,
    Ismael

    in reply to: Responsive switch #360613

    Hi Dutchman!

    Thank you for using Enfold.

    You can alter the column width on mobile device with this on Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .flex_column {
    width: 50%;
    }
    }

    Best regards,
    Ismael

    in reply to: Transparent header custom menu color not working #360612

    Hey kpolka!

    Thank you for using Enfold.

    Did you set the main menu color on Enfold > Advanced Styling panel? Try to set the transparent header font color with this:

    #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a {
    color: blue;
    }

    Cheers!
    Ismael

    in reply to: Strange border at the top of page after update #360611

    Hi!

    Please remove all css codes that you added regarding the issue, replace it with:

    .entry-content-wrapper.clearfix {
    overflow: auto;
    }

    Cheers!
    Ismael

    in reply to: Posts and pages in masonry grid #360610

    Hi!

    You’re using a lot of plugins, 35 in total, some of them might be messing up with the masonry query. Please try to deactivate all plugins then test the page again.

    Cheers!
    Ismael

    in reply to: avia layout builder does not load #360608

    Hi!

    You can install a cache and minify plugin to improve page load. Usually minimizing the image file 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.

    Cheers!
    Ismael

    in reply to: Masonry Portfolio to Single Portfolio Full Slider #360605

    Hey!

    The masonry images or overview thumbnails are the featured image that you set on post or portfolio items. You can separate portfolio items or posts using categories. Edit the masonry element then select the category that you want to show. You can see an example here: http://wordpress.louisamore.com/?page_id=3452

    Best regards,
    Ismael

    in reply to: Most pictures won't upload #360604

    Hi!

    Thank you for the info.

    I created a test page then uploaded an image here: http://www.vanhoen.nl/test-image/

    The theme creates different thumbnail sizes when you upload an image. Each thumbnails are used specifically on different elements of the theme (testimonial, posts, widgets etc). On the test page, I added 3 Images element then selected 3 different thumbnail versions of the image. The second image is the full or original version of the uploaded image.

    Regards,
    Ismael

    in reply to: Menu and shopping cart overlap logo in mobile #360599

    Hey!

    Some of css modifications are breaking the mobile layout of the site. Please look for these codes then remove them:

    #header_main .phone-info {
    width: 274px;
    float: right;
    margin-right: 0;
    padding: 0px;
    }
    
    #header_meta {
    height: 20px;
    width: 308px;
    float: right;
    margin-right: 23px;
    margin-top: 3px;
    padding-top: 1px;
    }

    Replace it with:

    @media only screen and (min-width: 768px) {
    #header_main .phone-info {
    width: 274px;
    float: right;
    margin-right: 0;
    padding: 0px;
    }
    
    #header_meta {
    height: 20px;
    width: 308px;
    float: right;
    margin-right: 23px;
    margin-top: 3px;
    padding-top: 1px;
    }
    }

    Best regards,
    Ismael

    in reply to: Icons gone #360596

    Hi jenki!

    Thank you for using Enfold.

    Please refer to this link for a possible fix regarding the icons: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems

    Basically, you need to add this code on the .htaccess file:

    <FilesMatch "\.(ttf|otf|woff)$">
    <IfModule mod_headers.c>
            Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>

    Best regards,
    Ismael

    in reply to: Updated and Site Down!!!!! PLEASE HELP!! #360594

    Hey!

    I would like to check the site but I think you forgot the website url. Please post it here. I’ll ask Yigit to take a look.

    Cheers!
    Ismael

    in reply to: Adding Layout Elements before (right) sidebar begins. #360592

    Hi laptophobo!

    Thank you for using Enfold.

    The color sections and fullwidth sliders will always push the sidebar underneath. You can set the page layout to No Sidebar then use the Widget Area element as sidebar instead. Separate the content using column layouts.

    Best regards,
    Ismael

    in reply to: Picture Size in the Blog #360590

    Hey!

    Thank you for using Enfold.

    You can set the post style on Enfold > Blog Layout > Single Post Style to Single post with small preview image. Or you can adjust the featured image with this:

    .single .fullsize .template-blog .big-preview img {
    width: 300px !important;
    margin: 0 auto;
    }

    Best regards,
    Ismael

    in reply to: Layer Slider: text background feature not working #360587

    Hi debkeller!

    Thank you for using Enfold.

    Can you please provide a screenshot and a link to the actual page with the issue?

    Regards,
    Ismael

    Hey!

    Thank you for the update.

    Add this at the very bottom of style.css or Quick CSS field:

    body .av-special-heading.modern-centered {
    text-align: center !important;
    }

    Cheers!
    Ismael

    in reply to: wish to add separators between words in the main menu #360582

    Hi orit81!

    Thank you for using Enfold.

    Please provide a link to the website. We would like to check it. Make sure that you’re using Enfold 3.0.4 on WordPress 4.0.1.

    Cheers!
    Ismael

    in reply to: Secondary Menu Doesn't Show on smartphone #360581

    Hi elames!

    Thank you for using Enfold.

    The top menu header is disabled by default. If you want to enable it, you can use this:

    @media only screen and (max-width: 767px) {
    ul#avia2-menu {
    display: block;
    }
    }

    Cheers!
    Ismael

    in reply to: Benutzerdefiniertes Widget #360580

    Hi Zitronenen!

    Thank you for using Enfold.

    If I understand it clearly, you want to remove the nested sidebar navigation. You can disable it on Enfold > Sidebar Settings panel. Disable the Page Sidebar navigation.

    Cheers!
    Ismael

    in reply to: theme not working #360571

    Hey!

    @addwebtoday: If possible, please stick to your own thread. It won’t help leaving negative comments on all threads, just because you’re frustrated. We’re really trying our best to help each and every users who are experiencing any issues on the theme. Your claim that the update or theme is lacking vital code for cross browser compatibility is intriguing. Can you please provide any information regarding that? I tested the page with the sliders and created another test page and they’re working fine. Please check your own thread here: https://kriesi.at/support/topic/avia-slider-disappeared-randomly/

    Regards,
    Ismael

    in reply to: Styling Sidebars, Pages #360570

    Hey!

    I’m sorry but we already provided codes to alter the widget title.

    1.) Adjust the widget title styling with this:

    .h3.widgettitle { color: red;}
    

    2.) Which title and which content? I’m sorry but please be more specific. A screenshot will really help.

    Cheers!
    Ismael

    in reply to: Avia Slider disappeared randomly #360568

    Hey!

    Thank you for using Enfold.

    I tested the slideshow elements on safari, firefox and chrome and it works fine. http://schneidercentre.com/test-page/ & http://schneidercentre.com/breast-surgery/breast-augmentation/before-after-photos/

    Can you please provide a link to the actual page with the issue? Please remove browser cache then test it again.

    Cheers!
    Ismael

    in reply to: glassy header all content move up in header section #360567

    Hey Siracher!

    Thank you for using Enfold.

    When activating the transparent header, you should add a slider or color section with a background image at the very top of the page.

    Cheers!
    Ismael

    in reply to: Enfold>Update #360565

    Hi!

    Yes, it does. If it doesn’t work the first time, try logging out then login again. Or test it on another browser.

    Regards,
    Ismael

    in reply to: Pictures/Contact Form not showing after WordPress Update #360562

    Hey!

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

    Regards,
    Ismael

Viewing 30 posts - 53,341 through 53,370 (of 67,505 total)