Forum Replies Created

Viewing 30 posts - 58,711 through 58,740 (of 67,463 total)
  • Author
    Posts
  • in reply to: Scrolling issue on IE #261780

    Hi BellaAzur!

    Thank you for using the theme!

    I checked the site on IE 9 and the scroll bar works fine. Do you mind providing a screenshot or short screenr of the issue?

    Cheers!
    Ismael

    in reply to: Shortcode Team Member Description Issue #261772

    Hey!

    Thank you for the update.

    Please post the login details here and set it as a private reply. We would like to check it.

    Cheers!
    Ismael

    in reply to: text block visual not showing text #261767

    Hi!

    @tkcenter: No worries. Please open another thread about the search form issue. :)


    @ContentedKerry
    : Did you update the theme to the latest version, Enfold 2.7.1? The text block should be fix on the latest patch of the theme.

    Best regards,
    Ismael

    Hey bigtime32!

    Thank you for using the theme!

    First of all, please remove the custom css that you added to change the height of the header. You can change that on Enfold > Header Layout > Header Size. Select custom pixel value. Change the opacity of the header background with this:

    .header_bg {
    opacity: 1;
    filter: alpha(opacity=100);
    }

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    I checked the website but I don’t see any menus with the anchor links. I think it is quite impossible that a user will paste those URL that you provided to check the testimonials. Remove the white spaces that you added. Please create an anchor navigation then we’ll check it again. Refer to this link: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    Regards,
    Ismael

    in reply to: Shortcode Team Member Description Issue #261609

    Hi!

    Thank you for the links.

    Please edit Scott Bockover’s profile then make sure that there are no space between the team member shortcode and the icons. The team member container itself has a 30px bottom margin plus the <br> tag that will be generated if you put a space between the shortcodes.

    Cheers!
    Ismael

    in reply to: Background Colour Flash When Selecting Navigation #261605

    Hi!

    Thank you for the update.

    It is not flashing on my end now. Please remove browser cache then reload the page a few times. On google chrome click CTRL + F5 to fully refresh the page. Try this:

    html {
    background: #ffffff !important;
    background-color: #ffffff !important;
    }

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    The Road Show icon box is visible, checking on Chrome and Firefox Windows 8.

    The modification that you did is a bit extensive and you said that it can be done easily if only you can add a custom class or ID on the iconbox. Actually you can do it by adding the theme support for custom css class, just follow the instruction on the link Dude suggested. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit any avia elements like the Icon Box element then scroll below. Add a unique css selector on “Custom Css Class” field. If I am not mistaken, the issue why the iconbox is not showing intermittently is because of the stack or layering order of the color sections so please try to add this on Quick CSS or custom.css:

    #after_section_6.container_wrap {
    z-index: 9999;
    }

    Cheers!
    Ismael

    in reply to: Multi author blog – big image height #261595

    Hi web4proPL!

    Thank you for using the theme!

    Actually, the theme should automatically resize all images that you set as post featured image to 710x270px as long as the original image size exceeds the set dimension on the thumbnail size. Edit functions.php, find this code on line 108:

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

    Set the crop parameter to false to prevent wp from cropping the images, the downside of this modification is you might find some of the images stretched or unproportioned. Suggested image size that you should use is 1420x540px. Replace the code with this:

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

    Regenerate the thumbnails on Tools > Regen. Thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    in reply to: Hover box over picture link #261594

    Hi Micheal0424!

    Thank you for visiting the support forum!

    Please add this on Quick CSS or custom.css to change the background color of the circle:

    span.image-overlay-inside:before {
    background-color: blue !important;
    }
    

    If you want to change the color of the icon inside, use this:

    span.image-overlay-inside:before {
    background-color: blue !important;
    color: black !important;
    }
    

    Regards,
    Ismael

    in reply to: Clicking on my name to link to the mini bio page #261593

    Hey!

    Thank you for the update.

    Yes, SEO plugins in combination with other third party plugins tends to break the theme somehow. This issue rarely happens and the viable option is to find another plugin. Unfortunately, we won’t be able to provide support regarding this matter as stated on our support policy. Aside from the plugin Josue suggested, you can find a lot of SEO plugins that might work on your end. You can start here.

    Regards,
    Ismael

    Hi!

    Thank you for using the theme!

    Actually, the button is working but it targets the accordion slider as the next section. If I am not mistaken, you can fix it by editing config-templatebuilder > avia-shortcodes > slideshow.php, find this code on line 463:

    $html .= "<a href='#next-section' title='' class='scroll-down-link'". av_icon_string( 'scrolldown' ). "></a>";
    

    Replace it with:

    $html .= "<a href='#contenu' title='' class='scroll-down-link'". av_icon_string( 'scrolldown' ). "></a>";
    

    The id contenu is the id that you set for the color section below the sliders. Please let us know what happens.

    Best regards,
    Ismael

    in reply to: Portfolio Reorder #261582

    Hi!

    Thank you for the update!

    I’m sorry but the plugin is the only way that you can sort the portfolio posts manually, unfortunately, it is currently incompatible with the masonry element. 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. What you can do is to enable the post type support for page-attributes.

    Edit includes > admin > register-portfolio.php, find this code on line 38:

    'supports' => array('title','thumbnail','excerpt','editor','comments')
    

    Replace it with:

    'supports' => array('title','thumbnail','excerpt','editor','comments', 'page-attributes')
    

    Add this on functions.php:

    add_filter('avia_masonry_entries_query', 'avia_random_image_query', 10, 2);
    function avia_random_image_query($query, $params)
    {
        if(empty($query['post_mime_type']))
        {
            $query['orderby'] = "menu_order";
            $query['order'] = 'ASC';
        }
    
        return $query;
    }

    Now, go to the Portfolio Items panel then Quick Edit the posts. You’ll see the Order field. You can input the order of the items manually. I’m sure it’ll work because we tested this fix on our end.

    Regards,
    Ismael

    in reply to: Background Colour Flash When Selecting Navigation #261580

    Hey Gstar72!

    Thank you for using the support forum!

    That is the html background color. Just add this on Quick CSS or custom.css:

    html {
    background-color: #ffffff;
    }

    Cheers!
    Ismael

    in reply to: view full size photo on attachment page #261576

    Hey Tech!

    Thank you for using the theme!

    What do you mean by “photo attachment page”? Do you mind if we take a look at an example? Please post the page url here. We will provide you with a better response once we have taken a look at the page.

    Cheers!
    Ismael

    in reply to: Enfold Frontpage Title with &#124 or "|" Character #261575

    Hey webfordj!

    Thank you for visiting the support forum!

    Please add this on functions.php to remove the separator:

    add_filter('avf_title_tag', 'avf_change_title_tag');
    
    function avf_change_title_tag($title) {
    	$title = get_bloginfo('name') . ' ';
        $title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false);
    
    	return $title;
    }
    

    Cheers!
    Ismael

    in reply to: Sort By Name / Display Products page #261574

    Hi!

    I’m not sure why the code suggested above didn’t work for you but it should remove the sorting options as you requested originally. Yes, the plugin is causing the issue. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy. You might need to redirect any questions regarding this issue to the plugin author.

    Best regards,
    Ismael

    in reply to: Enfold Tables #261573

    Hey paolo99!

    Thank you for using the theme!

    If you don’t want the theme to override the table styling, you can remove the theme’s table css on css > shortcodes.css, find these codes starting on line 1238. This is not advisable because the table elements that comes with the theme will break. Remove the css included on this section:

    /* ======================================================================================================================================================
    Table
    ====================================================================================================================================================== */

    If you can provide us with a link to the actual page with the table, we might be able to fix it for you.

    Regards,
    Ismael

    in reply to: No sharing icons and category clickable #261572

    Hey!

    Thank you for using the theme and sorry for the delay.

    On the child theme folder, did you copy any files from the parent theme folder? How did you update the child theme? If you don’t mind, please provide us with the link to the actual website and the current blog page. You can change the “Share on” string or text on includes > helper-social-media.php, find this code on line 223:

    $name = isset($share['label'])? $share['label']: __("Share on",'avia_framework'). " " .ucfirst($key);
    

    Best regards,
    Ismael

    in reply to: Unable to display background image on fixed layout #261571

    Hi!

    Thank you for the update.

    I’m sorry but checking the website again, you’re using a stretched layout? The background image options will only show if you set the theme to boxed layout. Do you mind if we take a look inside? Just to be clear, do you want the stretch or the boxed layout? What we did above is to refresh the enfold.css file which is somehow stuck. If that didn’t work, maybe there is a plugin conflict. Please post the login details here and set it as a private reply. If you can provide us with the background image that you want, we will upload it for you.

    Regards,
    Ismael

    in reply to: Display bugs.. #261569

    Hi collinlc!

    Thank you for using the theme!

    1.) You can fix the active state border with this on Quick CSS or custom.css:

    #top .main_color .tabcontainer .tab.active_tab {
    border-bottom-color: #e1e1e1;
    }

    Change the border color if necessary.

    2.) I’m not sure if I’m following you on this one. Do you mind providing a link to a page with the example?

    Regards,
    Ismael

    in reply to: How to remove marker in Google Maps? #261567

    Hi trohweder85!

    Thank you for using the theme!

    You can’t remove it via CSS or by changing options on the theme but you can override the marker image with a transparent PNG format image. Create a png image without anything and make it transparent, suggested size is 22x40px. Upload it as Custom Map Marker Image. If you’re using a shortcode, just add this attribute:

    marker='3016'
    

    3016 is attachment id of the image, you can find it on Media > Library panel.

    Regards,
    Ismael

    in reply to: Enfold Update Error #261565

    Hey!

    Thank you for the updates.

    I’m sorry but we won’t be able to debug the issue if we can’t reproduce it on our end. If someone posted the same issue, we’ll let you know. Since, you mentioned that the website is loading a little bit slow, you might want to optimize it. 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.

    Regards,
    Ismael

    in reply to: Editing padding for 'share this entry' on iPhone #261564

    Hey Jamie A!

    Thank you for using the theme!

    Where do you like to add a white space? If you want to add a bottom margin, you can use this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    ul.av-share-box-list {
    margin-bottom: 20px;
    }
    }

    Best regards,
    Ismael

    Hey andrewlasher!

    Thank you for using the theme!

    The images’ width and height are set to auto to keep them responsive. They will inherit the size of their containers. If you want you can add a unique css selector on the image code then apply a specific width on Quick CSS or custom.css. For example, let’s inspect this image code:

    <img class="alignright wp-image-368" src="http://ottenbros.com/wp-content/uploads/sites/6/2014/03/John-OReilly2-e1394569784582.jpg" alt="John O'Reilly" width="200" height="180" data-wp-imgselect="1">
    

    Add the css selector, we’ll use resize-image-200 for example.

    <img class="resize-image-200 alignright wp-image-368" src="http://ottenbros.com/wp-content/uploads/sites/6/2014/03/John-OReilly2-e1394569784582.jpg" alt="John O'Reilly" width="200" height="180" data-wp-imgselect="1">
    

    Add this on Quick CSS or custom.css:

    img.resize-image-200 {
    width: 200px;
    }

    Best regards,
    Ismael

    in reply to: text block visual not showing text #261561

    Hi!

    Thank you for the updates.

    I’m sorry but this topic is getting a little bit mixed. The original issue is about the text block which is already fixed on 2.7.1 version. Please avoid hijacking other threads and open your own instead. The title of the thread should correspond with the issue or request at hand. If possible, please don’t flood the thread with multiple questions or requests. You can create a single thread for each question or request. Thank you! We reported the issue with the search form to Kriesi. Please wait for his response.

    Regards,
    Ismael

    in reply to: Link on Special Heading? #261558

    Hey apradhan!

    Thank you for visiting the support forum!

    You can add any html tags on the Heading Text field. Enclose the title on a link tag. Something like this:

    <a href="http://www.google.com">Special Heading Title</a>
    

    Regards,
    Ismael

    Hi!

    Thank you for the link.

    Please use this on Quick CSS or custom.css to fix the buttons:

    .woocommerce-page .button {
    min-width: 100px;
    min-height: 54px;
    }
    
    #top div .widget_shopping_cart .button {
    width: 49%;
    float: left;
    }
    
    #top div .widget_shopping_cart .button.checkout {
    margin-top: 4px;
    }

    Best regards,
    Ismael

    Hey!

    Thank you for the screenshot.

    I’m not sure where Yigit get the custom link field because I don’t see it on my end also. Let me ask him again to check this thread.

    Regards,
    Ismael

    Hey NanaKuo!

    Thank you for using the theme!

    You need to update the theme to the latest version which is Enfold 2.7.1. This will fix the issues with the visual editor. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

Viewing 30 posts - 58,711 through 58,740 (of 67,463 total)