Forum Replies Created

Viewing 30 posts - 50,161 through 50,190 (of 66,288 total)
  • Author
    Posts
  • in reply to: Sidebar/Layout issue #401297

    Hi!

    Why don’t you just add the content inside the first two 1/3 column layouts instead of adding another 1/3 layouts below?

    Regards,
    Ismael

    in reply to: Breadcrumb Problem #401287

    Hi!

    I tried to access the site but the login credentials are incorrect. Please check. Add this to the functions.php file to disable the breadcrumb trail which shows the previous page before you get to the portfolio page. It will enable or show the actual portfolio categories:

    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    function avia_remove_portfolio_breadcrumb() {
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }

    Regards,
    Ismael

    in reply to: General Styling Size of Areas #401280

    Hi!

    I checked the site on an iPod and it looks fine. Please remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Custom Icon Header ( Houzz) #401278

    Hey!

    I can’t see the code on functions.php. Please remove the modifications from the previous thread then add the code above. It will break the theme when you add these mods simultaneously.

    Best regards,
    Ismael

    in reply to: Advanced Search Problem #401277

    Hi!

    We would like to check the page but it requires us to login. Please post the login details here so that we can check it. For for more info, please contact the plugin author.

    Regards,
    Ismael

    in reply to: Enfold Update / Woocommerce #401270

    Hey!

    Maybe, we will understand the issue better if you give us links to the woocommerce pages that are not working.

    Cheers!
    Ismael

    in reply to: Enfold/ Permanent underlining of menu items #401266

    Hi!

    That is the default behavior of the anchor links. Did you follow the instructions provided here (http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/)? Please post the login details here. We would like to check it.

    Best regards,
    Ismael

    Hey!

    I see. Glad you fixed it. ;)

    Regards,
    Ismael

    Hey!

    I’m sorry but you’ll have to report this problem to the plugin author. Anyway, if you can provide us with a temporary login details, we would like to check it. Maybe, we can find a way to delay the appearance of the 3d object while the page is loading.

    Cheers!
    Ismael

    in reply to: breadcrumbs #401238

    Hi!

    Please undo the modifications, just add this to the Quick CSS field:

    span.trail-before {
    display: none !important;
    }

    Cheers!
    Ismael

    in reply to: portfolio order reversed? #401232

    Hey!

    Glad you figured that out If you want to reverse the post navigation order, add this to the functions.php file:

    add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2);
    function avia_apply_custom_sort_order_to_post_nav($entries, $settings)
    {
        $temp_prev = $entries['next'];
        $temp_next = $entries['prev'];
        $entries['prev'] = $entries['next'] = "";
        if(!empty($temp_prev)) $entries['next'] = $temp_prev;
        if(!empty($temp_next)) $entries['prev'] = $temp_next;
        return $entries;
    }
    

    Best regards,
    Ismael

    in reply to: Logo and menu #400585

    Hey blonddragon!

    Thank you for using Enfold.

    Set the Menu and Logo position to Logo left, menu right then add this to the Quick CSS field:

    .main_menu, div .logo {
    position: relative;
    float: left;
    }

    Best regards,
    Ismael

    in reply to: Caching plugins breaking Enfold theme. #400578

    Hi!

    The demo is still using the BWP plugin so I don’t think you will have any issue with WP 4.1.1. If something is broken after you activate the plugin, add this to the functions.php:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom', 'avia-layout');
        return $excluded;
    }

    Regards,
    Ismael

    Hi!

    Use this:

    .av-inner-masonry-content-pos {
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    position: absolute;
    }

    Best regards,
    Ismael

    in reply to: Slider only on desktop version #400540

    Hey Josan1965!

    Thank you for using Enfold.

    Yes, it is possible. Create a layer slider then enable the Hide on mobile option inside the Slider Settings > Other Settings panel.

    Best regards,
    Ismael

    in reply to: portfolio order reversed? #400533

    Hey!

    We removed the order option then replace it with this:

    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
    function custom_post_grid_query( $query, $params ) {
    	$query['orderby'] = 'title';
    	$query['order'] = 'DESC';
    	return $query;
    }

    The portfolio is now sort by title in descending order.

    Regards,
    Ismael

    in reply to: Using database to modify sidebar on multiple pages #400517

    Hi!

    If you’re reading this, please don’t follow my last instruction. It is incorrect. Use this instead: http://pastebin.com/Y3tzv8Cm

    This will change the custom widget area to “DAMN” for pages with id 12 and 17. Again, we don’t recommend this if you’re not familiar with database. Create a backup of the database first before doing anything.

    Regards,
    Ismael

    in reply to: Single Post Style image size change #400503

    Hey xfacta!

    Thank you for using Enfold.

    Install the Simple Image Sizes plugin then go to Settings > Media panel. Adjust the width and height of the entry_with_sidebar thumbnail. Set the crop parameter to false. Update then save changes. You need to upload the images again or regenerate the thumbnails.

    Regards,
    Ismael

    in reply to: Reduce margins between Layout Elements #400501

    Hi freeethinka!

    Thank you for using Enfold.

    Place all 1/5 columns inside a color section. Apply a unique id attribute using the For Developers: Section ID field. Use “custom-section” for example. Add this to the Quick CSS field to change the width and margin of the 1/5 column layouts inside that specific section:

    #custom-section div .av_one_fifth {
    margin-left: 1%;
    width: 19.2%;
    }

    Regards,
    Ismael

    in reply to: Add a button to form content #400497

    Hi lowman42!

    Thank you for using Enfold.

    You can generate the button shortcode using the shortcode wand then place it inside the tab content editor. Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.

    If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!

    Regards,
    Ismael

    in reply to: Icon Box Shortcode not Appearing #400491

    Hey tcanepa13!

    Thank you for using Enfold.

    I checked the site and I can see the iconbox element inside the portfolio preview. Did you figure this out?

    Regards,
    Ismael

    in reply to: Image Center Problem #400490

    Hey Jasmer!

    Thank you for using Enfold.

    Give the section an id, use “custom-section” for example. Add this to the Quick CSS field to adjust the background position on mobile device:

    @media only screen and (max-width: 767px) {
    #custom-section .av-parallax.avia-full-stretch.active-parallax {
    background-position: center center !important;
    }}

    Regards,
    Ismael

    in reply to: Post Slider schema.org incorrect for datepublished #400484

    Hey!

    Thank you for the info.

    We already reported the issue to Kriesi. For now, please edit postslider.php. Look for this code:

    $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    

    Replace it with:

    $output .= "<time class='slide-meta-time updated' itemprop='datePublished' datetime='".get_the_time(get_option('date_format'), $the_id)."'>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    

    Cheers!
    Ismael

    in reply to: Search Results page not working #400473

    Hi savageman1234!

    Thank you for using Enfold.

    Can you please provide a link to the website? Maybe, adding a search optimization plugin will help. Try this:

    https://wordpress.org/plugins/relevanssi/
    http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    If possible, please contact the plugin author for more info.

    Best regards,
    Ismael

    in reply to: UBER MENU NOT ALIGNED TO MAIN MENU ITEM #400469

    Hey!

    1.) If I am not mistaken, you can select a skin or theme for the ubermenu plugin. Please contact the plugin author or look for this in the plugin documentation.

    2.) Add this to the Quick CSS field:

    #header #header_main_alternate .container {
    padding: 0;
    }

    Cheers!
    Ismael

    in reply to: different background on all blog posts, possible? #400467

    Hey Doron!

    Thank you for using Enfold.

    Remove the current background then add a color section inside the portfolio page. Place all portfolio content inside this section. Apply a background image.

    Regards,
    Ismael

    in reply to: Best find and replace tool for enfold #400465

    Hi laptophobo!

    Thank you for visiting the support forum!

    We usually recommend the WP MigrateDB or WP MigrateDB PRO plugin.

    Please refer to these links for more info on how to properly migrate your Enfold website from production to development and vice versa:

    http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
    https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Cheers!
    Ismael

    in reply to: Avia Youtube Video – Autoplay #400462

    Hi!

    I checked the site but it’s all black and I can’t find the padding. Can you please provide a screenshot of the issue?

    Cheers!
    Ismael

    in reply to: Currencies in Events Calendar Element shown incorrect #400461

    Hey Holger!

    Thank you for using Enfold.

    You can change the Currency Symbol for each event. If you don’t mind, we would to like to see the actual event page with the currency symbol issue.

    Cheers!
    Ismael

    in reply to: hide the left tab on Portfolio Entry #400460

    Hey laptophobo!

    Thank you for using Enfold

    Are you referring to the post navigation located at both end of the screen? Add this to the Quick CSS field:

    a.avia-post-nav {
    display: none !important;
    }

    Best regards,
    Ismael

Viewing 30 posts - 50,161 through 50,190 (of 66,288 total)