Forum Replies Created

Viewing 30 posts - 50,551 through 50,580 (of 67,534 total)
  • Author
    Posts
  • Hi!

    Please remove the css code then give us a link to the actual website. We would like to check it. Upgrade the site to version 3.1.2.

    Regards,
    Ismael

    in reply to: item portfolio navigation buttons #420196

    Hi!

    This should work to filter the same category:

    /*filter projets - only show same category */
    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }

    This one will work for the Portfolio Grid element. It will not work for masonry or blog posts elements:

    /*filter portfolio sorting */
    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    
    function avf_custom_post_grid_query ( $query ) {
    $query['orderby'] = 'name';
    $query['order'] = 'ASC';
    return $query;
    }

    Please give us a link to the page with the portfolio grid element.

    Regards,
    Ismael

    in reply to: Last item of main menu (again since last update) #420194

    Hey Mac_Gyver!

    Thank you for using Enfold.

    Add this to the Quick CSS field:

    .html_header_searchicon_disabled #top .av_header_border_disabled.av_bottom_nav_disabled .main_menu .menu>li:last-child>a .avia-menu-fx {
      padding-right: 0 !important
    }

    Cheers!
    Ismael

    in reply to: Code Block as Shortcode #420193

    Hey Mac_Gyver!

    Thank you for using Enfold.

    Add the style script directly in the accordion content editor.

    Regards,
    Ismael

    in reply to: Add my own font #420190

    Hi!

    Try to use absolute url. Something like:

    @font-face {
    font-family: 'trashhandregular';
    src: url('http://www.mysite.com/wp-content/themes/fonts/trashhand.eot');
    src: url('http://www.mysite.com/wp-content/themes/fonts/trashhand.eot?#iefix') format('embedded-opentype'),
    url('http://www.mysite.com/wp-content/themes/fonts/trashhand.woff') format('woff'),
    url('http://www.mysite.com/wp-content/themes/fonts/trashhand.ttf') format('truetype'),
    url('http://www.mysite.com/wp-content/themes/fonts/trashhand.svg#trashhandregular') format('svg');
    font-weight: normal;
    font-style: normal;
    }

    Adjust the url where the font files are located. Make sure that you apply the correct font family in a proper element selector. Example:

    h2.post_title {
    font-family: 'trashhandregular' !important;
    }

    Cheers!
    Ismael

    in reply to: Creating working Log in – Log Out text in header #420188

    Hey!

    You can’t use php codes inside the Extra Elements box. Add it in the functions.php file: Add something like this:

    add_action('ava_inside_main_menu', 'ava_inside_main_menu_mod');
    function ava_inside_main_menu_mod() {
    wp_loginout( site_url() );
    }

    Regards,
    Ismael

    in reply to: Portfolio items ????How to update #420185

    Hey!

    I think you’re confused between the portfolio preview text editor and the actual portfolio item editor. Note that everything that you add in the preview text will only show in the ajax preview (http://03c0309.netsolhost.com/wp/?page_id=3275#toggle-id-6). It will not show in the actual portfolio page.

    And everything you add or use in the default editor or the advance layout builder, will show in the actual portfolio page, just like here: http://03c0309.netsolhost.com/wp/?portfolio=conferencing-solutions#toggle-id-3

    Basically, you have to create duplicated contents if you want to use the AJAX portfolio feature.

    Best regards,
    Ismael

    in reply to: Hiding Image Background #420183

    Hi!

    Replace the code with this:

    @media only screen and (max-width: 768px) {
    #bubbles {
      background: none !important;
    }}

    Regards,
    Ismael

    in reply to: Editor not working #420181

    Hi!

    I’m sorry but we don’t provide support for third party plugins. What is it in the plugin that you can’t create with the advance layout builder?

    Regards,
    Ismael

    in reply to: Grid Row With Images & Captions Issues #420180

    Hey djshortkut!

    Thank you for using Enfold.

    1.) Add this to the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin .flex_cell_inner {
      width: 100%  !important;
      max-width: 100% !important;
      margin: 0 auto;
      display: block !important;
    }}

    If you want to apply the changes on that specific grid row, use the section id field.

    2.) I think the above code will also affect this.

    3.) Since we enlarge the images on mobile, it can now contain the captions.

    4.) No, unfortunately, hover effect isn’t support on touch screens. You might need to hire a freelance developer to make it work on mobile devices. For further modifications, please look for any tutorials regarding google inspector or firebug plugin. Basic knowledge of this will help a lot with css modifications.

    Regards,
    Ismael

    in reply to: Mobile Menu not scrolling on Iphone #420177

    Hi!

    I can reproduce the issue on an iPod but not always. Try to add this to the Quick CSS field:

    #mobile-advanced {
      z-index: 500;
      float: none;
      height: auto;
      overflow: visible;
    }

    Cheers!
    Ismael

    in reply to: Problem with a Translated WPML Site #420173

    Hi!

    It’s not full width because I set the English version to boxed layout in order to confirm that the theme options are working. Revert it back to Stretched Layout.

    Regards,
    Ismael

    Hi!

    Create a custom taxonomy but don’t create any posts within that taxonomy. Select the taxonomy to display on the blog posts element. It will show the no posts or nothing found warning. If you didn’t select any taxonomy, it will show all posts within the category taxonomy by default.

    Best regards,
    Ismael

    in reply to: Anchors with sidebar – code shortcode or masonry? #420169

    Hey eldrico!

    Thank you for using Enfold.

    How did you add the anchor name? You can use a codeblock, place it on top of the section where you want the anchor link to go. Add something like this:

    <div id="#anchor_name"></div>
    

    Add this to the Quick CSS field to wrap the sort tags:

    .taglist {
      word-wrap: break-word;
    }

    Cheers!
    Ismael

    in reply to: EasySlider impacts Color Section style #420166

    Hey!

    Try to separate the section with the slider using the color section element. If it doesn’t work, add this to the Quick CSS field:

    .avia-section > * {
      -webkit-transform-style: preserve-3d;
      -webkit-backface-visibility: hidden;
    }

    Cheers!
    Ismael

    in reply to: Blank page = not responsive #420164

    Hi!

    I’m not sure why the blank template isn’t responsive but you can use the default template then hide the sidebar, header, footer and socket using the layout settings. Check it now: http://mockup1.dk/myten-cardio/

    Cheers!
    Ismael

    in reply to: Text encoding problems after latest update #420162

    Hi!

    There are multiple rows with the _aviaLayoutBuilderCleanData meta_key, 3 to be exact. I’m not sure why there are multiple rows with that meta_key. There should be only one of that for each page or post. Check all collation or database character sets of the meta_value as suggested on the previous post (https://kriesi.at/support/topic/text-encoding-problems-after-latest-update/#post-419718). If possible, please give us a access to the database so that we can check it.

    Best regards,
    Ismael

    in reply to: Text encoding problems after latest update #420064

    Hey!

    The collation is correctly set to utf8 so I don’t think the problem lies there. Why are those rows duplicated? Each post or page should have a single _aviaLayoutBuilderCleanData meta_key, not 2 or 3 if I am not mistaken. Did you check each rows?

    Cheers!
    Ismael

    in reply to: Post category in the mesonary blog #420057

    Hi DavideModigliani!

    Thank you for using Enfold.

    Add this to the functions.php file:

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod', 10, 2 );
    function avf_masonry_loop_prepare_mod( $key, $entries )
    {              
    	$class = preg_grep('/category/', $key['class']); 
        $getstr = str_replace('category-', '', implode(',', $class)); 
    	$categories = explode(',', $getstr);
    	$cat = implode(',', array_map('ucfirst', $categories));	
    	foreach ( $key as $post => $value ) {
    			if ( $post == 'content' ) { $value .= "<div class='av-masonry-categories'>".$cat."</div>"; }
    			$key[$post] = $value;
    	}
        return $key;
    }

    This will only work for default posts. If you want this to work for custom post types like the portfolio items, please hire a freelance developer.

    Cheers!
    Ismael

    Hi!

    Have you tried using a different email address? Please refer to the link provided above. One of the suggestions might fix the issue.

    Regards,
    Ismael

    in reply to: Woocommerce single page avia advanced editor #420031

    Hey!

    You need to use the “Product Purchase Button” element under Plugin Additions panel to create an add to cart button and add the price using a text block or any other elements that is able to render texts. Since you’re using the advance layout builder, note that the all default elements such as price, title, tabs, featured image etc will be removed. You have to add them using the advance layout builder.

    Cheers!
    Ismael

    in reply to: Color background #420028

    Hi!

    Note that the color section background size is set to “cover” (http://www.w3schools.com/cssref/css3_pr_background-size.asp) which means that it will scale the background to be as large as possible to completely cover the background area. It will also cut parts of the image. I think that’s why you’re saying it’s not responsive but it is. You can set the background size to 100% but it will distort the image proportion.

    Best regards,
    Ismael

    in reply to: Strange background image issue #420027

    Hi!


    @hermelina
    : I checked the site on a browser emulation, using Firefox 14 for android mobile and tablet, but I don’t see any issues on the page. Can you please provide a screenshot?

    Cheers!
    Ismael

    Hi!

    There’s a missing curly braces right after this line of code:

    input[name=”post_password”] {
    background: red !important;
    }

    Best regards,
    Ismael

    in reply to: Probleme mit dem Menü #420018

    Hey!

    Sorry for the delay. I tried to login to the site but it’s not working. Please check the login credential above. If possible, please provide a screenshot of the issue. I don’t really understand the language so I use google translate but it’s still not clear enough.

    Best regards,
    Ismael

    in reply to: editing the backing HTML without breaking everything #420016

    Hi!

    Sorry for the delay. I’m not sure if this is going to work but you can add custom css class on every element inside the advance layout builder except for column layouts. Refer to this link: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Maybe you can add the “print-no” class attribute for those elements that you don’t want to be included. There will be certain elements that you want will want to change or to modify so a basic knowledge of google inspector or firebug plugin will help a lot. Of course, it’s much easier if you hire a freelance developer to modify the print style of the page. You can contact our partner codeable here: http://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: yoast video seo plugin cannot see video's #420010

    Hi!

    Is it OK if you give us a copy of the plugin for testing purposes?

    Cheers!
    Ismael

    in reply to: Contact Form 2 felds in one line??? #420004

    Hi!

    Sorry for the delay. I’m not sure if I understand you correctly. You’re trying to add a special heading element inside the text block? And the markup isn’t recognize by google? Please post the link to the actual page. We would like to check it.

    Best regards,
    Ismael

    in reply to: Main Mobile menu to look like desktop menu #420000

    Hi!

    Use this to show the default menu items:

    @media only screen and (max-width: 959px) {
    .responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet #advanced_menu_hide {
      display: none;
    }
    .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet #header_main .social_bookmarks, .responsive.html_mobile_menu_tablet #header_main_alternate {
      display: block;
    }
    
    .responsive #header_main .inner-container, .responsive .main_menu {
      position: relative;
    }
    }
    

    There will be not enough space to contain the default menu items. Redesigning the default menus on mobile will require custom modification that is beyond the scope of support. Please hire a freelance developer or contact our customization partner: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: How to position 7 icons horizontally? #419996

    Hey!

    There is not 1/7 columns by default so you need to create it manually. Edit the color section which holds the icon then add a unique id attribute in the Section ID field. Use “custom-section” for example. Remove the icons then use a code block instead. Add the icon and column codes:

    <div class="flex_column av_one_seventh first">ICON SHORTCODE HERE</div>
    <div class="flex_column av_one_seventh">ICON SHORTCODE HERE</div>
    <div class="flex_column av_one_seventh">ICON SHORTCODE HERE</div>
    <div class="flex_column av_one_seventh">ICON SHORTCODE HERE</div>
    <div class="flex_column av_one_seventh">ICON SHORTCODE HERE</div>
    <div class="flex_column av_one_seventh">ICON SHORTCODE HERE</div>
    <div class="flex_column av_one_seventh">ICON SHORTCODE HERE</div>

    You can generate the icon shortcode using the shortcode wand on another post or page.

    Regards,
    Ismael

Viewing 30 posts - 50,551 through 50,580 (of 67,534 total)